package com.ruoyi.study.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "学习类型列表VO")
|
public class StudyListVO {
|
|
@ApiModelProperty(value = "总周目 第一条数据对应听 第二条数据对应说以此类推")
|
private Integer weeks;
|
@ApiModelProperty(value = "已开始人数 第一条数据对应听 第二条数据对应说以此类推")
|
private Integer count;
|
|
public StudyListVO() {
|
}
|
|
public StudyListVO(Integer weeks, Integer count) {
|
this.weeks = weeks;
|
this.count = count;
|
}
|
}
|