|
@@ -19,63 +19,63 @@ public class WcBlackoutPlanOneExportVo {
|
|
|
private Integer id;
|
|
|
|
|
|
/**
|
|
|
- * 站点ID
|
|
|
- */
|
|
|
- private Integer siteId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 计划类型:1.计划检修停电、2.计划施工停电、3.客户申请停电
|
|
|
+ * 站点名称
|
|
|
*/
|
|
|
- private Integer planType;
|
|
|
+ @Excel(name = "站点名称 ", height = 6, width = 20)
|
|
|
+ private String siteName;
|
|
|
|
|
|
/**
|
|
|
* 开始时间
|
|
|
*/
|
|
|
- @Excel(name = "开始时间 ", height = 6, width = 20)
|
|
|
+ @Excel(name = "开始停电时间 ", height = 6, width = 20)
|
|
|
private Date startTime;
|
|
|
|
|
|
/**
|
|
|
* 结束时间
|
|
|
*/
|
|
|
- @Excel(name = "结束时间 ", height = 6, width = 20)
|
|
|
+ @Excel(name = "结束停电时间 ", height = 6, width = 20)
|
|
|
private Date endTime;
|
|
|
|
|
|
/**
|
|
|
- * 联系人
|
|
|
+ * 添加时间
|
|
|
*/
|
|
|
- private String contacts;
|
|
|
+ @Excel(name = "提交时间 ", height = 6, width = 20)
|
|
|
+ private Date createTime;
|
|
|
|
|
|
/**
|
|
|
- * 手机号
|
|
|
+ * 添加人
|
|
|
*/
|
|
|
- private String phone;
|
|
|
+ @Excel(name = "提交人 ", height = 6, width = 20)
|
|
|
+ private String creator;
|
|
|
|
|
|
/**
|
|
|
- * 使能标识:1可用;0不可用
|
|
|
+ * 状态 1 未执行 2执行中 3 已执行
|
|
|
*/
|
|
|
- private Integer enable;
|
|
|
+ @Excel(name = "状态 ", height = 6, width = 20)
|
|
|
+ private String type;
|
|
|
|
|
|
/**
|
|
|
- * 添加人
|
|
|
+ * 站点ID
|
|
|
*/
|
|
|
- @Excel(name = "添加人 ", height = 6, width = 20)
|
|
|
- private String creator;
|
|
|
+ private Integer siteId;
|
|
|
|
|
|
/**
|
|
|
- * 添加时间
|
|
|
+ * 计划类型:1.计划检修停电、2.计划施工停电、3.客户申请停电
|
|
|
*/
|
|
|
- @Excel(name = "添加时间 ", height = 6, width = 20)
|
|
|
- private Date createTime;
|
|
|
+ private Integer planType;
|
|
|
|
|
|
/**
|
|
|
- * 站点名称
|
|
|
+ * 联系人
|
|
|
*/
|
|
|
- @Excel(name = "站点名称 ", height = 6, width = 20)
|
|
|
- private String siteName;
|
|
|
+ private String contacts;
|
|
|
|
|
|
/**
|
|
|
- * 状态 1 未执行 2执行中 3 已执行
|
|
|
+ * 手机号
|
|
|
*/
|
|
|
- @Excel(name = "状态 ", height = 6, width = 20)
|
|
|
- private String type;
|
|
|
+ private String phone;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 使能标识:1可用;0不可用
|
|
|
+ */
|
|
|
+ private Integer enable;
|
|
|
}
|