文档
测试

充电动画分类查询列表

POST
http://192.168.8.5:10001/charge/list

请求头

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

请求参数

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

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
message
string
示例:成功
必填
data
array
数据列表
必填
id
int
示例:3
必填
cartoonName
string
示例:太空人
必填
thumbPath
string
示例:chargeCartoon/chargeCartoonCover/3-1640832474443.jpg
必填
cartoonPath
string
示例:chargeCartoon/chargeCartoonCartoon/3-1640832475034.mp4
必填
cartoonState
int
示例:1
必填
createUserId
int
示例:2
必填
createTime
string
示例:2021-06-01T05:19:39.000+00:00
必填
updateTime
string
示例:2022-08-08T07:01:21.000+00:00
必填
updateUserId
int
示例:2
必填
cartoonDesc
string
示例:暂无
必填
sort
int
示例:-2
必填
locked
int
示例:0
必填
people
int
示例:625
必填
volt
int
示例:0
必填
cartoonType
int
示例:1
必填
audioPath
object
示例:null
必填
weight
int
示例:0
必填
weightAuto
int
示例:0
必填
weightSum
int
示例:0
必填
weightOffset
int
示例:10
必填
activitiesUrl
object
示例:null
必填
playCount
int
示例:24880
必填
setCount
int
示例:59716
必填

说明 / 示例

/** * 主键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;