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;
|
|
/**
|
* MotorSystem设备中
|
* 1001~1004-5000kVA进线屏/出线屏,1/2号3200kVA出线屏
|
* 的简略参数
|
*/
|
@ApiModel(value = "集中监控系统RT")
|
@Alias("CentralMonitorSystemRT")
|
@TableName( schema = "`db_3.5mw_motor`",value = "tb_central_monitor_sys_rt")
|
public class CentralMonitorSysRT {
|
|
Long num ;
|
Integer devId ;
|
@ApiModelProperty(value = "更新时间")
|
Date recordTime;
|
@ApiModelProperty(value = "开关合闸状态")
|
Integer switchClose;
|
@ApiModelProperty(value = "开关分闸状态")
|
Integer switchOpen;
|
@ApiModelProperty(value = "开关故障状态")
|
Integer switchFault;
|
@ApiModelProperty(value = "进线屏电压")
|
Float panelVol;
|
@ApiModelProperty(value = "进线屏电流")
|
Float panelCurr;
|
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 getSwitchClose() {
|
return switchClose;
|
}
|
|
public void setSwitchClose(Integer switchClose) {
|
this.switchClose = switchClose;
|
}
|
|
public Integer getSwitchOpen() {
|
return switchOpen;
|
}
|
|
public void setSwitchOpen(Integer switchOpen) {
|
this.switchOpen = switchOpen;
|
}
|
|
public Integer getSwitchFault() {
|
return switchFault;
|
}
|
|
public void setSwitchFault(Integer switchFault) {
|
this.switchFault = switchFault;
|
}
|
|
public Float getPanelVol() {
|
return panelVol;
|
}
|
|
public void setPanelVol(Float panelVol) {
|
this.panelVol = panelVol;
|
}
|
|
public Float getPanelCurr() {
|
return panelCurr;
|
}
|
|
public void setPanelCurr(Float panelCurr) {
|
this.panelCurr = panelCurr;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|