| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.InspectUnaccepted; |
| | | import com.yuanchu.mom.vo.Result; |
| | | |
| | | import java.util.Map; |
| | | |
| | |
| | | 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, Integer productCategories, Integer state); |
| | | |
| | | /** |
| | | * 失焦更新现像描述 |
| | | * @param rawUnacceptedId |
| | | * @return |
| | | */ |
| | | Integer descriptionUpdate(Integer rawUnacceptedId, String tell); |
| | | |
| | | Integer rawEvaluate(Integer rawId, Integer passOrNo); |
| | | } |
| | | |