zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
41
42
43
44
45
46
package com.shlanbao.tzsc.pms.qm.check.service;
 
import java.util.List;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.qm.check.beans.QmExcheckAddBean;
import com.shlanbao.tzsc.pms.sch.workorder.beans.WorkOrderBean;
 
/**
 * @create by cmc on 2018-02-06 13:24
 * @author cmc
 *成品含水率Service层
 */
 
public interface QmExcheckAddService {
    
    /**
     * 查询所有的成型成品含水检验记录
     * @return
     * @throws Exception
     */
    public DataGrid getAllQmExchecks(WorkOrderBean orderbean,PageParams pageParams) throws Exception;
    
    /**
     * 添加成型成品含水检验记录
     * @throws Exception
     */
    public boolean addQmExcheck(QmExcheckAddBean qmExcheckAddbean) throws Exception;
    
    /**
     * 删除成型成品含水检验记录
     * @throws Exception
     */
    public QmExcheckAddBean deleteQmExcheckByid(String id) throws Exception;
    
    /**
     * 查询所有的成型成品含水检测记录
     * @param orderbean
     * @param params
     * @param pageParams
     * @return
     * @throws Exception
     */
    public List<?> getQmExchecks(WorkOrderBean orderbean,String params,PageParams pageParams) throws Exception;
}