liujie
2023-10-26 e030255c23c7ba3e2cbad1036a810d6d72fa864f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.dsh.other.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @date 2023/6/24 17:34
 */
@Data
@ApiModel
public class StoreOfCourseVo {
 
    @ApiModelProperty("课程id")
    private Integer courseId;
 
    @ApiModelProperty("课程名称+门店名称")
    private String name;
 
    @ApiModelProperty("封面图")
    private String coverDrawing;
 
    @ApiModelProperty("上课时间")
    private String classStartTime;
 
    @ApiModelProperty("已报名人数")
    private Integer applicantsNumber;
 
    @ApiModelProperty("包含课时数")
    private Integer classHours;
 
    @ApiModelProperty("价格")
    private Double originalPrice;
}