|
@@ -0,0 +1,216 @@
|
|
|
+package org.jeecg.modules.detail.vo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+
|
|
|
+ * 功能描述
|
|
|
+ *
|
|
|
+ * @author: nn
|
|
|
+ * @date: 2024年06月03日 10:14
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class InterlockDetailEditQueryVO {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "id")
|
|
|
+ private java.lang.String id;
|
|
|
+
|
|
|
+ @Excel(name = "联锁总表id", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁总表id")
|
|
|
+ private java.lang.String summaryid;
|
|
|
+
|
|
|
+ @Excel(name = "联锁名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁名称")
|
|
|
+ private java.lang.String interlockname;
|
|
|
+
|
|
|
+ @Excel(name = "联锁条件值", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁条件值")
|
|
|
+ private java.lang.String interlockCondition;
|
|
|
+
|
|
|
+ @Excel(name = "联锁条件-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁条件-设备id")
|
|
|
+ private java.lang.String interlockConditionDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "联锁条件-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁条件-模块名称")
|
|
|
+ private java.lang.String interlockConditionModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "联锁条件点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁条件点位")
|
|
|
+ private java.lang.String interlockConditionTag;
|
|
|
+
|
|
|
+ @Excel(name = "描述。", width = 15)
|
|
|
+ @ApiModelProperty(value = "描述。")
|
|
|
+ private java.lang.String description;
|
|
|
+
|
|
|
+ @Excel(name = "仪表状态(0正常1故障)", width = 15, dicCode = "instrument_status")
|
|
|
+ @Dict(dicCode = "instrument_status")
|
|
|
+ @ApiModelProperty(value = "仪表状态(0正常1故障)")
|
|
|
+ private java.lang.String instrumentStatus;
|
|
|
+ private java.lang.String instrumentStatus_dictText;
|
|
|
+
|
|
|
+ @Excel(name = "仪表状态判断方式(0直接读取位号1高低限判断2突变超限判断)", width = 15, dicCode = "instrument_status_juge")
|
|
|
+ @Dict(dicCode = "instrument_status_juge")
|
|
|
+ @ApiModelProperty(value = "仪表状态判断方式(0直接读取位号1高低限判断2突变超限判断)")
|
|
|
+ private java.lang.String instrumentStatusJuge;
|
|
|
+ private java.lang.String instrumentStatusJuge_dictText;
|
|
|
+
|
|
|
+ @Excel(name = "仪表状态-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "仪表状态-设备id")
|
|
|
+ private java.lang.String instrumentStatusDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "仪表状态-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "仪表状态-模块名称")
|
|
|
+ private java.lang.String instrumentStatusModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "仪表状态点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "仪表状态点位")
|
|
|
+ private java.lang.String instrumentStatusTag;
|
|
|
+
|
|
|
+ @Excel(name = "仪表状态值", width = 15)
|
|
|
+ @ApiModelProperty(value = "仪表状态值")
|
|
|
+ private java.lang.String instrumentStatusValue;
|
|
|
+
|
|
|
+ @Excel(name = "原始模拟-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "原始模拟-设备id")
|
|
|
+ private java.lang.String ysmnlDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "原始模拟量-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "原始模拟量-模块名称")
|
|
|
+ private java.lang.String ysmnlModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "原始模拟量点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "原始模拟量点位")
|
|
|
+ private java.lang.String ysmnlTag;
|
|
|
+
|
|
|
+ @Excel(name = "原始模拟量值", width = 15)
|
|
|
+ @ApiModelProperty(value = "原始模拟量值")
|
|
|
+ private java.lang.String ysmnlValue;
|
|
|
+
|
|
|
+ @Excel(name = "高限", width = 15)
|
|
|
+ @ApiModelProperty(value = "高限")
|
|
|
+ private java.lang.String upperLimit;
|
|
|
+
|
|
|
+ @Excel(name = "低限", width = 15)
|
|
|
+ @ApiModelProperty(value = "低限")
|
|
|
+ private java.lang.String lowerLimit;
|
|
|
+
|
|
|
+ @Excel(name = "阈值", width = 15)
|
|
|
+ @ApiModelProperty(value = "阈值")
|
|
|
+ private java.lang.String thresholdValue;
|
|
|
+
|
|
|
+ @Excel(name = "时间", width = 15)
|
|
|
+ @ApiModelProperty(value = "时间")
|
|
|
+ private java.lang.String thresholdTime;
|
|
|
+
|
|
|
+ @Excel(name = "时间单位", width = 15)
|
|
|
+ @ApiModelProperty(value = "时间单位")
|
|
|
+ private java.lang.String thresholdTimeUnit;
|
|
|
+
|
|
|
+ @Excel(name = "控制系统状态( 0正常1非正常)", width = 15, dicCode = "control_system_status")
|
|
|
+ @Dict(dicCode = "control_system_status")
|
|
|
+ @ApiModelProperty(value = "控制系统状态( 0正常1非正常)")
|
|
|
+ private java.lang.String controlSystemStatus;
|
|
|
+ private java.lang.String controlSystemStatus_dictText;
|
|
|
+
|
|
|
+ @Excel(name = "联锁设定值", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁设定值")
|
|
|
+ private java.lang.String interlockSetValue;
|
|
|
+
|
|
|
+ @Excel(name = "当前值", width = 15)
|
|
|
+ @ApiModelProperty(value = "当前值")
|
|
|
+ private java.lang.String currentValue;
|
|
|
+
|
|
|
+ @Excel(name = "当前值-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "当前值-设备id")
|
|
|
+ private java.lang.String currentValueDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "当前值-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "当前值-模块名称")
|
|
|
+ private java.lang.String currentValueModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "当前值点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "当前值点位")
|
|
|
+ private java.lang.String currentValueTag;
|
|
|
+
|
|
|
+ @Excel(name = "是否旁路(0否1是)", width = 15, dicCode = "if_bypass")
|
|
|
+ @Dict(dicCode = "if_bypass")
|
|
|
+ @ApiModelProperty(value = "是否旁路(0否1是)")
|
|
|
+ private java.lang.String ifBypass;
|
|
|
+ private java.lang.String ifBypass_dictText;
|
|
|
+
|
|
|
+ @Excel(name = "旁路状态(0否1是)", width = 15, dicCode = "bypass")
|
|
|
+ @Dict(dicCode = "bypass")
|
|
|
+ @ApiModelProperty(value = "旁路状态(0否1是)")
|
|
|
+ private java.lang.String bypass;
|
|
|
+ private java.lang.String bypass_dictText;
|
|
|
+
|
|
|
+ @Excel(name = "旁路状态-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "旁路状态-设备id")
|
|
|
+ private java.lang.String bypassDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "旁路状态-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "旁路状态-模块名称")
|
|
|
+ private java.lang.String bypassModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "旁路状态点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "旁路状态点位")
|
|
|
+ private java.lang.String bypassTag;
|
|
|
+
|
|
|
+ @Excel(name = "输入卡件状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "输入卡件状态")
|
|
|
+ private java.lang.String inputStatus;
|
|
|
+
|
|
|
+ @Excel(name = "输入卡件状态-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "输入卡件状态-设备id")
|
|
|
+ private java.lang.String inputStatusDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "输入卡件状态-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "输入卡件状态-模块名称")
|
|
|
+ private java.lang.String inputStatusModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "输入卡件状态点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "输入卡件状态点位")
|
|
|
+ private java.lang.String inputStatusTag;
|
|
|
+
|
|
|
+ @Excel(name = "输出卡件状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "输出卡件状态")
|
|
|
+ private java.lang.String outputStatus;
|
|
|
+
|
|
|
+ @Excel(name = "输出卡件状态-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "输出卡件状态-设备id")
|
|
|
+ private java.lang.String outputStatusDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "输出卡件状态-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "输出卡件状态-模块名称")
|
|
|
+ private java.lang.String outputStatusModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "输出卡件状态点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "输出卡件状态点位")
|
|
|
+ private java.lang.String outputStatusTag;
|
|
|
+
|
|
|
+ @Excel(name = "MP状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "MP状态")
|
|
|
+ private java.lang.String mpStatus;
|
|
|
+
|
|
|
+ @Excel(name = "MP状态-设备id", width = 15)
|
|
|
+ @ApiModelProperty(value = "MP状态-设备id")
|
|
|
+ private java.lang.String mpStatusDeviceId;
|
|
|
+
|
|
|
+ @Excel(name = "MP状态-模块名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "MP状态-模块名称")
|
|
|
+ private java.lang.String mpStatusModuleName;
|
|
|
+
|
|
|
+ @Excel(name = "状态点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "状态点位")
|
|
|
+ private java.lang.String mpStatusTag;
|
|
|
+}
|