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