TConfInfo.java 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. package com.ruoyi.project.plant.domain;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.ruoyi.framework.aspectj.lang.annotation.Excel;
  5. import com.ruoyi.framework.web.domain.BaseEntity;
  6. import org.apache.commons.lang3.builder.ToStringBuilder;
  7. import org.apache.commons.lang3.builder.ToStringStyle;
  8. /**
  9. * 会议预约信息对象 t_conf_info
  10. *
  11. * @author ssy
  12. * @date 2024-05-07
  13. */
  14. public class TConfInfo 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 roomId;
  22. /** 会议主题 */
  23. @Excel(name = "会议主题")
  24. private String subject;
  25. /** 召集人 */
  26. @Excel(name = "召集人")
  27. private String convenerId;
  28. /** 召集人姓名 */
  29. @Excel(name = "召集人姓名")
  30. private String convenerName;
  31. /** 会议室名称 */
  32. @Excel(name = "会议室名称")
  33. private String roomName;
  34. /** 参会人 */
  35. @Excel(name = "参会人")
  36. private String participantsList;
  37. /** 会议开始时间 */
  38. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
  39. @Excel(name = "会议开始时间", width = 30, dateFormat = "yyyy-MM-dd")
  40. private Date beginDatetime;
  41. /** 会议结束时间 */
  42. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
  43. @Excel(name = "会议结束时间", width = 30, dateFormat = "yyyy-MM-dd")
  44. private Date endDatetime;
  45. /** 颜色 */
  46. @Excel(name = "颜色")
  47. private String color;
  48. /** 全天显示 */
  49. @Excel(name = "全天显示")
  50. private String isAllday;
  51. /** 生成频率 */
  52. @Excel(name = "生成频率")
  53. private String genFrequency;
  54. /** 生成月 */
  55. @Excel(name = "生成月")
  56. private String genMonth;
  57. /** 生成日 */
  58. @Excel(name = "生成日")
  59. private String genDay;
  60. /** 生成日期 */
  61. @Excel(name = "生成日期")
  62. private String genDate;
  63. /** 生成时间 */
  64. @Excel(name = "生成时间")
  65. private String genDatetime;
  66. /** 删除 */
  67. private Long delFlag;
  68. /** 创建人 */
  69. @Excel(name = "创建人")
  70. private String createrCode;
  71. /** 创建时间 */
  72. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
  73. @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
  74. private Date createdate;
  75. /** 更新人 */
  76. @Excel(name = "更新人")
  77. private String updaterCode;
  78. /** 更新日期 */
  79. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
  80. @Excel(name = "更新日期", width = 30, dateFormat = "yyyy-MM-dd")
  81. private Date updatedate;
  82. /** 所属部门 */
  83. @Excel(name = "所属部门")
  84. private Long deptId;
  85. /** 备注 */
  86. @Excel(name = "备注")
  87. private String remarks;
  88. public void setId(Long id)
  89. {
  90. this.id = id;
  91. }
  92. public Long getId()
  93. {
  94. return id;
  95. }
  96. public void setRoomId(Long roomId)
  97. {
  98. this.roomId = roomId;
  99. }
  100. public Long getRoomId()
  101. {
  102. return roomId;
  103. }
  104. public void setSubject(String subject)
  105. {
  106. this.subject = subject;
  107. }
  108. public String getSubject()
  109. {
  110. return subject;
  111. }
  112. public void setConvenerId(String convenerId)
  113. {
  114. this.convenerId = convenerId;
  115. }
  116. public String getConvenerId()
  117. {
  118. return convenerId;
  119. }
  120. public void setConvenerName(String convenerName)
  121. {
  122. this.convenerName = convenerName;
  123. }
  124. public String getConvenerName()
  125. {
  126. return convenerName;
  127. }
  128. public void setRoomName(String roomName)
  129. {
  130. this.roomName = roomName;
  131. }
  132. public String getRoomName()
  133. {
  134. return roomName;
  135. }
  136. public void setParticipantsList(String participantsList)
  137. {
  138. this.participantsList = participantsList;
  139. }
  140. public String getParticipantsList()
  141. {
  142. return participantsList;
  143. }
  144. public void setBeginDatetime(Date beginDatetime)
  145. {
  146. this.beginDatetime = beginDatetime;
  147. }
  148. public Date getBeginDatetime()
  149. {
  150. return beginDatetime;
  151. }
  152. public void setEndDatetime(Date endDatetime)
  153. {
  154. this.endDatetime = endDatetime;
  155. }
  156. public Date getEndDatetime()
  157. {
  158. return endDatetime;
  159. }
  160. public void setColor(String color)
  161. {
  162. this.color = color;
  163. }
  164. public String getColor()
  165. {
  166. return color;
  167. }
  168. public void setIsAllday(String isAllday)
  169. {
  170. this.isAllday = isAllday;
  171. }
  172. public String getIsAllday()
  173. {
  174. return isAllday;
  175. }
  176. public void setGenFrequency(String genFrequency)
  177. {
  178. this.genFrequency = genFrequency;
  179. }
  180. public String getGenFrequency()
  181. {
  182. return genFrequency;
  183. }
  184. public void setGenMonth(String genMonth)
  185. {
  186. this.genMonth = genMonth;
  187. }
  188. public String getGenMonth()
  189. {
  190. return genMonth;
  191. }
  192. public void setGenDay(String genDay)
  193. {
  194. this.genDay = genDay;
  195. }
  196. public String getGenDay()
  197. {
  198. return genDay;
  199. }
  200. public void setGenDate(String genDate)
  201. {
  202. this.genDate = genDate;
  203. }
  204. public String getGenDate()
  205. {
  206. return genDate;
  207. }
  208. public void setGenDatetime(String genDatetime)
  209. {
  210. this.genDatetime = genDatetime;
  211. }
  212. public String getGenDatetime()
  213. {
  214. return genDatetime;
  215. }
  216. public void setDelFlag(Long delFlag)
  217. {
  218. this.delFlag = delFlag;
  219. }
  220. public Long getDelFlag()
  221. {
  222. return delFlag;
  223. }
  224. public void setCreaterCode(String createrCode)
  225. {
  226. this.createrCode = createrCode;
  227. }
  228. public String getCreaterCode()
  229. {
  230. return createrCode;
  231. }
  232. public void setCreatedate(Date createdate)
  233. {
  234. this.createdate = createdate;
  235. }
  236. public Date getCreatedate()
  237. {
  238. return createdate;
  239. }
  240. public void setUpdaterCode(String updaterCode)
  241. {
  242. this.updaterCode = updaterCode;
  243. }
  244. public String getUpdaterCode()
  245. {
  246. return updaterCode;
  247. }
  248. public void setUpdatedate(Date updatedate)
  249. {
  250. this.updatedate = updatedate;
  251. }
  252. public Date getUpdatedate()
  253. {
  254. return updatedate;
  255. }
  256. public void setDeptId(Long deptId)
  257. {
  258. this.deptId = deptId;
  259. }
  260. public Long getDeptId()
  261. {
  262. return deptId;
  263. }
  264. public void setRemarks(String remarks)
  265. {
  266. this.remarks = remarks;
  267. }
  268. public String getRemarks()
  269. {
  270. return remarks;
  271. }
  272. @Override
  273. public String toString() {
  274. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  275. .append("id", getId())
  276. .append("roomId", getRoomId())
  277. .append("subject", getSubject())
  278. .append("convenerId", getConvenerId())
  279. .append("convenerName", getConvenerName())
  280. .append("roomName", getRoomName())
  281. .append("participantsList", getParticipantsList())
  282. .append("beginDatetime", getBeginDatetime())
  283. .append("endDatetime", getEndDatetime())
  284. .append("color", getColor())
  285. .append("isAllday", getIsAllday())
  286. .append("genFrequency", getGenFrequency())
  287. .append("genMonth", getGenMonth())
  288. .append("genDay", getGenDay())
  289. .append("genDate", getGenDate())
  290. .append("genDatetime", getGenDatetime())
  291. .append("delFlag", getDelFlag())
  292. .append("createrCode", getCreaterCode())
  293. .append("createdate", getCreatedate())
  294. .append("updaterCode", getUpdaterCode())
  295. .append("updatedate", getUpdatedate())
  296. .append("deptId", getDeptId())
  297. .append("remarks", getRemarks())
  298. .toString();
  299. }
  300. }