GroupNoticeBean.java 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package com.cooleshow.chatmodule.bean;
  2. import java.util.List;
  3. /**
  4. * 创建日期:2022/6/11 18:20
  5. *
  6. * @author Ryan
  7. * 类说明:
  8. */
  9. public class GroupNoticeBean {
  10. public int limit;
  11. public int nextPage;
  12. public int offset;
  13. public int pageNo;
  14. public int prePage;
  15. public int total;
  16. public int totalPage;
  17. public List<RowsBean> rows;
  18. public static class RowsBean {
  19. /**
  20. * "avatar": "",
  21. * "content": "",
  22. * "createTime": "",
  23. * "delFlag": true,
  24. * "groupId": "",
  25. * "id": 0,
  26. * "operatorId": 0,
  27. * "sentToNewMemberFlag": true,
  28. * "title": "",
  29. * "topFlag": true,
  30. * "updateTime": "",
  31. * "username": ""
  32. */
  33. public String avatar;
  34. public String content;
  35. public String createTime;
  36. public boolean delFlag;
  37. public String groupId;
  38. public String id;
  39. public long operatorId;
  40. public boolean sentToNewMemberFlag;
  41. public String title;
  42. public boolean topFlag;
  43. public String updateTime;
  44. public String username;
  45. @Override
  46. public String toString() {
  47. return "RowsBean{" +
  48. "avatar='" + avatar + '\'' +
  49. ", content='" + content + '\'' +
  50. ", createTime='" + createTime + '\'' +
  51. ", delFlag=" + delFlag +
  52. ", groupId='" + groupId + '\'' +
  53. ", id='" + id + '\'' +
  54. ", operatorId=" + operatorId +
  55. ", sentToNewMemberFlag=" + sentToNewMemberFlag +
  56. ", title='" + title + '\'' +
  57. ", topFlag=" + topFlag +
  58. ", updateTime='" + updateTime + '\'' +
  59. ", username='" + username + '\'' +
  60. '}';
  61. }
  62. }
  63. @Override
  64. public String toString() {
  65. return "GroupNoticeBean{" +
  66. "limit=" + limit +
  67. ", nextPage=" + nextPage +
  68. ", offset=" + offset +
  69. ", pageNo=" + pageNo +
  70. ", prePage=" + prePage +
  71. ", total=" + total +
  72. ", totalPage=" + totalPage +
  73. ", rows=" + rows.toString() +
  74. '}';
  75. }
  76. }