文档
测试

pool-圈子

POST
123.56.190.192:9001/classify/information

请求头

参数名
类型
描述
必填
token
必填

请求参数

参数名
类型
描述
必填
categoryId
int
分类id
必填
page
int
页码
必填

响应参数

参数名
类型
描述
必填
ResultInfo
必填
flag
boolean
正常为true,发生异常返回false
必填
code
int
200正常 5001异常
必填
NewestPool
newestPool
返回数据
必填
historyList
List<PoolHistory>
看过
必填
id
必填
poolId
String
圈子id
必填
time
long
时间
必填
userId
String
用户id
必填
poolName
String
圈子名称
必填
colorValue
int
池子颜色值
必填
categoryId
int
圈子分类id
必填
headUrl
String
圈子头像地址
必填
backgroundPictureUrl
String
圈子背景地址
必填
number
long
关注总数
必填
PoolBanner
poolBanner
顶部广告
必填
poolId
String
圈子id
必填
url
String
banner图片的地址
必填
informationList
List<ClassifyInformation>
热门 大bigurl 小smllurl
必填
poolList
List<ClassifyInformation>
推荐
必填
classifyInformation
ClassifyInformation
圈子信息实体
必填
message
String
响应信息描述
必填

说明 / 示例

@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 Integer circleLevel; /** * 最新动态总数 */ @Transient private Long latestActionNumber; /** * 池子创始人 */ private String originatorId; /** * 池子分类id */ private int categoryId; /** * 位置 */ private String location; /** * 经度 */ private double longitude; /** * 维度 */ private double latitude; /** * 颜色值 */ private String colorValue; /** * 大图片地址 */ private String bigurl; /** * 小图片地址 */ private String smllurl; /** * 创建时间 */ private long time; /** * 签到天数 */ @Transient private int thisWeekSignNumber;