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;
|
}
|
}
|