whycrzg
2021-05-18 9b099a2029dd15a3db3a429cb81355edec9f8ac5
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
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 String winding;
 
    /**
     * 电流(μA)
     */
    @ApiModelProperty("电流(μA)")
    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;
 
    private String note;
 
    private static final long serialVersionUID = 1L;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getWinding() {
        return winding;
    }
 
    public void setWinding(String winding) {
        this.winding = winding;
    }
 
    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 getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}