Message.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.cloudcross.ssp.advertiser.model;
  2. import java.util.Date;
  3. public class Message {
  4. //消息Id
  5. private Long id;
  6. //消息内容
  7. private String content;
  8. //账号Id 和t_account.id表相关
  9. private Long accountId;
  10. //发送时间
  11. private Date sendTime;
  12. //是否已读
  13. private Integer read;
  14. //类型(1-审核,2-提现,3-其他)
  15. private Integer type;
  16. public Integer getType() {
  17. return type;
  18. }
  19. public void setType(Integer type) {
  20. this.type = type;
  21. }
  22. public Long getId() {
  23. return id;
  24. }
  25. public void setId(Long id) {
  26. this.id = id;
  27. }
  28. public String getContent() {
  29. return content;
  30. }
  31. public void setContent(String content) {
  32. this.content = content;
  33. }
  34. public Long getAccountId() {
  35. return accountId;
  36. }
  37. public void setAccountId(Long accountId) {
  38. this.accountId = accountId;
  39. }
  40. public Date getSendTime() {
  41. return sendTime;
  42. }
  43. public void setSendTime(Date sendTime) {
  44. this.sendTime = sendTime;
  45. }
  46. public Integer getRead() {
  47. return read;
  48. }
  49. public void setRead(Integer read) {
  50. this.read = read;
  51. }
  52. }