package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
/**
|
* 大功率整流电源-控制状态信息
|
*/
|
@Alias("RectifierPowerControl")
|
@TableName(schema = "`db_3.5mw_motor`",value = "tb_rectifier_power_control")
|
public class RectifierPowerControl {
|
|
Long num;
|
Integer devId; //设备id
|
Integer remoteStop; //工艺、综控远方停止大功率整流器
|
Integer emergencyStop; //工艺、综控远方紧急停止大功率整流器
|
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 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 String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|