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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.shlanbao.tzsc.pms.md.mattype.service;
 
import java.util.List;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.pms.md.mattype.beans.MatTypeBean;
 
 
/**
 * 物料类型
 * @author Leejean
 * @create 2014年11月26日下午2:40:42
 */
public interface MatTypeServiceI {
    /**
     * 查询所有物料类型
     * @author Leejean
     * @create 2014年11月26日下午4:23:14
     * @return
     */
    public List<MatTypeBean> queryAllMatTypesForComboBox() throws Exception ;
    /**
     * 查询所有物料类型
     * @author Leejean
     * @create 2014年11月26日下午5:42:08
     * @return
     * @throws Exception
     */
    public DataGrid getAllMatTypes(MatTypeBean matTypeBean) throws Exception;
    /**
     * 新增物料类型
     * @author Leejean
     * @create 2014年11月26日下午4:28:56
     * @param matTypeBean
     * @throws Exception
     */
    public void addMatType(MatTypeBean matTypeBean) throws Exception;
    /**
     * 编辑物料类型
     * @author Leejean
     * @create 2014年11月26日下午4:29:04
     * @param matTypeBean
     * @throws Exception
     */
    public void editMatType(MatTypeBean matTypeBean) throws Exception;
    /**
     * 删除物料类型
     * @author Leejean
     * @create 2014年11月26日下午4:29:12
     * @param id
     * @throws Exception
     */
    public void deleteMatType(String id) throws Exception;
    /**
     * 根据ID获取物料类型
     * @author Leejean
     * @create 2014年11月26日下午6:43:13
     * @param id
     * @return
     * @throws Exception 
     */
    public MatTypeBean getMatTypeById(String id) throws Exception;
    /**
     * 根据物料组查询物料类型
     * @author Leejean
     * @create 2014年11月27日上午8:43:20
     * @param gid
     * @return
     * @throws Exception 
     */
    public DataGrid getAllTypesByGrp(String gid) throws Exception;
 
    /**
     * 批量删除
     * @param ids
     */
    void batchDeleteMatType(String ids);
}