package com.shlanbao.tzsc.pms.qm.qmOutWord.service;
|
|
import com.shlanbao.tzsc.base.model.DataGrid;
|
import com.shlanbao.tzsc.base.model.PageParams;
|
import com.shlanbao.tzsc.pms.qm.qmOutWord.beans.QmOutwardDefectItemBean;
|
|
|
|
/**
|
* 缺陷定义查询接口
|
* <li>@author Administrator
|
* <li>@create 2015-02-26
|
*/
|
public interface QmOutwardDefectItemService
|
{
|
/**
|
* @param bean
|
* @param pageParams
|
* @return
|
* @throws Exception
|
* 缺陷定义查询
|
*
|
*/
|
DataGrid queryList(QmOutwardDefectItemBean bean, PageParams pageParams) throws Exception;
|
|
/**
|
* @param ids
|
* @return
|
* @throws Exception
|
* 批量删除缺陷定义数据
|
*
|
*/
|
void deleteDefectDefinition(String ids);
|
}
|