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 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() + '}'; } }