| | |
| | | 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; |
| | | |
| | |
| | | * @param dealState |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectUnRawInspectsList(Page<Object> page, String formTime, Integer dealState); |
| | | IPage<Map<String, Object>> selectUnRawInspectsList(Page<Object> page, String formTime, Integer dealState, Integer productCategories); |
| | | |
| | | /** |
| | | * 查询原材料不合格品检验单列表 |
| | |
| | | * @param state |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectDisposal(Page<Object> page, String specificationModel, String productName, String productCategories, Integer state); |
| | | 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); |
| | | } |
| | | |