PdmReportAppointmentDay.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. package com.ruoyi.powerdistribution.domain;
  2. import lombok.Data;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import com.ruoyi.common.annotation.Excel;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. /**
  8. * 履职日统计对象 pdm_report_appointment_day
  9. *
  10. * @author ruoyi
  11. * @date 2024-11-28
  12. */
  13. @Data
  14. public class PdmReportAppointmentDay extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** $column.columnComment */
  18. private Long id;
  19. /** 单位 */
  20. @Excel(name = "单位")
  21. private String company;
  22. /** 日期 */
  23. @Excel(name = "日期")
  24. private String reportDate;
  25. /** 领导督察次数 */
  26. @Excel(name = "领导督察次数")
  27. private Integer bossSum;
  28. /** 管理督察次数 */
  29. @Excel(name = "管理督察次数")
  30. private Integer manageSum;
  31. /** 未履职数量 */
  32. @Excel(name = "未履职数量")
  33. private Integer absentSum;
  34. /** 未履职明细 */
  35. @Excel(name = "未履职明细")
  36. private String absentDetail;
  37. /** 履职不到位数量 */
  38. @Excel(name = "履职不到位数量")
  39. private Integer absentBadSum;
  40. /** 履职不到位明细 */
  41. @Excel(name = "履职不到位明细")
  42. private String absentBadDetail;
  43. private Long no;
  44. /** 督察现场数量 三级 */
  45. @Excel(name = "督察现场数量 三级")
  46. private Integer checkNum3;
  47. /** 督察现场数量 四级 */
  48. @Excel(name = "督察现场数量 四级")
  49. private Integer checkNum4;
  50. /** 督察现场数量 五级 */
  51. @Excel(name = "督察现场数量 五级")
  52. private Integer checkNum5;
  53. /** 问题数量 */
  54. @Excel(name = "问题数量")
  55. private Integer problemSum;
  56. /** 市公司查处问题数 */
  57. @Excel(name = "市公司查处问题数")
  58. private Integer cityCheckSum;
  59. /**
  60. * 查询-开始时间
  61. */
  62. private String startDate;
  63. /**
  64. * 查询-结束时间
  65. */
  66. private String endDate;
  67. public void setId(Long id)
  68. {
  69. this.id = id;
  70. }
  71. public Long getId()
  72. {
  73. return id;
  74. }
  75. public void setCompany(String company)
  76. {
  77. this.company = company;
  78. }
  79. public String getCompany()
  80. {
  81. return company;
  82. }
  83. public void setReportDate(String reportDate)
  84. {
  85. this.reportDate = reportDate;
  86. }
  87. public String getReportDate()
  88. {
  89. return reportDate;
  90. }
  91. public void setBossSum(Integer bossSum)
  92. {
  93. this.bossSum = bossSum;
  94. }
  95. public Integer getBossSum()
  96. {
  97. return bossSum;
  98. }
  99. public void setManageSum(Integer manageSum)
  100. {
  101. this.manageSum = manageSum;
  102. }
  103. public Integer getManageSum()
  104. {
  105. return manageSum;
  106. }
  107. public void setAbsentSum(Integer absentSum)
  108. {
  109. this.absentSum = absentSum;
  110. }
  111. public Integer getAbsentSum()
  112. {
  113. return absentSum;
  114. }
  115. public void setAbsentDetail(String absentDetail)
  116. {
  117. this.absentDetail = absentDetail;
  118. }
  119. public String getAbsentDetail()
  120. {
  121. return absentDetail;
  122. }
  123. public void setAbsentBadSum(Integer absentBadSum)
  124. {
  125. this.absentBadSum = absentBadSum;
  126. }
  127. public Integer getAbsentBadSum()
  128. {
  129. return absentBadSum;
  130. }
  131. public void setAbsentBadDetail(String absentBadDetail)
  132. {
  133. this.absentBadDetail = absentBadDetail;
  134. }
  135. public String getAbsentBadDetail()
  136. {
  137. return absentBadDetail;
  138. }
  139. @Override
  140. public String toString() {
  141. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  142. .append("id", getId())
  143. .append("company", getCompany())
  144. .append("reportDate", getReportDate())
  145. .append("bossSum", getBossSum())
  146. .append("manageSum", getManageSum())
  147. .append("absentSum", getAbsentSum())
  148. .append("absentDetail", getAbsentDetail())
  149. .append("absentBadSum", getAbsentBadSum())
  150. .append("absentBadDetail", getAbsentBadDetail())
  151. .append("createBy", getCreateBy())
  152. .append("createTime", getCreateTime())
  153. .append("updateBy", getUpdateBy())
  154. .append("updateTime", getUpdateTime())
  155. .toString();
  156. }
  157. }