文档
测试

闹钟动画列表

POST
http://192.168.8.11:10001/charge/iosList

请求头

参数名
类型
描述
必填
token
string
示例:Ring2023012214040038N7uu
必填

请求参数

参数名
类型
描述
必填
pageNum
string
示例:1
必填
pageSize
string
示例:20
必填
classId
string
示例:72
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
message
string
示例:成功
必填
data
array
数据列表
必填
classId
int
示例:79
必填
name
string
示例:游戏
必填
type
string
示例:2
必填
status
string
示例:1
必填
sort
int
示例:4
必填
systemVersion
string
示例:1
必填
source
int
示例:69
必填
form
int
示例:2
必填

说明 / 示例

/** * 主键id */ @TableId(type = IdType.AUTO) private Integer id; /** * 动画名称 */ private String cartoonName; /** * 缩略图地址 */ private String thumbPath; /** * 动画地址 */ private String cartoonPath; /** * 状态[0:编辑 1:发布 2:下架] */ private Integer cartoonState; /** * 创建人id */ private Integer createUserId; /** * 创建时间 */ private Date createTime; /** * 更新时间 */ private Date updateTime; /** * 修改人id */ private Integer updateUserId; /** * 动画描述 */ private String cartoonDesc; /** * 排序 */ private Integer sort; /** * 是否锁定[0:免费不看广告 1:vip] */ private Integer locked; /** * 使用人数 */ private Integer people; /** * 伏特 */ private Integer volt; /** * 1:视频地址 2:joson动画 */ private Integer cartoonType; /** * json动画音频 */ private String audioPath; /** * */ private Integer weight; /** * */ private Integer weightAuto; /** * */ private Integer weightSum; /** * */ private Integer weightOffset; /** * 活动url */ private String activitiesUrl; /** * 播放量 */ private Integer playCount; /** * 设置数量 */ private Integer setCount;