ZxUrge.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. package com.ruoyi.system.domain.urge;
  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. * 政协催办对象 zx_urge
  10. *
  11. * @author boman
  12. * @date 2024-03-12
  13. */
  14. public class ZxUrge extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** 催办ID */
  18. private Long zxUrgeId;
  19. /** 提案/社情民意id */
  20. @Excel(name = "提案/社情民意id")
  21. private Long scoreId;
  22. /** 催办标题 */
  23. @Excel(name = "催办标题")
  24. private String urgeTitle;
  25. /** 催办类型(字典值)1:提案催办 2:社情名义催办 */
  26. @Excel(name = "催办类型", readConverterExp = "字=典值")
  27. private String urgeType;
  28. /** 催办内容 */
  29. @Excel(name = "催办内容")
  30. private String urgeContent;
  31. /** 催办状态 */
  32. private String status;
  33. /** 发布人 */
  34. @Excel(name = "发布人")
  35. private String issuer;
  36. /** 发布人id */
  37. @Excel(name = "发布人id")
  38. private Long issuerId;
  39. /** 发布单位 */
  40. @Excel(name = "发布单位")
  41. private String issuerDept;
  42. /** 发布单位id */
  43. @Excel(name = "发布单位id")
  44. private Long issuerDeptId;
  45. /** 接收人 */
  46. @Excel(name = "接收人")
  47. private String acceptUser;
  48. /** 接收人id */
  49. @Excel(name = "接收人id")
  50. private Long acceptUserId;
  51. /** 接收单位 */
  52. @Excel(name = "接收单位")
  53. private String acceptDept;
  54. /** 接收单位id */
  55. @Excel(name = "接收单位id")
  56. private Long acceptDeptId;
  57. /** 催办时间 */
  58. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  59. @Excel(name = "催办时间", width = 30, dateFormat = "HH:mm:ss")
  60. private Date urgeTime;
  61. public void setZxUrgeId(Long zxUrgeId)
  62. {
  63. this.zxUrgeId = zxUrgeId;
  64. }
  65. public Long getZxUrgeId()
  66. {
  67. return zxUrgeId;
  68. }
  69. public void setScoreId(Long scoreId)
  70. {
  71. this.scoreId = scoreId;
  72. }
  73. public Long getScoreId()
  74. {
  75. return scoreId;
  76. }
  77. public void setUrgeTitle(String urgeTitle)
  78. {
  79. this.urgeTitle = urgeTitle;
  80. }
  81. public String getUrgeTitle()
  82. {
  83. return urgeTitle;
  84. }
  85. public void setUrgeType(String urgeType)
  86. {
  87. this.urgeType = urgeType;
  88. }
  89. public String getUrgeType()
  90. {
  91. return urgeType;
  92. }
  93. public void setUrgeContent(String urgeContent)
  94. {
  95. this.urgeContent = urgeContent;
  96. }
  97. public String getUrgeContent()
  98. {
  99. return urgeContent;
  100. }
  101. public void setStatus(String status)
  102. {
  103. this.status = status;
  104. }
  105. public String getStatus()
  106. {
  107. return status;
  108. }
  109. public void setIssuer(String issuer)
  110. {
  111. this.issuer = issuer;
  112. }
  113. public String getIssuer()
  114. {
  115. return issuer;
  116. }
  117. public void setIssuerId(Long issuerId)
  118. {
  119. this.issuerId = issuerId;
  120. }
  121. public Long getIssuerId()
  122. {
  123. return issuerId;
  124. }
  125. public void setIssuerDept(String issuerDept)
  126. {
  127. this.issuerDept = issuerDept;
  128. }
  129. public String getIssuerDept()
  130. {
  131. return issuerDept;
  132. }
  133. public void setIssuerDeptId(Long issuerDeptId)
  134. {
  135. this.issuerDeptId = issuerDeptId;
  136. }
  137. public Long getIssuerDeptId()
  138. {
  139. return issuerDeptId;
  140. }
  141. public void setAcceptUser(String acceptUser)
  142. {
  143. this.acceptUser = acceptUser;
  144. }
  145. public String getAcceptUser()
  146. {
  147. return acceptUser;
  148. }
  149. public void setAcceptUserId(Long acceptUserId)
  150. {
  151. this.acceptUserId = acceptUserId;
  152. }
  153. public Long getAcceptUserId()
  154. {
  155. return acceptUserId;
  156. }
  157. public void setAcceptDept(String acceptDept)
  158. {
  159. this.acceptDept = acceptDept;
  160. }
  161. public String getAcceptDept()
  162. {
  163. return acceptDept;
  164. }
  165. public void setAcceptDeptId(Long acceptDeptId)
  166. {
  167. this.acceptDeptId = acceptDeptId;
  168. }
  169. public Long getAcceptDeptId()
  170. {
  171. return acceptDeptId;
  172. }
  173. public void setUrgeTime(Date urgeTime)
  174. {
  175. this.urgeTime = urgeTime;
  176. }
  177. public Date getUrgeTime()
  178. {
  179. return urgeTime;
  180. }
  181. @Override
  182. public String toString() {
  183. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  184. .append("zxUrgeId", getZxUrgeId())
  185. .append("scoreId", getScoreId())
  186. .append("urgeTitle", getUrgeTitle())
  187. .append("urgeType", getUrgeType())
  188. .append("urgeContent", getUrgeContent())
  189. .append("status", getStatus())
  190. .append("issuer", getIssuer())
  191. .append("issuerId", getIssuerId())
  192. .append("issuerDept", getIssuerDept())
  193. .append("issuerDeptId", getIssuerDeptId())
  194. .append("acceptUser", getAcceptUser())
  195. .append("acceptUserId", getAcceptUserId())
  196. .append("acceptDept", getAcceptDept())
  197. .append("acceptDeptId", getAcceptDeptId())
  198. .append("urgeTime", getUrgeTime())
  199. .append("createBy", getCreateBy())
  200. .append("createTime", getCreateTime())
  201. .append("updateBy", getUpdateBy())
  202. .append("updateTime", getUpdateTime())
  203. .append("remark", getRemark())
  204. .toString();
  205. }
  206. }