无关风月
2024-11-14 350067a73fc9ed0a35582b900533c2708d5b1212
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.stylefeng.guns.modular.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel
public class CourseVO {
 
    @ApiModelProperty(value = "类型名称")
    private String typeName;
    @ApiModelProperty(value = "包含课程数")
    private Integer count;
 
}