yangys
2024-03-04 c51a042cfb8453265acf2b764b82bd17019b9b1b
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
package com.qianwen.mdc.domain;
 
import java.io.Serializable;
import java.util.Date;
//import javax.persistence.*;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
/**
 * 设备台账
 */
@TableName("machine_account")
public class MachineAccount implements Serializable {
 
    @TableId(type=IdType.ASSIGN_ID)
    private Long id;
 
    /**
     * 机床id
     */
    @TableField("machine_id")
    private Long machineId;
 
    private String machineName;
 
    /**
     * 统一编号
     */
    private String uuid;
 
    /**
     * 规格
     */
    private String specification;
 
    /**
     * 设备型号
     */
    private String type;
 
    /**
     * 设备类型id,device_type.id
     */
    private Long deviceTypeId;
 
    /**
     * 加工类型(原设备类型)(立加/卧加/立卧转换/五轴/数控车/复合加工/数控磨/齿加工/电加工)
     */
    private String category;
 
    /**
     * 数控系统
     */
    //@Column(name = "cnc_system")
    private String cncSystem;
 
    /**
     * 账务属性(帐内/帐外)
     */
    //@Column(name = "accounting_attribute")
    private String accountingAttribute;
 
    /**
     * 设备管理分类
     */
    //@Column(name = "manage_type")
    private String manageType;
 
 
    /**
     * location
     */
    private String location;
 
    /**
     * 使用部门
     */
    private Long department;
 
    /**
     * 是否关键设备
     */
    //@Column(name = "is_critical")
    //private Boolean isCritical;
 
    /**
     * 是否精密设备
     */
    //@Column(name = "is_precision")
    //private Boolean isPrecision;
 
    /**
     * electrical complexity factor
     */
    //@Column(name = "elec_comp_factor")
    private Integer elecCompFactor;
 
    /**
     * 复杂因子
     */
    //@Column(name = "mech_comp_factor")
    private Integer mechCompFactor;
 
    /**
     * 国别
     */
    private String country;
 
    /**
     * 制造商
     */
    private String manufacturer;
 
    /**
     * 生产日期
     */
    private Date productionDate;
 
    /**
     * 设备原值
     */
    private Float originalValue;
 
    /**
     * 设备静现值
     */
    private Float presentValue;
 
    /**
     * 重量
     */
    private Integer weight;
 
    /**
     * 图片
     */
    private String pic;
 
    /**
     * 备注
     */
    private String remark;
 
    private static final long serialVersionUID = 1L;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getMachineId() {
        return machineId;
    }
 
    public void setMachineId(Long machineId) {
        this.machineId = machineId;
    }
 
    public String getMachineName() {
        return machineName;
    }
 
    public void setMachineName(String machineName) {
        this.machineName = machineName;
    }
 
    public String getUuid() {
        return uuid;
    }
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    public String getSpecification() {
        return specification;
    }
 
    public void setSpecification(String specification) {
        this.specification = specification;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    
    public String getCategory() {
        return category;
    }
 
    public void setCategory(String category) {
        this.category = category;
    }
 
    public String getCncSystem() {
        return cncSystem;
    }
 
    public void setCncSystem(String cncSystem) {
        this.cncSystem = cncSystem;
    }
 
    public String getAccountingAttribute() {
        return accountingAttribute;
    }
 
    public void setAccountingAttribute(String accountingAttribute) {
        this.accountingAttribute = accountingAttribute;
    }
 
   
    public String getManageType() {
        return manageType;
    }
 
    public void setManageType(String manageType) {
        this.manageType = manageType;
    }
 
    public String getLocation() {
        return location;
    }
 
   
    public void setLocation(String location) {
        this.location = location;
    }
 
   
    public Long getDepartment() {
        return department;
    }
 
    public void setDepartment(Long department) {
        this.department = department;
    }
 
 
    public Integer getElecCompFactor() {
        return elecCompFactor;
    }
 
    public void setElecCompFactor(Integer elecCompFactor) {
        this.elecCompFactor = elecCompFactor;
    }
 
    public Integer getMechCompFactor() {
        return mechCompFactor;
    }
 
    
    public void setMechCompFactor(Integer mechCompFactor) {
        this.mechCompFactor = mechCompFactor;
    }
 
    public String getCountry() {
        return country;
    }
 
   
    public void setCountry(String country) {
        this.country = country;
    }
 
    public String getManufacturer() {
        return manufacturer;
    }
 
    public void setManufacturer(String manufacturer) {
        this.manufacturer = manufacturer;
    }
 
    public Date getProductionDate() {
        return productionDate;
    }
 
    public void setProductionDate(Date productionDate) {
        this.productionDate = productionDate;
    }
 
    public Float getOriginalValue() {
        return originalValue;
    }
 
    
    public void setOriginalValue(Float originalValue) {
        this.originalValue = originalValue;
    }
 
    public Float getPresentValue() {
        return presentValue;
    }
 
    public void setPresentValue(Float presentValue) {
        this.presentValue = presentValue;
    }
 
    public Integer getWeight() {
        return weight;
    }
 
    public void setWeight(Integer weight) {
        this.weight = weight;
    }
 
 
    public String getPic() {
        return pic;
    }
 
 
    public void setPic(String pic) {
        this.pic = pic;
    }
 
    public String getRemark() {
        return remark;
    }
 
    
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public Long getDeviceTypeId() {
        return deviceTypeId;
    }
 
    public void setDeviceTypeId(Long deviceTypeId) {
        this.deviceTypeId = deviceTypeId;
    }
 
}