TClassdOverview.java 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. package com.cpms.project.process.domain;
  2. import java.util.Date;
  3. import com.cpms.common.core.domain.BaseEntity;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import com.cpms.common.annotation.Excel;
  6. import org.apache.commons.lang3.builder.ToStringBuilder;
  7. import org.apache.commons.lang3.builder.ToStringStyle;
  8. /**
  9. * Class D overview list对象 t_classd_overview
  10. *
  11. * @author admin
  12. * @date 2024-04-16
  13. */
  14. public class TClassdOverview extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** id */
  18. private Long id;
  19. /** Discussion item */
  20. @Excel(name = "Discussion item")
  21. private String discussionItem;
  22. /** Hazard */
  23. @Excel(name = "Hazard")
  24. private String hazard;
  25. /** Cause */
  26. @Excel(name = "Cause")
  27. private String cause;
  28. /** Consequence */
  29. @Excel(name = "Consequence")
  30. private String consequence;
  31. /** P */
  32. @Excel(name = "P")
  33. private String p;
  34. /** Justification P */
  35. @Excel(name = "Justification P")
  36. private String justificationP;
  37. /** S */
  38. @Excel(name = "S")
  39. private String s;
  40. /** Justification S */
  41. @Excel(name = "Justification S")
  42. private String justificationS;
  43. /** RC */
  44. @Excel(name = "RC")
  45. private String rc;
  46. /** Countermeasure */
  47. @Excel(name = "Countermeasure")
  48. private String countermeasure;
  49. /** 备注 */
  50. @Excel(name = "备注")
  51. private String remarks;
  52. /** 删除标识 */
  53. private Integer delFlag;
  54. /** 创建人 */
  55. @Excel(name = "创建人")
  56. private String createrCode;
  57. /** 创建日期 */
  58. @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
  59. @Excel(name = "创建日期", width = 30, dateFormat = "yyyy-MM-dd")
  60. private Date createdate;
  61. /** 更新人 */
  62. @Excel(name = "更新人")
  63. private String updaterCode;
  64. /** 更新日期 */
  65. @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
  66. @Excel(name = "更新日期", width = 30, dateFormat = "yyyy-MM-dd")
  67. private Date updatedate;
  68. /** 部门编号 */
  69. @Excel(name = "部门编号")
  70. private Long deptId;
  71. public void setId(Long id)
  72. {
  73. this.id = id;
  74. }
  75. public Long getId()
  76. {
  77. return id;
  78. }
  79. public void setDiscussionItem(String discussionItem)
  80. {
  81. this.discussionItem = discussionItem;
  82. }
  83. public String getDiscussionItem()
  84. {
  85. return discussionItem;
  86. }
  87. public void setHazard(String hazard)
  88. {
  89. this.hazard = hazard;
  90. }
  91. public String getHazard()
  92. {
  93. return hazard;
  94. }
  95. public void setCause(String cause)
  96. {
  97. this.cause = cause;
  98. }
  99. public String getCause()
  100. {
  101. return cause;
  102. }
  103. public void setConsequence(String consequence)
  104. {
  105. this.consequence = consequence;
  106. }
  107. public String getConsequence()
  108. {
  109. return consequence;
  110. }
  111. public void setP(String p)
  112. {
  113. this.p = p;
  114. }
  115. public String getP()
  116. {
  117. return p;
  118. }
  119. public void setJustificationP(String justificationP)
  120. {
  121. this.justificationP = justificationP;
  122. }
  123. public String getJustificationP()
  124. {
  125. return justificationP;
  126. }
  127. public void setS(String s)
  128. {
  129. this.s = s;
  130. }
  131. public String getS()
  132. {
  133. return s;
  134. }
  135. public void setJustificationS(String justificationS)
  136. {
  137. this.justificationS = justificationS;
  138. }
  139. public String getJustificationS()
  140. {
  141. return justificationS;
  142. }
  143. public void setRc(String rc)
  144. {
  145. this.rc = rc;
  146. }
  147. public String getRc()
  148. {
  149. return rc;
  150. }
  151. public void setCountermeasure(String countermeasure)
  152. {
  153. this.countermeasure = countermeasure;
  154. }
  155. public String getCountermeasure()
  156. {
  157. return countermeasure;
  158. }
  159. public void setRemarks(String remarks)
  160. {
  161. this.remarks = remarks;
  162. }
  163. public String getRemarks()
  164. {
  165. return remarks;
  166. }
  167. public void setDelFlag(Integer delFlag)
  168. {
  169. this.delFlag = delFlag;
  170. }
  171. public Integer getDelFlag()
  172. {
  173. return delFlag;
  174. }
  175. public void setCreaterCode(String createrCode)
  176. {
  177. this.createrCode = createrCode;
  178. }
  179. public String getCreaterCode()
  180. {
  181. return createrCode;
  182. }
  183. public void setCreatedate(Date createdate)
  184. {
  185. this.createdate = createdate;
  186. }
  187. public Date getCreatedate()
  188. {
  189. return createdate;
  190. }
  191. public void setUpdaterCode(String updaterCode)
  192. {
  193. this.updaterCode = updaterCode;
  194. }
  195. public String getUpdaterCode()
  196. {
  197. return updaterCode;
  198. }
  199. public void setUpdatedate(Date updatedate)
  200. {
  201. this.updatedate = updatedate;
  202. }
  203. public Date getUpdatedate()
  204. {
  205. return updatedate;
  206. }
  207. public void setDeptId(Long deptId)
  208. {
  209. this.deptId = deptId;
  210. }
  211. public Long getDeptId()
  212. {
  213. return deptId;
  214. }
  215. @Override
  216. public String toString() {
  217. return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
  218. .append("id", getId())
  219. .append("discussionItem", getDiscussionItem())
  220. .append("hazard", getHazard())
  221. .append("cause", getCause())
  222. .append("consequence", getConsequence())
  223. .append("p", getP())
  224. .append("justificationP", getJustificationP())
  225. .append("s", getS())
  226. .append("justificationS", getJustificationS())
  227. .append("rc", getRc())
  228. .append("countermeasure", getCountermeasure())
  229. .append("remarks", getRemarks())
  230. .append("delFlag", getDelFlag())
  231. .append("createrCode", getCreaterCode())
  232. .append("createdate", getCreatedate())
  233. .append("updaterCode", getUpdaterCode())
  234. .append("updatedate", getUpdatedate())
  235. .append("deptId", getDeptId())
  236. .toString();
  237. }
  238. }