NoticeDto.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.java110.dto.notice;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * @ClassName FloorDto
  7. * @Description 通知数据层封装
  8. * @Author wuxw
  9. * @Date 2019/4/24 8:52
  10. * @Version 1.0
  11. * add by wuxw 2019/4/24
  12. **/
  13. public class NoticeDto extends PageDto implements Serializable {
  14. private String noticeTypeCd;
  15. private String context;
  16. private String startTime;
  17. private String endTime;
  18. private String communityId;
  19. private String title;
  20. private String userId;
  21. private String noticeId;
  22. private Date createTime;
  23. private String noticeTypeCdName;
  24. private String statusCd = "0";
  25. public String getNoticeTypeCd() {
  26. return noticeTypeCd;
  27. }
  28. public void setNoticeTypeCd(String noticeTypeCd) {
  29. this.noticeTypeCd = noticeTypeCd;
  30. }
  31. public String getContext() {
  32. return context;
  33. }
  34. public void setContext(String context) {
  35. this.context = context;
  36. }
  37. public String getStartTime() {
  38. return startTime;
  39. }
  40. public void setStartTime(String startTime) {
  41. this.startTime = startTime;
  42. }
  43. public String getCommunityId() {
  44. return communityId;
  45. }
  46. public void setCommunityId(String communityId) {
  47. this.communityId = communityId;
  48. }
  49. public String getTitle() {
  50. return title;
  51. }
  52. public void setTitle(String title) {
  53. this.title = title;
  54. }
  55. public String getUserId() {
  56. return userId;
  57. }
  58. public void setUserId(String userId) {
  59. this.userId = userId;
  60. }
  61. public String getNoticeId() {
  62. return noticeId;
  63. }
  64. public void setNoticeId(String noticeId) {
  65. this.noticeId = noticeId;
  66. }
  67. public Date getCreateTime() {
  68. return createTime;
  69. }
  70. public void setCreateTime(Date createTime) {
  71. this.createTime = createTime;
  72. }
  73. public String getStatusCd() {
  74. return statusCd;
  75. }
  76. public void setStatusCd(String statusCd) {
  77. this.statusCd = statusCd;
  78. }
  79. public String getEndTime() {
  80. return endTime;
  81. }
  82. public void setEndTime(String endTime) {
  83. this.endTime = endTime;
  84. }
  85. public String getNoticeTypeCdName() {
  86. return noticeTypeCdName;
  87. }
  88. public void setNoticeTypeCdName(String noticeTypeCdName) {
  89. this.noticeTypeCdName = noticeTypeCdName;
  90. }
  91. }