zss
2023-09-25 d1ea726be5628c46fb6be700a0197002d55d39f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
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;
 
/**
 * 不合格品检验表(InspectUnaccepted)表服务接口
 *
 * @author zss
 * @since 2023-08-07 10:04:01
 */
public interface InspectUnacceptedService extends IService<InspectUnaccepted> {
 
    /**
     * 不合格品处置分页列表
     * @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);
 
 
    @Transactional(rollbackFor = Exception.class)
    Integer editDisposalOpinionConfirmation(Integer rawUnacceptedId, String opinionTell, Integer way, Integer type);
}