TSecSubChap.java 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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_sec_sub_chap
  10. *
  11. * @author ruoyi
  12. * @date 2024-07-19
  13. */
  14. public class TSecSubChap 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 auditId;
  22. /** 问卷细分章节id */
  23. @Excel(name = "问卷细分章节id")
  24. private Long subChapId;
  25. /** 年份 */
  26. @JsonFormat(pattern = "yyyy-MM-dd")
  27. @Excel(name = "年份", width = 30, dateFormat = "yyyy-MM-dd")
  28. private Date year;
  29. /** 问卷类型 */
  30. @Excel(name = "问卷类型")
  31. private String type;
  32. /** 目录 */
  33. @Excel(name = "目录")
  34. private String directory;
  35. /** 序号 */
  36. @Excel(name = "序号")
  37. private Long code;
  38. /** 名称 */
  39. @Excel(name = "名称")
  40. private String name;
  41. /** YES/NO/NA */
  42. @Excel(name = "YES/NO/NA")
  43. private String yeaNoNa;
  44. /** MinimumStandard */
  45. @Excel(name = "MinimumStandard")
  46. private String minimumStandard;
  47. /** Good Practices */
  48. @Excel(name = "Good Practices")
  49. private String goodPractices;
  50. /** 标准 */
  51. @Excel(name = "标准")
  52. private String starndard;
  53. /** 完成情况 */
  54. @Excel(name = "完成情况")
  55. private String completionStatus;
  56. /** 负责人 */
  57. @Excel(name = "负责人")
  58. private Long personInCharge;
  59. /** 审核人 */
  60. @Excel(name = "审核人")
  61. private Long reviewer;
  62. /** 备注 */
  63. @Excel(name = "备注")
  64. private String remarks;
  65. /** 装置id */
  66. @Excel(name = "装置id")
  67. private Long deptId;
  68. public void setId(Long id)
  69. {
  70. this.id = id;
  71. }
  72. public Long getId()
  73. {
  74. return id;
  75. }
  76. public void setAuditId(Long auditId)
  77. {
  78. this.auditId = auditId;
  79. }
  80. public Long getAuditId()
  81. {
  82. return auditId;
  83. }
  84. public void setSubChapId(Long subChapId)
  85. {
  86. this.subChapId = subChapId;
  87. }
  88. public Long getSubChapId()
  89. {
  90. return subChapId;
  91. }
  92. public void setYear(Date year)
  93. {
  94. this.year = year;
  95. }
  96. public Date getYear()
  97. {
  98. return year;
  99. }
  100. public void setType(String type)
  101. {
  102. this.type = type;
  103. }
  104. public String getType()
  105. {
  106. return type;
  107. }
  108. public void setDirectory(String directory)
  109. {
  110. this.directory = directory;
  111. }
  112. public String getDirectory()
  113. {
  114. return directory;
  115. }
  116. public void setCode(Long code)
  117. {
  118. this.code = code;
  119. }
  120. public Long getCode()
  121. {
  122. return code;
  123. }
  124. public void setName(String name)
  125. {
  126. this.name = name;
  127. }
  128. public String getName()
  129. {
  130. return name;
  131. }
  132. public void setYeaNoNa(String yeaNoNa)
  133. {
  134. this.yeaNoNa = yeaNoNa;
  135. }
  136. public String getYeaNoNa()
  137. {
  138. return yeaNoNa;
  139. }
  140. public void setMinimumStandard(String minimumStandard)
  141. {
  142. this.minimumStandard = minimumStandard;
  143. }
  144. public String getMinimumStandard()
  145. {
  146. return minimumStandard;
  147. }
  148. public void setGoodPractices(String goodPractices)
  149. {
  150. this.goodPractices = goodPractices;
  151. }
  152. public String getGoodPractices()
  153. {
  154. return goodPractices;
  155. }
  156. public void setStarndard(String starndard)
  157. {
  158. this.starndard = starndard;
  159. }
  160. public String getStarndard()
  161. {
  162. return starndard;
  163. }
  164. public void setCompletionStatus(String completionStatus)
  165. {
  166. this.completionStatus = completionStatus;
  167. }
  168. public String getCompletionStatus()
  169. {
  170. return completionStatus;
  171. }
  172. public void setPersonInCharge(Long personInCharge)
  173. {
  174. this.personInCharge = personInCharge;
  175. }
  176. public Long getPersonInCharge()
  177. {
  178. return personInCharge;
  179. }
  180. public void setReviewer(Long reviewer)
  181. {
  182. this.reviewer = reviewer;
  183. }
  184. public Long getReviewer()
  185. {
  186. return reviewer;
  187. }
  188. public void setRemarks(String remarks)
  189. {
  190. this.remarks = remarks;
  191. }
  192. public String getRemarks()
  193. {
  194. return remarks;
  195. }
  196. public void setDeptId(Long deptId)
  197. {
  198. this.deptId = deptId;
  199. }
  200. public Long getDeptId()
  201. {
  202. return deptId;
  203. }
  204. @Override
  205. public String toString() {
  206. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  207. .append("id", getId())
  208. .append("auditId", getAuditId())
  209. .append("subChapId", getSubChapId())
  210. .append("year", getYear())
  211. .append("type", getType())
  212. .append("directory", getDirectory())
  213. .append("code", getCode())
  214. .append("name", getName())
  215. .append("yeaNoNa", getYeaNoNa())
  216. .append("minimumStandard", getMinimumStandard())
  217. .append("goodPractices", getGoodPractices())
  218. .append("starndard", getStarndard())
  219. .append("completionStatus", getCompletionStatus())
  220. .append("personInCharge", getPersonInCharge())
  221. .append("reviewer", getReviewer())
  222. .append("remarks", getRemarks())
  223. .append("deptId", getDeptId())
  224. .toString();
  225. }
  226. }