PdmReportPlanWeek.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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_plan_week 作废
  8. *
  9. * @author ruoyi
  10. * @date 2024-11-29
  11. */
  12. public class PdmReportPlanWeek 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 total;
  29. /** 周计划总数 */
  30. @Excel(name = "周计划总数")
  31. private Integer weekSum;
  32. /** 周计划取消数 */
  33. @Excel(name = "周计划取消数")
  34. private Integer weekCancelSum;
  35. /** 周计划执行率 */
  36. @Excel(name = "周计划执行率")
  37. private String weekRatio;
  38. /** 临时计划总数 */
  39. @Excel(name = "临时计划总数")
  40. private Integer temporarySum;
  41. /** 临时计划取消数 */
  42. @Excel(name = "临时计划取消数")
  43. private Integer temporaryCancelSum;
  44. /** 临时计划执行率 */
  45. @Excel(name = "临时计划执行率")
  46. private String temporaryRatio;
  47. /** 临时计划率 */
  48. @Excel(name = "临时计划率")
  49. private String temporaryPlanRatio;
  50. public void setId(Long id)
  51. {
  52. this.id = id;
  53. }
  54. public Long getId()
  55. {
  56. return id;
  57. }
  58. public void setCompany(String company)
  59. {
  60. this.company = company;
  61. }
  62. public String getCompany()
  63. {
  64. return company;
  65. }
  66. public void setReportDate(String reportDate)
  67. {
  68. this.reportDate = reportDate;
  69. }
  70. public String getReportDate()
  71. {
  72. return reportDate;
  73. }
  74. public void setReportEndDate(String reportEndDate)
  75. {
  76. this.reportEndDate = reportEndDate;
  77. }
  78. public String getReportEndDate()
  79. {
  80. return reportEndDate;
  81. }
  82. public void setTotal(Integer total)
  83. {
  84. this.total = total;
  85. }
  86. public Integer getTotal()
  87. {
  88. return total;
  89. }
  90. public void setWeekSum(Integer weekSum)
  91. {
  92. this.weekSum = weekSum;
  93. }
  94. public Integer getWeekSum()
  95. {
  96. return weekSum;
  97. }
  98. public void setWeekCancelSum(Integer weekCancelSum)
  99. {
  100. this.weekCancelSum = weekCancelSum;
  101. }
  102. public Integer getWeekCancelSum()
  103. {
  104. return weekCancelSum;
  105. }
  106. public void setWeekRatio(String weekRatio)
  107. {
  108. this.weekRatio = weekRatio;
  109. }
  110. public String getWeekRatio()
  111. {
  112. return weekRatio;
  113. }
  114. public void setTemporarySum(Integer temporarySum)
  115. {
  116. this.temporarySum = temporarySum;
  117. }
  118. public Integer getTemporarySum()
  119. {
  120. return temporarySum;
  121. }
  122. public void setTemporaryCancelSum(Integer temporaryCancelSum)
  123. {
  124. this.temporaryCancelSum = temporaryCancelSum;
  125. }
  126. public Integer getTemporaryCancelSum()
  127. {
  128. return temporaryCancelSum;
  129. }
  130. public void setTemporaryRatio(String temporaryRatio)
  131. {
  132. this.temporaryRatio = temporaryRatio;
  133. }
  134. public String getTemporaryRatio()
  135. {
  136. return temporaryRatio;
  137. }
  138. public void setTemporaryPlanRatio(String temporaryPlanRatio)
  139. {
  140. this.temporaryPlanRatio = temporaryPlanRatio;
  141. }
  142. public String getTemporaryPlanRatio()
  143. {
  144. return temporaryPlanRatio;
  145. }
  146. @Override
  147. public String toString() {
  148. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  149. .append("id", getId())
  150. .append("company", getCompany())
  151. .append("reportDate", getReportDate())
  152. .append("reportEndDate", getReportEndDate())
  153. .append("total", getTotal())
  154. .append("weekSum", getWeekSum())
  155. .append("weekCancelSum", getWeekCancelSum())
  156. .append("weekRatio", getWeekRatio())
  157. .append("temporarySum", getTemporarySum())
  158. .append("temporaryCancelSum", getTemporaryCancelSum())
  159. .append("temporaryRatio", getTemporaryRatio())
  160. .append("temporaryPlanRatio", getTemporaryPlanRatio())
  161. .append("createBy", getCreateBy())
  162. .append("createTime", getCreateTime())
  163. .append("updateBy", getUpdateBy())
  164. .append("updateTime", getUpdateTime())
  165. .toString();
  166. }
  167. }