| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.InspectUnaccepted; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.Map; |
| | | |
| | |
| | | * @since 2023-08-07 10:04:01 |
| | | */ |
| | | public interface InspectUnacceptedService extends IService<InspectUnaccepted> { |
| | | |
| | | /** |
| | | *查询成品不合格品检验单列表 |
| | | * @param |
| | | * @param formTime |
| | | * @param dealState |
| | | * @return |
| | | */ |
| | | 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); |
| | | |
| | | /** |
| | | * 不合格品处置分页列表 |
| | |
| | | * @return |
| | | */ |
| | | Integer descriptionUpdate(Integer rawUnacceptedId, String tell); |
| | | |
| | | |
| | | @Transactional(rollbackFor = Exception.class) |
| | | Integer editDisposalOpinionConfirmation(Integer rawUnacceptedId, String opinionTell, Integer way, Integer type); |
| | | } |
| | | |