heheng
2025-01-13 a27162cb82ef0cabf9b43cbfd1f3eb8c177d1e14
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
package com.gkhy.labRiskManage.api.controller.experiment.dto.resp;
 
/**
 * 实验与设备
 */
 
public class ExperimentAndDeviceRespDTO {
 
 
    private Long deviceId;
    /**
     * 设备编号
     */
    private String deviceCode;
    /**
     * 设备名称
     */
    private String deviceName;
    /**
     * 设备功率
     */
    private String devicePower;
    /**
     * 是否特种设备:1-是;2-不是
     */
    private Byte specialDevice;
    /**
     * 计量单位:1-台;2-个; 3-件
     */
    private Byte deviceUnit;
    /**
     * 安全防护
     */
    private String safeProtect;
    /**
     * 使用数量
     */
    private Integer deviceUseCount;
 
    public Long getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(Long deviceId) {
        this.deviceId = deviceId;
    }
 
    public Integer getDeviceUseCount() {
        return deviceUseCount;
    }
 
    public void setDeviceUseCount(Integer deviceUseCount) {
        this.deviceUseCount = deviceUseCount;
    }
 
    public String getDeviceCode() {
        return deviceCode;
    }
 
    public void setDeviceCode(String deviceCode) {
        this.deviceCode = deviceCode;
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public String getDevicePower() {
        return devicePower;
    }
 
    public void setDevicePower(String devicePower) {
        this.devicePower = devicePower;
    }
 
    public Byte getSpecialDevice() {
        return specialDevice;
    }
 
    public void setSpecialDevice(Byte specialDevice) {
        this.specialDevice = specialDevice;
    }
 
    public Byte getDeviceUnit() {
        return deviceUnit;
    }
 
    public void setDeviceUnit(Byte deviceUnit) {
        this.deviceUnit = deviceUnit;
    }
 
    public String getSafeProtect() {
        return safeProtect;
    }
 
    public void setSafeProtect(String safeProtect) {
        this.safeProtect = safeProtect;
    }
}