| | |
| | | */ |
| | | public interface RawMaterialService extends IService<RawMaterial> { |
| | | |
| | | IPage<RawMaterial> selectRawMaterial(String materialCoding, String materialName, Integer condition, String createTime, Page<Objects> page); |
| | | IPage<RawMaterial> selectRawMaterial(String materialCoding, String materialName, Integer type, String createTime, Page<Objects> page); |
| | | |
| | | /** |
| | | * 查询原材料检验 |
| | | * |
| | | * @return |
| | | */ |
| | | List<RawMaterial> selectRawmaAll(); |
| | | List<Map<String, Object>> selectRawmaAll(); |
| | | |
| | | /** |
| | | * 选择原材料报检 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | InspectionVo selectRawmaById(Integer id, String startTime, String endTime) throws ParseException; |
| | | |
| | | Integer insertRawMaterial(RawMaterial rawMaterial); |
| | | |
| | | Integer deleteRawMaterial(String deleteId); |
| | | } |