package com.stylefeng.guns.modular.system.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel
|
public class CourseList {
|
@ApiModelProperty(value = "课程id")
|
private Integer id;
|
@ApiModelProperty(value = "课程名称")
|
private String courseName;
|
@ApiModelProperty(value = "类型部位")
|
private String typeName;
|
@ApiModelProperty(value = "难度(1、2、3、。。。。)")
|
private Integer difficulty;
|
@ApiModelProperty(value = "动作总数")
|
private Integer count;
|
@ApiModelProperty(value = "排序")
|
private Integer sort;
|
@ApiModelProperty(value = "状态1=上架 2=下架 3=删除")
|
private Integer state;
|
@ApiModelProperty(value = "视频时长")
|
private String allTime;
|
}
|