|
@@ -1,9 +1,11 @@
|
|
|
package com.bizmatics.model;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import java.time.LocalDate;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.experimental.Accessors;
|
|
@@ -14,7 +16,7 @@ import lombok.experimental.Accessors;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author ya
|
|
|
- * @since 2021-07-07
|
|
|
+ * @since 2021-10-26
|
|
|
*/
|
|
|
@Data
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@@ -44,6 +46,11 @@ public class Sitedtl implements Serializable {
|
|
|
*/
|
|
|
private Integer powerCapacity;
|
|
|
|
|
|
+ /**
|
|
|
+ * 所属线路
|
|
|
+ */
|
|
|
+ private Integer routeId;
|
|
|
+
|
|
|
/**
|
|
|
* 所属站点
|
|
|
*/
|
|
@@ -75,9 +82,14 @@ public class Sitedtl implements Serializable {
|
|
|
private Boolean annihilatorInsufficientConfiguration;
|
|
|
|
|
|
/**
|
|
|
- * 灭火器超期(0 否,1 是)
|
|
|
+ * 灭火器超期(时间)
|
|
|
*/
|
|
|
- private Boolean annihilatorOverdue;
|
|
|
+ private String annihilatorOverdue;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 缺失门挡板(0 否,1 是)
|
|
|
+ */
|
|
|
+ private Boolean doorBaffle;
|
|
|
|
|
|
/**
|
|
|
* 堆放杂物(0 否,1 是)
|
|
@@ -115,14 +127,29 @@ public class Sitedtl implements Serializable {
|
|
|
private Boolean overdueElectricianCertificate;
|
|
|
|
|
|
/**
|
|
|
- * 电试超期(0 否,1 是)
|
|
|
+ * 电试超期(标明电试日期)
|
|
|
+ */
|
|
|
+ private String electricTestOverdue;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 高压柜年份
|
|
|
+ */
|
|
|
+ private String highVoltageCabinet;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 变压器年份(标明出厂或投运日期)
|
|
|
+ */
|
|
|
+ private String oldEquipment;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 带电显示器损坏(0 否 1 是)
|
|
|
*/
|
|
|
- private Boolean electricTestOverdue;
|
|
|
+ private Boolean chargedDisplay;
|
|
|
|
|
|
/**
|
|
|
- * 设备老旧(标明出厂或投运日期)
|
|
|
+ * 缺失照明(0 否 ,1 是)
|
|
|
*/
|
|
|
- private LocalDate oldEquipment;
|
|
|
+ private Boolean lighting;
|
|
|
|
|
|
/**
|
|
|
* 绝缘毯配置不足(0 否,1 是)
|
|
@@ -144,5 +171,15 @@ public class Sitedtl implements Serializable {
|
|
|
*/
|
|
|
private String remarks;
|
|
|
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
|
|
|
}
|