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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
package com.shlanbao.tzsc.pms.md.eqp.beans;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
 
public class EquipmentsBean {
    private String id;
    private String eqpTypeId;  // 类型id
    private String eqpTypeName;  // 类型名称
    private String equipmentCode;  // 设备编码
    private String equipmentName;  // 设备名称
    private String name;//用于保存设备名称,方便combobox  Model 转换
    private String equipmentDesc;
    private String workShopId;  // 车间id
    private String workShopName;  // 车间名称
    private String workCenter;   // mes下发编码
    private String equipmentPosition;  // 设备工序
    private Double ratedSpeed;
    private String rateSpeedUnit;
    private Double yieId;
    private String yieldUnit;
    private String enabled;
    private String fixedAssetNum;
    private String manufacturingNum;
    private String approvalNum;
    private String navicertNum;
    private String fixedAssetFlag;
    private String usingDepartment;
    private String createUserId;
    private String createUserName;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String createTime;
    private String updateUser;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String updateTime;
    private Double vouchProduction;
    private String del;
    private String eqpCategory;
    private String mesEqpCode;
 
    public String getMesEqpCode() {
        return mesEqpCode;
    }
    public void setMesEqpCode(String mesEqpCode) {
        this.mesEqpCode = mesEqpCode;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getEqpTypeId() {
        return eqpTypeId;
    }
    public void setEqpTypeId(String eqpTypeId) {
        this.eqpTypeId = eqpTypeId;
    }
    public String getEqpTypeName() {
        return eqpTypeName;
    }
    public void setEqpTypeName(String eqpTypeName) {
        this.eqpTypeName = eqpTypeName;
    }
    public String getEquipmentCode() {
        return equipmentCode;
    }
    public void setEquipmentCode(String equipmentCode) {
        this.equipmentCode = equipmentCode;
    }
    public String getEquipmentName() {
        return equipmentName;
    }
    public void setEquipmentName(String equipmentName) {
        this.equipmentName = equipmentName;
    }
    public String getEquipmentDesc() {
        return equipmentDesc;
    }
    public void setEquipmentDesc(String equipmentDesc) {
        this.equipmentDesc = equipmentDesc;
    }
    public String getWorkShopId() {
        return workShopId;
    }
    public void setWorkShopId(String workShopId) {
        this.workShopId = workShopId;
    }
    public String getWorkShopName() {
        return workShopName;
    }
    public void setWorkShopName(String workShopName) {
        this.workShopName = workShopName;
    }
    public String getWorkCenter() {
        return workCenter;
    }
    public void setWorkCenter(String workCenter) {
        this.workCenter = workCenter;
    }
    public String getEquipmentPosition() {
        return equipmentPosition;
    }
    public void setEquipmentPosition(String equipmentPosition) {
        this.equipmentPosition = equipmentPosition;
    }
    public Double getRatedSpeed() {
        return ratedSpeed;
    }
    public void setRatedSpeed(Double ratedSpeed) {
        this.ratedSpeed = ratedSpeed;
    }
    public String getRateSpeedUnit() {
        return rateSpeedUnit;
    }
    public void setRateSpeedUnit(String rateSpeedUnit) {
        this.rateSpeedUnit = rateSpeedUnit;
    }
 
    public Double getYieId() {
        return yieId;
    }
    public void setYieId(Double yieId) {
        this.yieId = yieId;
    }
    public String getYieldUnit() {
        return yieldUnit;
    }
    public void setYieldUnit(String yieldUnit) {
        this.yieldUnit = yieldUnit;
    }
    public String getEnabled() {
        return enabled;
    }
    public void setEnabled(String enabled) {
        this.enabled = enabled;
    }
    public String getFixedAssetNum() {
        return fixedAssetNum;
    }
    public void setFixedAssetNum(String fixedAssetNum) {
        this.fixedAssetNum = fixedAssetNum;
    }
    public String getManufacturingNum() {
        return manufacturingNum;
    }
    public void setManufacturingNum(String manufacturingNum) {
        this.manufacturingNum = manufacturingNum;
    }
    public String getApprovalNum() {
        return approvalNum;
    }
    public void setApprovalNum(String approvalNum) {
        this.approvalNum = approvalNum;
    }
    public String getNavicertNum() {
        return navicertNum;
    }
    public void setNavicertNum(String navicertNum) {
        this.navicertNum = navicertNum;
    }
    public String getFixedAssetFlag() {
        return fixedAssetFlag;
    }
    public void setFixedAssetFlag(String fixedAssetFlag) {
        this.fixedAssetFlag = fixedAssetFlag;
    }
    public String getUsingDepartment() {
        return usingDepartment;
    }
    public void setUsingDepartment(String usingDepartment) {
        this.usingDepartment = usingDepartment;
    }
    public String getCreateUserId() {
        return createUserId;
    }
    public void setCreateUserId(String createUserId) {
        this.createUserId = createUserId;
    }
    public String getCreateUserName() {
        return createUserName;
    }
    public void setCreateUserName(String createUserName) {
        this.createUserName = createUserName;
    }
    public String getCreateTime() {
        return createTime;
    }
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
    public String getUpdateUser() {
        return updateUser;
    }
    public void setUpdateUser(String updateUser) {
        this.updateUser = updateUser;
    }
    public String getUpdateTime() {
        return updateTime;
    }
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
    public String getDel() {
        return del;
    }
    public void setDel(String del) {
        this.del = del;
    }
    public Double getVouchProduction() {
        return vouchProduction;
    }
    public void setVouchProduction(Double vouchProduction) {
        this.vouchProduction = vouchProduction;
    }
 
    @Override
    public String toString() {
        return "EquipmentsBean{" +
                "id='" + id + '\'' +
                ", eqpTypeId='" + eqpTypeId + '\'' +
                ", eqpTypeName='" + eqpTypeName + '\'' +
                ", equipmentCode='" + equipmentCode + '\'' +
                ", equipmentName='" + equipmentName + '\'' +
                ", name='" + name + '\'' +
                ", equipmentDesc='" + equipmentDesc + '\'' +
                ", workShopId='" + workShopId + '\'' +
                ", workShopName='" + workShopName + '\'' +
                ", workCenter='" + workCenter + '\'' +
                ", equipmentPosition='" + equipmentPosition + '\'' +
                ", ratedSpeed=" + ratedSpeed +
                ", rateSpeedUnit='" + rateSpeedUnit + '\'' +
                ", yieId=" + yieId +
                ", yieldUnit='" + yieldUnit + '\'' +
                ", enabled='" + enabled + '\'' +
                ", fixedAssetNum='" + fixedAssetNum + '\'' +
                ", manufacturingNum='" + manufacturingNum + '\'' +
                ", approvalNum='" + approvalNum + '\'' +
                ", navicertNum='" + navicertNum + '\'' +
                ", fixedAssetFlag='" + fixedAssetFlag + '\'' +
                ", usingDepartment='" + usingDepartment + '\'' +
                ", createUserId='" + createUserId + '\'' +
                ", createUserName='" + createUserName + '\'' +
                ", createTime='" + createTime + '\'' +
                ", updateUser='" + updateUser + '\'' +
                ", updateTime='" + updateTime + '\'' +
                ", vouchProduction=" + vouchProduction +
                ", del='" + del + '\'' +
                ", mesEqpCode='" + mesEqpCode + '\'' +
                '}';
    }
 
    public String getEqpCategory() {
        return eqpCategory;
    }
 
    public void setEqpCategory(String eqpCategory) {
        this.eqpCategory = eqpCategory;
    }
}