package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("major_equipment_data")
|
public class MajorEquipmentData implements Serializable {
|
|
private final static long serialVersionUID = 1L;
|
|
/** 设备id equipment_id **/
|
private Long equipmentId;
|
|
/** 监测时间 monitoring_time **/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
private Date monitoringTime;
|
|
/** 设备名称 **/
|
@TableField(exist = false)
|
private String equipmentName;
|
|
/** 设备编号 **/
|
@TableField(exist = false)
|
private String equipmentSerialNumber;
|
|
/** 导入excel的序号 **/
|
@TableField(exist = false)
|
private String index;
|
|
/** 仪表量程下限 range_lower_limit **/
|
private Float rangeLowerLimit;
|
|
/** 仪表量程上限 range_upper_limit **/
|
private Float rangeUpperLimit;
|
|
/** 高高液位报警值 high_high_liquid_alarm **/
|
private Float highHighLiquidAlarm;
|
|
/** 高液位报警值 high_liquid_alarm **/
|
private Float highLiquidAlarm;
|
|
/** 低液位报警值 low_liquid_alarm**/
|
private Float lowLiquidAlarm;
|
|
/** 低低液位报警值 low_low_liquid_alarm**/
|
private Float lowLowLiquidAlarm;
|
|
|
/** 主键id id **/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 有效标识 valid_flag **/
|
private Boolean validFlag;
|
|
/** 创建时间 create_time **/
|
private Date createTime;
|
|
/** 创建人 create_by **/
|
private String createBy;
|
|
/** 最新更新时间 update_time **/
|
private Date updateTime;
|
|
/** 最后更新人 update_by **/
|
private String updateBy;
|
|
|
/** 主键id id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** 主键id id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 有效标识 valid_flag **/
|
public Boolean getValidFlag() {
|
return validFlag;
|
}
|
|
/** 有效标识 valid_flag **/
|
public void setValidFlag(Boolean validFlag) {
|
this.validFlag = validFlag;
|
}
|
|
/** 创建时间 create_time **/
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
/** 创建时间 create_time **/
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
/** 创建人 create_by **/
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
/** 创建人 create_by **/
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy == null ? null : createBy.trim();
|
}
|
|
/** 最新更新时间 update_time **/
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
/** 最新更新时间 update_time **/
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
/** 最后更新人 update_by **/
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
/** 最后更新人 update_by **/
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy == null ? null : updateBy.trim();
|
}
|
|
|
public Long getEquipmentId() {
|
return equipmentId;
|
}
|
|
public void setEquipmentId(Long equipmentId) {
|
this.equipmentId = equipmentId;
|
}
|
|
public Float getRangeLowerLimit() {
|
return rangeLowerLimit;
|
}
|
|
public void setRangeLowerLimit(Float rangeLowerLimit) {
|
this.rangeLowerLimit = rangeLowerLimit;
|
}
|
|
public Float getRangeUpperLimit() {
|
return rangeUpperLimit;
|
}
|
|
public void setRangeUpperLimit(Float rangeUpperLimit) {
|
this.rangeUpperLimit = rangeUpperLimit;
|
}
|
|
public Float getHighHighLiquidAlarm() {
|
return highHighLiquidAlarm;
|
}
|
|
public void setHighHighLiquidAlarm(Float highHighLiquidAlarm) {
|
this.highHighLiquidAlarm = highHighLiquidAlarm;
|
}
|
|
public Float getHighLiquidAlarm() {
|
return highLiquidAlarm;
|
}
|
|
public void setHighLiquidAlarm(Float highLiquidAlarm) {
|
this.highLiquidAlarm = highLiquidAlarm;
|
}
|
|
public Float getLowLiquidAlarm() {
|
return lowLiquidAlarm;
|
}
|
|
public void setLowLiquidAlarm(Float lowLiquidAlarm) {
|
this.lowLiquidAlarm = lowLiquidAlarm;
|
}
|
|
public Float getLowLowLiquidAlarm() {
|
return lowLowLiquidAlarm;
|
}
|
|
public void setLowLowLiquidAlarm(Float lowLowLiquidAlarm) {
|
this.lowLowLiquidAlarm = lowLowLiquidAlarm;
|
}
|
|
public String getEquipmentName() {
|
return equipmentName;
|
}
|
|
public void setEquipmentName(String equipmentName) {
|
this.equipmentName = equipmentName;
|
}
|
|
public String getEquipmentSerialNumber() {
|
return equipmentSerialNumber;
|
}
|
|
public void setEquipmentSerialNumber(String equipmentSerialNumber) {
|
this.equipmentSerialNumber = equipmentSerialNumber;
|
}
|
|
public Date getMonitoringTime() {
|
return monitoringTime;
|
}
|
|
public void setMonitoringTime(Date monitoringTime) {
|
this.monitoringTime = monitoringTime;
|
}
|
|
public String getIndex() {
|
return index;
|
}
|
|
public void setIndex(String index) {
|
this.index = index;
|
}
|
}
|