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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.shlanbao.tzsc.pms.md.mat.beans;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * 物料
 * <li>@author Leejean
 * <li>@create 2014-7-5下午10:04:20
 */
public class MatBean extends BaseEntity {
    private String id;
    private String matType;
    private String unit;
    private String unitId;    
    private String code;
    private String name;
    private String simpleName;
    private String des;
    @DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
    private String lastUpdateTime;
    private Long enable;
    private String del;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public MatBean() {
        // TODO Auto-generated constructor stub
    }
    public MatBean(String id, String name) {
        super();
        this.id = id;
        this.name = name;
    }
    public String getMatType() {
        return matType;
    }
    public void setMatType(String matType) {
        this.matType = matType;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getSimpleName() {
        return simpleName;
    }
    public void setSimpleName(String simpleName) {
        this.simpleName = simpleName;
    }
    public String getDes() {
        return des;
    }
    public void setDes(String des) {
        this.des = des;
    }
    public String getLastUpdateTime() {
        return lastUpdateTime;
    }
    public void setLastUpdateTime(String lastUpdateTime) {
        this.lastUpdateTime = lastUpdateTime;
    }
    public Long getEnable() {
        return enable;
    }
    public void setEnable(Long enable) {
        this.enable = enable;
    }
    public String getDel() {
        return del;
    }
    public void setDel(String del) {
        this.del = del;
    }
    public String getUnitId() {
        return unitId;
    }
    public void setUnitId(String unitId) {
        this.unitId = unitId;
    }
    
}