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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
package com.shlanbao.tzsc.base.mapping;
 
import java.util.HashSet;
import java.util.Set;
 
/**
 * SysEqpType entity. @author MyEclipse Persistence Tools
 */
 
@SuppressWarnings("serial")
public class SysEqpType  implements java.io.Serializable {
    // Fields
     private String id;
     private SysEqpCategory sysEqpCategory;
     private String code;
     private String name;
     private String des;
     private Long enable;
     private String del;
     private String lxType;//保养类型角色
     
     private String number;//数量
     private String fillQuantity;//加注量
     //private String oilId;//润 滑 油(脂)
     //private String fillUnit;//加注量单位
     //private String fashion;//方式
     private EqmLubricantMaintain oilIdBean;//润 滑 油(脂)
     private SysEqpType fillUnitBean;//加注量单位
     private SysEqpType fashionBean;//方式
     
     private String djType;//点检类型角色
     private String djMethodId;//点检方法
     private String setImagePoint;//设置的图片点信息
     private String filePath;//文件路径
     private String rhPart;//润滑部位
     private Integer period;//润滑周期
     private String unit_id;//周期单位
 
     
     
    public String getUnit_id() {
        return unit_id;
    }
 
    public void setUnit_id(String unit_id) {
        this.unit_id = unit_id;
    }
 
    @SuppressWarnings("rawtypes")
    private Set sysEqpTypesForFillUnit = new HashSet(0);
     @SuppressWarnings("rawtypes")
    private Set sysEqpTypesForFashion = new HashSet(0);
   
    // Constructors
 
    /** default constructor */
    public SysEqpType() {
    }
    
    public SysEqpType(String id){
        super();
        this.id = id;
    }
    
    public Integer getPeriod() {
        return period;
    }
 
    public void setPeriod(Integer period) {
        this.period = period;
    }
 
    /** full constructor */
    public SysEqpType(SysEqpCategory sysEqpCategory, String code, String name,
            String des, Long enable, String del,String lxType) {
        this.sysEqpCategory = sysEqpCategory;
        this.code = code;
        this.name = name;
        this.des = des;
        this.enable = enable;
        this.del = del;
        this.lxType = lxType;
    }
 
   
    // Property accessors
 
    public String getId() {
        return this.id;
    }
    
    public void setId(String id) {
        this.id = id;
    }
 
    public SysEqpCategory getSysEqpCategory() {
        return sysEqpCategory;
    }
 
    public void setSysEqpCategory(SysEqpCategory sysEqpCategory) {
        this.sysEqpCategory = sysEqpCategory;
    }
 
    public String getCode() {
        return this.code;
    }
    
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDes() {
        return this.des;
    }
    
    public void setDes(String des) {
        this.des = des;
    }
 
    public Long getEnable() {
        return this.enable;
    }
    
    public void setEnable(Long enable) {
        this.enable = enable;
    }
 
    public String getDel() {
        return this.del;
    }
    
    public void setDel(String del) {
        this.del = del;
    }
 
    public String getLxType() {
        return lxType;
    }
 
    public void setLxType(String lxType) {
        this.lxType = lxType;
    }
 
    public String getNumber() {
        return number;
    }
 
    public void setNumber(String number) {
        this.number = number;
    }
 
    public String getFillQuantity() {
        return fillQuantity;
    }
 
    public void setFillQuantity(String fillQuantity) {
        this.fillQuantity = fillQuantity;
    }
    public EqmLubricantMaintain getOilIdBean() {
        return oilIdBean;
    }
 
    public void setOilIdBean(EqmLubricantMaintain oilIdBean) {
        this.oilIdBean = oilIdBean;
    }
 
    public SysEqpType getFillUnitBean() {
        return fillUnitBean;
    }
 
    public void setFillUnitBean(SysEqpType fillUnitBean) {
        this.fillUnitBean = fillUnitBean;
    }
 
    public SysEqpType getFashionBean() {
        return fashionBean;
    }
 
    public void setFashionBean(SysEqpType fashionBean) {
        this.fashionBean = fashionBean;
    }
 
    @SuppressWarnings("rawtypes")
    public Set getSysEqpTypesForFillUnit() {
        return sysEqpTypesForFillUnit;
    }
 
    @SuppressWarnings("rawtypes")
    public void setSysEqpTypesForFillUnit(Set sysEqpTypesForFillUnit) {
        this.sysEqpTypesForFillUnit = sysEqpTypesForFillUnit;
    }
 
    @SuppressWarnings("rawtypes")
    public Set getSysEqpTypesForFashion() {
        return sysEqpTypesForFashion;
    }
 
    @SuppressWarnings("rawtypes")
    public void setSysEqpTypesForFashion(Set sysEqpTypesForFashion) {
        this.sysEqpTypesForFashion = sysEqpTypesForFashion;
    }
 
    public String getDjType() {
        return djType;
    }
 
    public void setDjType(String djType) {
        this.djType = djType;
    }
 
    public String getDjMethodId() {
        return djMethodId;
    }
 
    public void setDjMethodId(String djMethodId) {
        this.djMethodId = djMethodId;
    }
 
    public String getSetImagePoint() {
        return setImagePoint;
    }
 
    public void setSetImagePoint(String setImagePoint) {
        this.setImagePoint = setImagePoint;
    }
 
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
    
     public String getRhPart() {
            return rhPart;
    }
 
        public void setRhPart(String rhPart) {
            this.rhPart = rhPart;
    }
    
}