|
@@ -0,0 +1,87 @@
|
|
|
+package org.jeecg.modules.summary.vo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+
|
|
|
+/**
|
|
|
+ * ClassName: InterlockSummaryLimitVO
|
|
|
+ * Package: org.jeecg.modules.summary.vo
|
|
|
+ * Description:
|
|
|
+ *
|
|
|
+ * @Author sl
|
|
|
+ * @Create 2024/8/1 14:24
|
|
|
+ * @Version 1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class InterlockSummaryLimitVO {
|
|
|
+ /**id*/
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "id")
|
|
|
+ private java.lang.String id;
|
|
|
+ /**联锁总表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 = "联锁条件点位", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁条件点位")
|
|
|
+ private java.lang.String interlockConditionTag;
|
|
|
+ /**仪表状态*/
|
|
|
+ @Excel(name = "仪表状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "仪表状态")
|
|
|
+// @Dict(dicCode = "instrument_status")
|
|
|
+ private java.lang.String instrumentStatus;
|
|
|
+ private java.lang.String instrumentStatusName;
|
|
|
+ private java.lang.String instrumentStatusNormal;
|
|
|
+ /**控制系统状态*/
|
|
|
+ @Excel(name = "控制系统状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "控制系统状态")
|
|
|
+// @Dict(dicCode = "control_system_status")
|
|
|
+ private java.lang.String controlSystemStatus;
|
|
|
+ private java.lang.String controlSystemStatusName;
|
|
|
+ private java.lang.String controlSystemStatusNormal;
|
|
|
+ /**联锁状态*/
|
|
|
+ @Excel(name = "联锁状态", width = 15)
|
|
|
+ @ApiModelProperty(value = "联锁状态")
|
|
|
+// @Dict(dicCode = "interlock_status")
|
|
|
+ private java.lang.String interlockStatus;
|
|
|
+ private java.lang.String interlockStatusName;
|
|
|
+ private java.lang.String interlockStatusTy;
|
|
|
+ /**回路健康级别*/
|
|
|
+ @Excel(name = "回路健康级别", width = 15)
|
|
|
+ @ApiModelProperty(value = "回路健康级别")
|
|
|
+ private java.lang.String loopHealthLevel;
|
|
|
+ /**旁路状态*/
|
|
|
+// @Dict(dicCode = "bypass")
|
|
|
+ @ApiModelProperty(value = "旁路状态")
|
|
|
+ private java.lang.String bypass;
|
|
|
+ private java.lang.String bypassName;
|
|
|
+ private java.lang.String bypassYes;
|
|
|
+
|
|
|
+
|
|
|
+ /**装置id*/
|
|
|
+ @Excel(name = "装置id", width = 15)
|
|
|
+ @ApiModelProperty(value = "装置id")
|
|
|
+ private java.lang.String interlockApparatusId;
|
|
|
+ /**系统id*/
|
|
|
+ @Excel(name = "系统id", width = 15)
|
|
|
+ @ApiModelProperty(value = "系统id")
|
|
|
+ private java.lang.String interlockSystemId;
|
|
|
+ /**系统权限类型(0管理1查看)*/
|
|
|
+// @Excel(name = "系统权限类型(0管理1查看)", width = 15)
|
|
|
+ @ApiModelProperty(value = "系统权限类型(0管理1查看)")
|
|
|
+ private java.lang.String limitType;
|
|
|
+
|
|
|
+}
|