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;
|
}
|