PdmReportIllegalWeek.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. package com.ruoyi.powerdistribution.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 违章周统计对象 pdm_report_illegal_week 作废
  8. *
  9. * @author ruoyi
  10. * @date 2024-11-29
  11. */
  12. public class PdmReportIllegalWeek extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** $column.columnComment */
  16. private Long id;
  17. /** 单位 */
  18. @Excel(name = "单位")
  19. private String company;
  20. /** 开始日期 */
  21. @Excel(name = "开始日期")
  22. private String reportDate;
  23. /** 结束日期 */
  24. @Excel(name = "结束日期")
  25. private String reportEndDate;
  26. /** 省违章数(严重) */
  27. @Excel(name = "省违章数(严重)")
  28. private Integer provinceNum1;
  29. /** 省违章数(一般) */
  30. @Excel(name = "省违章数(一般)")
  31. private Integer provinceNum2;
  32. /** 市违章数(严重) */
  33. @Excel(name = "市违章数(严重)")
  34. private Integer cityNum1;
  35. /** 市违章数(一般) */
  36. @Excel(name = "市违章数(一般)")
  37. private Integer cityNum2;
  38. /** 县违章数(严重) */
  39. @Excel(name = "县违章数(严重)")
  40. private Integer countyNum1;
  41. /** 县违章数(一般) */
  42. @Excel(name = "县违章数(一般)")
  43. private Integer countyNum2;
  44. public void setId(Long id)
  45. {
  46. this.id = id;
  47. }
  48. public Long getId()
  49. {
  50. return id;
  51. }
  52. public void setCompany(String company)
  53. {
  54. this.company = company;
  55. }
  56. public String getCompany()
  57. {
  58. return company;
  59. }
  60. public void setReportDate(String reportDate)
  61. {
  62. this.reportDate = reportDate;
  63. }
  64. public String getReportDate()
  65. {
  66. return reportDate;
  67. }
  68. public void setReportEndDate(String reportEndDate)
  69. {
  70. this.reportEndDate = reportEndDate;
  71. }
  72. public String getReportEndDate()
  73. {
  74. return reportEndDate;
  75. }
  76. public void setProvinceNum1(Integer provinceNum1)
  77. {
  78. this.provinceNum1 = provinceNum1;
  79. }
  80. public Integer getProvinceNum1()
  81. {
  82. return provinceNum1;
  83. }
  84. public void setProvinceNum2(Integer provinceNum2)
  85. {
  86. this.provinceNum2 = provinceNum2;
  87. }
  88. public Integer getProvinceNum2()
  89. {
  90. return provinceNum2;
  91. }
  92. public void setCityNum1(Integer cityNum1)
  93. {
  94. this.cityNum1 = cityNum1;
  95. }
  96. public Integer getCityNum1()
  97. {
  98. return cityNum1;
  99. }
  100. public void setCityNum2(Integer cityNum2)
  101. {
  102. this.cityNum2 = cityNum2;
  103. }
  104. public Integer getCityNum2()
  105. {
  106. return cityNum2;
  107. }
  108. public void setCountyNum1(Integer countyNum1)
  109. {
  110. this.countyNum1 = countyNum1;
  111. }
  112. public Integer getCountyNum1()
  113. {
  114. return countyNum1;
  115. }
  116. public void setCountyNum2(Integer countyNum2)
  117. {
  118. this.countyNum2 = countyNum2;
  119. }
  120. public Integer getCountyNum2()
  121. {
  122. return countyNum2;
  123. }
  124. @Override
  125. public String toString() {
  126. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  127. .append("id", getId())
  128. .append("company", getCompany())
  129. .append("reportDate", getReportDate())
  130. .append("reportEndDate", getReportEndDate())
  131. .append("provinceNum1", getProvinceNum1())
  132. .append("provinceNum2", getProvinceNum2())
  133. .append("cityNum1", getCityNum1())
  134. .append("cityNum2", getCityNum2())
  135. .append("countyNum1", getCountyNum1())
  136. .append("countyNum2", getCountyNum2())
  137. .append("createBy", getCreateBy())
  138. .append("createTime", getCreateTime())
  139. .append("updateBy", getUpdateBy())
  140. .append("updateTime", getUpdateTime())
  141. .toString();
  142. }
  143. }