TProgress.java 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. package com.ruoyi.rc.domain;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. import com.ruoyi.common.annotation.Excel;
  7. import com.ruoyi.common.core.domain.BaseEntity;
  8. /**
  9. * 进度对象 t_progress
  10. *
  11. * @author ruoyi
  12. * @date 2024-07-26
  13. */
  14. public class TProgress extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** id */
  18. private Long id;
  19. /** 问卷id */
  20. @Excel(name = "问卷id")
  21. private Long questionnaireId;
  22. /** 章节 */
  23. @Excel(name = "章节")
  24. private String chapName;
  25. /** 细分章节 */
  26. @Excel(name = "细分章节")
  27. private String subChapName;
  28. /** 二级细分章节 */
  29. @Excel(name = "二级细分章节")
  30. private String secSubChapName;
  31. /** 内容 */
  32. @Excel(name = "内容")
  33. private String content;
  34. /** 负责人 */
  35. @Excel(name = "负责人")
  36. private Long personInCharge;
  37. /** 支持人 */
  38. @Excel(name = "支持人")
  39. private Long supporter;
  40. /** 开始日期 */
  41. @JsonFormat(pattern = "yyyy-MM-dd")
  42. @Excel(name = "开始日期", width = 30, dateFormat = "yyyy-MM-dd")
  43. private Date startDate;
  44. /** 目标日期 */
  45. @JsonFormat(pattern = "yyyy-MM-dd")
  46. @Excel(name = "目标日期", width = 30, dateFormat = "yyyy-MM-dd")
  47. private Date targetDate;
  48. /** 实际完成日期 */
  49. @JsonFormat(pattern = "yyyy-MM-dd")
  50. @Excel(name = "实际完成日期", width = 30, dateFormat = "yyyy-MM-dd")
  51. private Date finishDate;
  52. /** 准备情况 */
  53. @Excel(name = "准备情况")
  54. private String preparation;
  55. /** 进度描述 */
  56. @Excel(name = "进度描述")
  57. private String progress;
  58. /** 审批状态 */
  59. @Excel(name = "审批状态")
  60. private String applyStatus;
  61. /** 备注 */
  62. @Excel(name = "备注")
  63. private String remarks;
  64. /** 装置id */
  65. @Excel(name = "装置id")
  66. private String deptId;
  67. /** 审计记录id */
  68. @Excel(name = "审计记录id")
  69. private Long auditId;
  70. /** 装置 */
  71. @Excel(name = "装置")
  72. private String deptName;
  73. private String personInChargeName;
  74. private String supporterName;
  75. private String code;
  76. private String name;
  77. public String getPersonInChargeName() {
  78. return personInChargeName;
  79. }
  80. public void setPersonInChargeName(String personInChargeName) {
  81. this.personInChargeName = personInChargeName;
  82. }
  83. public String getSupporterName() {
  84. return supporterName;
  85. }
  86. public void setSupporterName(String supporterName) {
  87. this.supporterName = supporterName;
  88. }
  89. public String getCode() {
  90. return code;
  91. }
  92. public void setCode(String code) {
  93. this.code = code;
  94. }
  95. public String getName() {
  96. return name;
  97. }
  98. public void setName(String name) {
  99. this.name = name;
  100. }
  101. public String getDeptName() {
  102. return deptName;
  103. }
  104. public void setDeptName(String deptName) {
  105. this.deptName = deptName;
  106. }
  107. public void setId(Long id)
  108. {
  109. this.id = id;
  110. }
  111. public Long getId()
  112. {
  113. return id;
  114. }
  115. public void setQuestionnaireId(Long questionnaireId)
  116. {
  117. this.questionnaireId = questionnaireId;
  118. }
  119. public Long getQuestionnaireId()
  120. {
  121. return questionnaireId;
  122. }
  123. public void setChapName(String chapName)
  124. {
  125. this.chapName = chapName;
  126. }
  127. public String getChapName()
  128. {
  129. return chapName;
  130. }
  131. public void setSubChapName(String subChapName)
  132. {
  133. this.subChapName = subChapName;
  134. }
  135. public String getSubChapName()
  136. {
  137. return subChapName;
  138. }
  139. public void setSecSubChapName(String secSubChapName)
  140. {
  141. this.secSubChapName = secSubChapName;
  142. }
  143. public String getSecSubChapName()
  144. {
  145. return secSubChapName;
  146. }
  147. public void setContent(String content)
  148. {
  149. this.content = content;
  150. }
  151. public String getContent()
  152. {
  153. return content;
  154. }
  155. public void setPersonInCharge(Long personInCharge)
  156. {
  157. this.personInCharge = personInCharge;
  158. }
  159. public Long getPersonInCharge()
  160. {
  161. return personInCharge;
  162. }
  163. public void setSupporter(Long supporter)
  164. {
  165. this.supporter = supporter;
  166. }
  167. public Long getSupporter()
  168. {
  169. return supporter;
  170. }
  171. public void setStartDate(Date startDate)
  172. {
  173. this.startDate = startDate;
  174. }
  175. public Date getStartDate()
  176. {
  177. return startDate;
  178. }
  179. public void setTargetDate(Date targetDate)
  180. {
  181. this.targetDate = targetDate;
  182. }
  183. public Date getTargetDate()
  184. {
  185. return targetDate;
  186. }
  187. public void setFinishDate(Date finishDate)
  188. {
  189. this.finishDate = finishDate;
  190. }
  191. public Date getFinishDate()
  192. {
  193. return finishDate;
  194. }
  195. public void setPreparation(String preparation)
  196. {
  197. this.preparation = preparation;
  198. }
  199. public String getPreparation()
  200. {
  201. return preparation;
  202. }
  203. public void setProgress(String progress)
  204. {
  205. this.progress = progress;
  206. }
  207. public String getProgress()
  208. {
  209. return progress;
  210. }
  211. public void setApplyStatus(String applyStatus)
  212. {
  213. this.applyStatus = applyStatus;
  214. }
  215. public String getApplyStatus()
  216. {
  217. return applyStatus;
  218. }
  219. public void setRemarks(String remarks)
  220. {
  221. this.remarks = remarks;
  222. }
  223. public String getRemarks()
  224. {
  225. return remarks;
  226. }
  227. public void setDeptId(String deptId)
  228. {
  229. this.deptId = deptId;
  230. }
  231. public String getDeptId()
  232. {
  233. return deptId;
  234. }
  235. public void setAuditId(Long auditId)
  236. {
  237. this.auditId = auditId;
  238. }
  239. public Long getAuditId()
  240. {
  241. return auditId;
  242. }
  243. @Override
  244. public String toString() {
  245. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  246. .append("id", getId())
  247. .append("questionnaireId", getQuestionnaireId())
  248. .append("chapName", getChapName())
  249. .append("subChapName", getSubChapName())
  250. .append("secSubChapName", getSecSubChapName())
  251. .append("content", getContent())
  252. .append("personInCharge", getPersonInCharge())
  253. .append("supporter", getSupporter())
  254. .append("startDate", getStartDate())
  255. .append("targetDate", getTargetDate())
  256. .append("finishDate", getFinishDate())
  257. .append("preparation", getPreparation())
  258. .append("progress", getProgress())
  259. .append("applyStatus", getApplyStatus())
  260. .append("remarks", getRemarks())
  261. .append("deptId", getDeptId())
  262. .append("auditId", getAuditId())
  263. .toString();
  264. }
  265. }