PdmReportPlanDay.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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_plan_day
  9. *
  10. * @author ruoyi
  11. * @date 2024-11-28
  12. */
  13. @Data
  14. public class PdmReportPlanDay 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 total;
  28. /** 周计划总数 */
  29. @Excel(name = "周计划总数")
  30. private Integer weekSum;
  31. /** 周计划取消数 */
  32. @Excel(name = "周计划取消数")
  33. private Integer weekCancelSum;
  34. /** 周计划执行率 */
  35. @Excel(name = "周计划执行率")
  36. private String weekRatio;
  37. /** 临时计划总数 */
  38. @Excel(name = "临时计划总数")
  39. private Integer temporarySum;
  40. /** 临时计划取消数 */
  41. @Excel(name = "临时计划取消数")
  42. private Integer temporaryCancelSum;
  43. /** 临时计划执行率 */
  44. @Excel(name = "临时计划执行率")
  45. private String temporaryRatio;
  46. /** 临时计划率 */
  47. @Excel(name = "临时计划率")
  48. private String temporaryPlanRatio;
  49. private Long no;
  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 setTotal(Integer total)
  75. {
  76. this.total = total;
  77. }
  78. public Integer getTotal()
  79. {
  80. return total;
  81. }
  82. public void setWeekSum(Integer weekSum)
  83. {
  84. this.weekSum = weekSum;
  85. }
  86. public Integer getWeekSum()
  87. {
  88. return weekSum;
  89. }
  90. public void setWeekCancelSum(Integer weekCancelSum)
  91. {
  92. this.weekCancelSum = weekCancelSum;
  93. }
  94. public Integer getWeekCancelSum()
  95. {
  96. return weekCancelSum;
  97. }
  98. public void setWeekRatio(String weekRatio)
  99. {
  100. this.weekRatio = weekRatio;
  101. }
  102. public String getWeekRatio()
  103. {
  104. return weekRatio;
  105. }
  106. public void setTemporarySum(Integer temporarySum)
  107. {
  108. this.temporarySum = temporarySum;
  109. }
  110. public Integer getTemporarySum()
  111. {
  112. return temporarySum;
  113. }
  114. public void setTemporaryCancelSum(Integer temporaryCancelSum)
  115. {
  116. this.temporaryCancelSum = temporaryCancelSum;
  117. }
  118. public Integer getTemporaryCancelSum()
  119. {
  120. return temporaryCancelSum;
  121. }
  122. public void setTemporaryRatio(String temporaryRatio)
  123. {
  124. this.temporaryRatio = temporaryRatio;
  125. }
  126. public String getTemporaryRatio()
  127. {
  128. return temporaryRatio;
  129. }
  130. public void setTemporaryPlanRatio(String temporaryPlanRatio)
  131. {
  132. this.temporaryPlanRatio = temporaryPlanRatio;
  133. }
  134. public String getTemporaryPlanRatio()
  135. {
  136. return temporaryPlanRatio;
  137. }
  138. @Override
  139. public String toString() {
  140. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  141. .append("id", getId())
  142. .append("company", getCompany())
  143. .append("reportDate", getReportDate())
  144. .append("total", getTotal())
  145. .append("weekSum", getWeekSum())
  146. .append("weekCancelSum", getWeekCancelSum())
  147. .append("weekRatio", getWeekRatio())
  148. .append("temporarySum", getTemporarySum())
  149. .append("temporaryCancelSum", getTemporaryCancelSum())
  150. .append("temporaryRatio", getTemporaryRatio())
  151. .append("temporaryPlanRatio", getTemporaryPlanRatio())
  152. .append("createBy", getCreateBy())
  153. .append("createTime", getCreateTime())
  154. .append("updateBy", getUpdateBy())
  155. .append("updateTime", getUpdateTime())
  156. .toString();
  157. }
  158. }