package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
/**
|
* afe变频器-整流器
|
*/
|
@Alias("AFERectifierState")
|
@TableName(schema = "`db_3.5mw_motor`",value = "tb_afe_rectifier_state")
|
@ApiModel
|
public class AFERectifierState {
|
|
Long num ;//主键
|
Integer devId ;//设备id
|
Date recordTime ;//记录时间
|
@ApiModelProperty("整流启动")
|
Integer rectifierStart ;
|
@ApiModelProperty("整流停止")
|
Integer rectifierStop ;
|
@ApiModelProperty("逆变启动")
|
Integer inverterStart ;
|
@ApiModelProperty("逆变停止")
|
Integer inverterStop ;
|
@ApiModelProperty("速度/转矩模式")
|
Integer speedTorqueChange ;
|
@ApiModelProperty("复位")
|
Integer reset ;
|
@ApiModelProperty("整流运行")
|
Integer rectifierRun ;
|
@ApiModelProperty("逆变运行")
|
Integer inverterRun ;
|
@ApiModelProperty("综合报警")
|
Integer reportAlm ;
|
@ApiModelProperty("综合故障")
|
Integer reportFault ;
|
String note ;//备用
|
|
public Long getNum() {
|
return num;
|
}
|
|
public void setNum(Long num) {
|
this.num = num;
|
}
|
|
public Integer getDevId() {
|
return devId;
|
}
|
|
public void setDevId(Integer devId) {
|
this.devId = devId;
|
}
|
|
public Date getRecordTime() {
|
return recordTime;
|
}
|
|
public void setRecordTime(Date recordTime) {
|
this.recordTime = recordTime;
|
}
|
|
public Integer getRectifierStart() {
|
return rectifierStart;
|
}
|
|
public void setRectifierStart(Integer rectifierStart) {
|
this.rectifierStart = rectifierStart;
|
}
|
|
public Integer getRectifierStop() {
|
return rectifierStop;
|
}
|
|
public void setRectifierStop(Integer rectifierStop) {
|
this.rectifierStop = rectifierStop;
|
}
|
|
public Integer getInverterStart() {
|
return inverterStart;
|
}
|
|
public void setInverterStart(Integer inverterStart) {
|
this.inverterStart = inverterStart;
|
}
|
|
public Integer getInverterStop() {
|
return inverterStop;
|
}
|
|
public void setInverterStop(Integer inverterStop) {
|
this.inverterStop = inverterStop;
|
}
|
|
public Integer getSpeedTorqueChange() {
|
return speedTorqueChange;
|
}
|
|
public void setSpeedTorqueChange(Integer speedTorqueChange) {
|
this.speedTorqueChange = speedTorqueChange;
|
}
|
|
public Integer getReset() {
|
return reset;
|
}
|
|
public void setReset(Integer reset) {
|
this.reset = reset;
|
}
|
|
public Integer getRectifierRun() {
|
return rectifierRun;
|
}
|
|
public void setRectifierRun(Integer rectifierRun) {
|
this.rectifierRun = rectifierRun;
|
}
|
|
public Integer getInverterRun() {
|
return inverterRun;
|
}
|
|
public void setInverterRun(Integer inverterRun) {
|
this.inverterRun = inverterRun;
|
}
|
|
public Integer getReportAlm() {
|
return reportAlm;
|
}
|
|
public void setReportAlm(Integer reportAlm) {
|
this.reportAlm = reportAlm;
|
}
|
|
public Integer getReportFault() {
|
return reportFault;
|
}
|
|
public void setReportFault(Integer reportFault) {
|
this.reportFault = reportFault;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|