WcBlackoutPlanOneExportVo.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.bizmatics.service.vo;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * <p>
  7. *
  8. * </p>
  9. *
  10. * @author ya
  11. * @since 2021-07-07
  12. */
  13. @Data
  14. public class WcBlackoutPlanOneExportVo {
  15. private Integer id;
  16. /**
  17. * 站点ID
  18. */
  19. private Integer siteId;
  20. /**
  21. * 计划类型:1.计划检修停电、2.计划施工停电、3.客户申请停电
  22. */
  23. private Integer planType;
  24. /**
  25. * 开始时间
  26. */
  27. @Excel(name = "开始时间 ", height = 6, width = 20)
  28. private Date startTime;
  29. /**
  30. * 结束时间
  31. */
  32. @Excel(name = "结束时间 ", height = 6, width = 20)
  33. private Date endTime;
  34. /**
  35. * 联系人
  36. */
  37. private String contacts;
  38. /**
  39. * 手机号
  40. */
  41. private String phone;
  42. /**
  43. * 使能标识:1可用;0不可用
  44. */
  45. private Integer enable;
  46. /**
  47. * 添加人
  48. */
  49. @Excel(name = "添加人 ", height = 6, width = 20)
  50. private String creator;
  51. /**
  52. * 添加时间
  53. */
  54. @Excel(name = "添加时间 ", height = 6, width = 20)
  55. private Date createTime;
  56. /**
  57. * 站点名称
  58. */
  59. @Excel(name = "站点名称 ", height = 6, width = 20)
  60. private String siteName;
  61. /**
  62. * 状态 1 未执行 2执行中 3 已执行
  63. */
  64. @Excel(name = "状态 ", height = 6, width = 20)
  65. private Integer type;
  66. }