| | |
| | | public interface InspectUnacceptedService extends IService<InspectUnaccepted> { |
| | | |
| | | /** |
| | | *查询原材料不合格品检验单列表 |
| | | *查询成品不合格品检验单列表 |
| | | * @param |
| | | * @param formTime |
| | | * @param dealState |
| | |
| | | */ |
| | | IPage<Map<String, Object>> selectUnRawInspectsList(Page<Object> page, String formTime, Integer dealState); |
| | | |
| | | /** |
| | | * 查询原材料不合格品检验单列表 |
| | | * @param page |
| | | * @param formTime |
| | | * @param productName |
| | | * @param supplier |
| | | * @param processingStatus |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectUnqualifiedRawMaterials(Page<Object> page, String formTime, String productName, String supplier, Integer processingStatus); |
| | | |
| | | /** |
| | | * 不合格品处置分页列表 |
| | | * @param page |
| | | * @param specificationModel |
| | | * @param productName |
| | | * @param productCategories |
| | | * @param state |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectDisposal(Page<Object> page, String specificationModel, String productName, String productCategories, Integer state); |
| | | } |
| | | |