package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
/**
|
* 大功率整流电源-实时数据
|
*/
|
@Alias("RectifierPowerRT")
|
@TableName(schema = "`db_3.5mw_motor`",value = "tb_rectifier_power_rt")
|
public class RectifierPowerRT {
|
|
Long num;
|
Integer devId; //设备id
|
Date recordTime; //记录时间
|
Integer switchOn10kv; //10kv开关合闸信号
|
Integer switchOff10kv; //10kv开关分闸信号
|
Integer switchAllow; //10KV高压开关允许合闸信号
|
Integer rectifierFalut; //整流器故障跳闸信号
|
Integer rectifierPowerState; //大功率整流电源运行/停止状态信号
|
Integer rectifierAlarm; //大功率整流电源故障状态信号
|
Float rectifierVol; //大功率整流电源电压信号
|
Float rectifierCurr; //大功率整流电源电流信号
|
Integer remoteStop; //工艺、综控远方停止大功率整流器
|
Integer emergencyStop; //工艺、综控远方紧急停止大功率整流器
|
Integer comSignal; //通讯信号
|
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 getSwitchOn10kv() {
|
return switchOn10kv;
|
}
|
|
public void setSwitchOn10kv(Integer switchOn10kv) {
|
this.switchOn10kv = switchOn10kv;
|
}
|
|
public Integer getSwitchOff10kv() {
|
return switchOff10kv;
|
}
|
|
public void setSwitchOff10kv(Integer switchOff10kv) {
|
this.switchOff10kv = switchOff10kv;
|
}
|
|
public Integer getSwitchAllow() {
|
return switchAllow;
|
}
|
|
public void setSwitchAllow(Integer switchAllow) {
|
this.switchAllow = switchAllow;
|
}
|
|
public Integer getRectifierFalut() {
|
return rectifierFalut;
|
}
|
|
public void setRectifierFalut(Integer rectifierFalut) {
|
this.rectifierFalut = rectifierFalut;
|
}
|
|
public Integer getRectifierPowerState() {
|
return rectifierPowerState;
|
}
|
|
public void setRectifierPowerState(Integer rectifierPowerState) {
|
this.rectifierPowerState = rectifierPowerState;
|
}
|
|
public Integer getRectifierAlarm() {
|
return rectifierAlarm;
|
}
|
|
public void setRectifierAlarm(Integer rectifierAlarm) {
|
this.rectifierAlarm = rectifierAlarm;
|
}
|
|
public Float getRectifierVol() {
|
return rectifierVol;
|
}
|
|
public void setRectifierVol(Float rectifierVol) {
|
this.rectifierVol = rectifierVol;
|
}
|
|
public Float getRectifierCurr() {
|
return rectifierCurr;
|
}
|
|
public void setRectifierCurr(Float rectifierCurr) {
|
this.rectifierCurr = rectifierCurr;
|
}
|
|
public Integer getRemoteStop() {
|
return remoteStop;
|
}
|
|
public void setRemoteStop(Integer remoteStop) {
|
this.remoteStop = remoteStop;
|
}
|
|
public Integer getEmergencyStop() {
|
return emergencyStop;
|
}
|
|
public void setEmergencyStop(Integer emergencyStop) {
|
this.emergencyStop = emergencyStop;
|
}
|
|
public Integer getComSignal() {
|
return comSignal;
|
}
|
|
public void setComSignal(Integer comSignal) {
|
this.comSignal = comSignal;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|