whycrzg
2021-05-21 e4cd7fd3e48a5280d15cfbf07ca5e1e18b4f74d0
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * tb_experiment_winding_step1
 * @author 
 */
 
@Alias("ExperimentWindingStep1")
@ApiModel
@TableName(schema = "`db_3.5mw_web`" , value = "`tb_experiment_winding_step1`")
public class ExperimentWindingStep1 implements Serializable {
    private Integer id;
 
    @ApiModelProperty("唯一标识")
    private Integer indexId;
 
    /**
     * 绕组编号 测绕组引线(多个);测各相绕组引线(单个)
     */
    @ApiModelProperty("绕组编号 测绕组引线(多个);测各相绕组引线(单个)")
    private String winding;
 
 
 
    @ApiModelProperty("测试人")
    private String realName;
 
    /**
     * 电流(μA)
     */
    @ApiModelProperty("电流(μA) /电流(mA)")
    private Float electricCurrent;
 
    /**
     * 电压(V)
     */
    @ApiModelProperty("电压(V)")
    private Float vol;
 
    /**
     * 绝缘电阻
     */
    @ApiModelProperty("绝缘电阻/直流电阻")
    private Float resistance;
 
    @ApiModelProperty("绕组温度")
    private Float temperature;
 
    @ApiModelProperty("保存时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date saveTime;
 
    /**
     * 试验编号(ID)
     */
    @ApiModelProperty("试验编号")
    private String experimentId;
 
    /**
     * 状态:0-未开始,1-进行中,2-已完成
     */
    @ApiModelProperty("状态:0-未开始,1-进行中,2-已完成")
    private Integer status;
 
    @ApiModelProperty("设备类型")
    private String deviceId;
 
    @ApiModelProperty("实验步骤")
    private Integer step;
 
    private String note;
 
    private static final long serialVersionUID = 1L;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getIndexId() {
        return indexId;
    }
 
    public void setIndexId(Integer indexId) {
        this.indexId = indexId;
    }
 
    public String getWinding() {
        return winding;
    }
 
    public void setWinding(String winding) {
        this.winding = winding;
    }
 
    public String getRealName() {
        return realName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName;
    }
 
    public Float getElectricCurrent() {
        return electricCurrent;
    }
 
    public void setElectricCurrent(Float electricCurrent) {
        this.electricCurrent = electricCurrent;
    }
 
    public Float getVol() {
        return vol;
    }
 
    public void setVol(Float vol) {
        this.vol = vol;
    }
 
    public Float getResistance() {
        return resistance;
    }
 
    public void setResistance(Float resistance) {
        this.resistance = resistance;
    }
 
    public Float getTemperature() {
        return temperature;
    }
 
    public void setTemperature(Float temperature) {
        this.temperature = temperature;
    }
 
    public Date getSaveTime() {
        return saveTime;
    }
 
    public void setSaveTime(Date saveTime) {
        this.saveTime = saveTime;
    }
 
    public String getExperimentId() {
        return experimentId;
    }
 
    public void setExperimentId(String experimentId) {
        this.experimentId = experimentId;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(String deviceId) {
        this.deviceId = deviceId;
    }
 
    public Integer getStep() {
        return step;
    }
 
    public void setStep(Integer step) {
        this.step = step;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}