SysNoticeUserEntity.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. /**
  4. * 通知和用户关系表实体
  5. * 表名 sys_notice_user
  6. *
  7. * @author Scott
  8. * @email
  9. * @date 2017-11-16 22:00:57
  10. */
  11. public class SysNoticeUserEntity implements Serializable {
  12. private static final long serialVersionUID = 1L;
  13. /**
  14. *
  15. */
  16. private String id;
  17. /**
  18. * 用户id
  19. */
  20. private Long userId;
  21. /**
  22. * 通知内容
  23. */
  24. private String noticeId;
  25. /**
  26. * 0已读 1未读
  27. */
  28. private String status;
  29. /**
  30. * 备用字段
  31. */
  32. private String remark;
  33. //翻译用字段
  34. private String userName;
  35. private String noticeContent;
  36. public String getUserName() {
  37. return userName;
  38. }
  39. public void setUserName(String userName) {
  40. this.userName = userName;
  41. }
  42. public String getNoticeContent() {
  43. return noticeContent;
  44. }
  45. public void setNoticeContent(String noticeContent) {
  46. this.noticeContent = noticeContent;
  47. }
  48. /**
  49. * 设置:
  50. */
  51. public void setId(String id) {
  52. this.id = id;
  53. }
  54. /**
  55. * 获取:
  56. */
  57. public String getId() {
  58. return id;
  59. }
  60. /**
  61. * 设置:用户id
  62. */
  63. public void setUserId(Long userId) {
  64. this.userId = userId;
  65. }
  66. /**
  67. * 获取:用户id
  68. */
  69. public Long getUserId() {
  70. return userId;
  71. }
  72. /**
  73. * 设置:
  74. */
  75. public void setNoticeId(String noticeId) {
  76. this.noticeId = noticeId;
  77. }
  78. /**
  79. * 获取:
  80. */
  81. public String getNoticeId() {
  82. return noticeId;
  83. }
  84. /**
  85. * 设置:0已读 1未读
  86. */
  87. public void setStatus(String status) {
  88. this.status = status;
  89. }
  90. /**
  91. * 获取:0已读 1未读
  92. */
  93. public String getStatus() {
  94. return status;
  95. }
  96. /**
  97. * 设置:备用字段
  98. */
  99. public void setRemark(String remark) {
  100. this.remark = remark;
  101. }
  102. /**
  103. * 获取:备用字段
  104. */
  105. public String getRemark() {
  106. return remark;
  107. }
  108. }