文档
测试

充电-充电精灵列表

POST
http://localhost:8060/v1.0/charge/spirit/list

请求参数

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

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
data
array
数据列表
必填
id
int
示例:20
必填
spiritName
string
示例:精灵1
必填
thumbPath
string
示例:https://hqf-charge.oss-cn-hangzhou.aliyuncs.com/charge/mp4/%E5%B0%81%E9%9D%A2%E5%9B%BE/android_14865367_121203498_ori.jpg?Expires=1632686573&OSSAccessKeyId=LTAI4G9XVwaxi9YAa1hbwsRj&Signature=sPlGvYpkVoZqyTT62qG%2BFK83%2FP8%3D
必填
spiritPath
string
示例:https://hqf-charge.oss-cn-hangzhou.aliyuncs.com/charge/mp4/blue_line_gallery_preview.mp4?Expires=1632686573&OSSAccessKeyId=LTAI4G9XVwaxi9YAa1hbwsRj&Signature=Q8dIUu3InotpDgJvcr6ukGPUHrY%3D
必填
spiritState
int
示例:1
必填
createUserId
int
示例:1
必填
createTime
string
示例:2021-06-01 05:19:39
必填
updateTime
string
示例:2021-06-01 05:19:39
必填
updateUserId
int
示例:1
必填
volt
int
示例:200
必填
message
string
示例:操作成功
必填

说明 / 示例

public class ChargeSpirit implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "主键id") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "动画名称") private String spiritName; @ApiModelProperty(value = "动画描述") private String spiritDesc; @ApiModelProperty(value = "缩略图地址") private String thumbPath; @ApiModelProperty(value = "动画地址") private String spiritPath; @ApiModelProperty(value = "状态[0:编辑 1:发布 2:下架]") private Integer spiritState; @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; @ApiModelProperty(value = "兑换需要福特") private Integer volt; }