package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
/**
|
* afe变频器-整流器
|
*/
|
@Alias("AFERectifierState")
|
@TableName(schema = "`db_3.5mw_motor`",value = "tb_afe_rectifier_state")
|
public class AFERectifierState {
|
|
Long num ; //主键
|
Integer devId ; //设备id
|
Date recordTime ; //记录时间
|
Integer rectifierStart ; //整流启动
|
Integer rectifierStop ; //整流停止
|
Integer inverterStart ; //逆变启动
|
Integer inverterStop ; //逆变停止
|
Integer speedTorqueChange ; //速度/转矩模式
|
Integer reset ; //复位
|
Integer rectifierRun ; //整流运行
|
Integer inverterRun ; //逆变运行
|
Integer reportAlm ; //综合报警
|
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;
|
}
|
}
|