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_step2
|
* @author
|
*/
|
|
@Alias("ExperimentWindingStep2")
|
@ApiModel
|
@TableName(schema = "`db_3.5mw_web`" , value = "`tb_experiment_winding_step2`")
|
public class ExperimentWindingStep2 implements Serializable {
|
private Integer id;
|
|
/**
|
* 绕组编号 测绕组引线(多个);测各相绕组引线(单个)
|
*/
|
@ApiModelProperty("绕组编号 测绕组引线(多个);测各相绕组引线(单个)")
|
private String winding;
|
|
/**
|
* 电流(mA)
|
*/
|
@ApiModelProperty("电流(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("试验编号(ID)")
|
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;
|
}
|
|
}
|