文档
测试

订阅列表-查询

POST
123.56.190.192:9001/classify/subscription

请求参数

参数名
类型
描述
必填
userId
String
被查看的用户id 可为null
必填
page
int
必填
size
int
必填

响应参数

参数名
类型
描述
必填
ResultInfo
必填
flag
必填
classifyInformations
List<ClassifyInformation>
圈子详情 详情看说明
必填

说明 / 示例

@Id private int id; /** * 圈子id */ private String classifyId; /** * 池子名称 */ private String classifyName; /** * 关注数 */ private int attentionNumber; /** * 池子头像地址 */ private String classifyHeaderAddress; /** * 圈子背景图片地址 */ private String classifyBackgroundPictureUrl; /** * 是否关注 */ @Transient private int yesOrNotAttention; /** * 池子介绍 */ private String Introduce; /** * 是否置顶 */ @Transient private Integer whetherStick; /** * 最新动态总数 */ @Transient private Long latestActionNumber; /** * 池子创始人 */ private String originatorId; /** * 池子分类id */ private Integer categoryId; /** * 池子分类id */ @Transient private String categoryName; /** * 位置 */ private String location; /** * 经度 */ private double longitude; /** * 维度 */ private double latitude; /** * 颜色值 */ private String colorValue; /** * 大图片地址 */ private String bigurl; /** * 小图片地址 */ private String smllurl; /** * 创建时间 */ private long time; /** * 签到天数 */ @Transient private Integer thisWeekSignNumber; /** * 类别 0 关注该圈子 1 圈主 2 管理员 */ @Transient private Integer category; /** * pool公告 */ private String poolNotice; /** * 官方公告 */ private String jumpinNotice;