1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package com.cooleshow.chatmodule.bean;
- import java.util.List;
- /**
- * 创建日期:2022/6/11 18:20
- *
- * @author Ryan
- * 类说明:
- */
- public class GroupNoticeBean {
- public int limit;
- public int nextPage;
- public int offset;
- public int pageNo;
- public int prePage;
- public int total;
- public int totalPage;
- public List<RowsBean> rows;
- public static class RowsBean {
- /**
- * "avatar": "",
- * "content": "",
- * "createTime": "",
- * "delFlag": true,
- * "groupId": "",
- * "id": 0,
- * "operatorId": 0,
- * "sentToNewMemberFlag": true,
- * "title": "",
- * "topFlag": true,
- * "updateTime": "",
- * "username": ""
- */
- public String avatar;
- public String content;
- public String createTime;
- public boolean delFlag;
- public String groupId;
- public String id;
- public long operatorId;
- public boolean sentToNewMemberFlag;
- public String title;
- public boolean topFlag;
- public String updateTime;
- public String username;
- @Override
- public String toString() {
- return "RowsBean{" +
- "avatar='" + avatar + '\'' +
- ", content='" + content + '\'' +
- ", createTime='" + createTime + '\'' +
- ", delFlag=" + delFlag +
- ", groupId='" + groupId + '\'' +
- ", id='" + id + '\'' +
- ", operatorId=" + operatorId +
- ", sentToNewMemberFlag=" + sentToNewMemberFlag +
- ", title='" + title + '\'' +
- ", topFlag=" + topFlag +
- ", updateTime='" + updateTime + '\'' +
- ", username='" + username + '\'' +
- '}';
- }
- }
- @Override
- public String toString() {
- return "GroupNoticeBean{" +
- "limit=" + limit +
- ", nextPage=" + nextPage +
- ", offset=" + offset +
- ", pageNo=" + pageNo +
- ", prePage=" + prePage +
- ", total=" + total +
- ", totalPage=" + totalPage +
- ", rows=" + rows.toString() +
- '}';
- }
- }
|