文档
测试

充电-充电动画

POST
http://47.108.179.208:8060/v1.0/charge/cartoon/list

请求参数

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

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
data
array
数据列表
必填
id
int
示例:3
必填
cartoonName
string
示例:动画3
必填
thumbPath
string
示例:https://hqf-charge.oss-cn-hangzhou.aliyuncs.com/charge/mp4/%E5%B0%81%E9%9D%A2%E5%9B%BE/android_15335298_193825776_ori.jpg?Expires=1632618190&OSSAccessKeyId=LTAI4G9XVwaxi9YAa1hbwsRj&Signature=QsE%2B7qLbyl3XGlb58V2Onh3i4yM%3D
必填
cartoonPath
string
示例:https://hqf-charge.oss-cn-hangzhou.aliyuncs.com/charge/mp4/Charger_009_gallery_preview.mp4?Expires=1632618190&OSSAccessKeyId=LTAI4G9XVwaxi9YAa1hbwsRj&Signature=sqwpH4%2FldO3Ojjie4Je5xv%2FimCk%3D
必填
cartoonState
int
示例:1
必填
createUserId
int
示例:2
必填
createTime
string
示例:2021-06-01 05:19:39
必填
updateTime
string
示例:2021-06-01 05:19:39
必填
updateUserId
int
示例:2
必填
message
string
示例:操作成功
必填

说明 / 示例

public class ChargeCartoon implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "主键id") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "动画名称") private String cartoonName; @ApiModelProperty(value = "动画描述") private String cartoonDesc; @ApiModelProperty(value = "缩略图地址") private String thumbPath; @ApiModelProperty(value = "动画地址") private String cartoonPath; @ApiModelProperty(value = "状态[0:编辑 1:发布 2:下架]") private Integer cartoonState; @ApiModelProperty(value = "创建人id") private Integer createUserId; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "创建时间") @TableField(fill = FieldFill.INSERT) private Date createTime; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "更新时间") @TableField(fill = FieldFill.INSERT_UPDATE) private Date updateTime; @ApiModelProperty(value = "修改人id") private Integer updateUserId; }