PushModel.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package cn.gygxzc.envir.entity;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. /**
  5. * Created by niantuo on 2018/12/17.
  6. * 消息推送的模型
  7. * @see PushModel
  8. * type 为100 表示群发系统消息。content 应该是富文本。toUserIds 可为null或者是空
  9. */
  10. public class PushModel {
  11. public static final int TYPE_SYS=100;//群发的系统消息
  12. private String content;
  13. private int type;
  14. private String contentType;
  15. private String urls;
  16. private String title;
  17. private String remark;
  18. private List<Long> toUserIds = new ArrayList<>();
  19. public String getContent() {
  20. return content;
  21. }
  22. public void setContent(String content) {
  23. this.content = content;
  24. }
  25. public int getType() {
  26. return type;
  27. }
  28. public void setType(int type) {
  29. this.type = type;
  30. }
  31. public String getContentType() {
  32. return contentType;
  33. }
  34. public void setContentType(String contentType) {
  35. this.contentType = contentType;
  36. }
  37. public String getUrls() {
  38. return urls;
  39. }
  40. public void setUrls(String urls) {
  41. this.urls = urls;
  42. }
  43. public String getTitle() {
  44. return title;
  45. }
  46. public void setTitle(String title) {
  47. this.title = title;
  48. }
  49. public String getRemark() {
  50. return remark;
  51. }
  52. public void setRemark(String remark) {
  53. this.remark = remark;
  54. }
  55. public List<Long> getToUserIds() {
  56. return toUserIds;
  57. }
  58. public void setToUserIds(List<Long> toUserIds) {
  59. this.toUserIds = toUserIds;
  60. }
  61. /**
  62. * 这个先随便写点吧,
  63. * @return
  64. */
  65. @Override
  66. public String toString() {
  67. return String.format("type: %s,content:%s",type,content);
  68. }
  69. }