feat(台账): 根据rfid查询台账
This commit is contained in:
parent
9c3143e0bf
commit
353443bdc7
@ -19,6 +19,14 @@ public interface IBaseKnifeService
|
|||||||
*/
|
*/
|
||||||
public BaseKnife selectBaseKnifeByBaseKnifeId(Long baseKnifeId);
|
public BaseKnife selectBaseKnifeByBaseKnifeId(Long baseKnifeId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询工具台账
|
||||||
|
*
|
||||||
|
* @param rfid 工具台账主键
|
||||||
|
* @return 工具台账 包含物料基础信息
|
||||||
|
*/
|
||||||
|
public BaseKnife selectBaseKnifeByRfid(String rfid);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询工具台账列表
|
* 查询工具台账列表
|
||||||
*
|
*
|
||||||
|
@ -65,6 +65,11 @@ public class BaseKnifeServiceImpl implements IBaseKnifeService {
|
|||||||
return baseKnife;
|
return baseKnife;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BaseKnife selectBaseKnifeByRfid(String rfid) {
|
||||||
|
return baseKnifeMapper.selectBaseKnifeByRfid(rfid);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询工具台账列表
|
* 查询工具台账列表
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user