无关风月
2024-07-11 eb6b6dbb35a9f029e0b7d269773685c19fd40976
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.dsh.account.model.vo.classDetails;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class CourseVenue {
 
    @ApiModelProperty(value = "门店Id")
    private Integer storeId;
 
    @ApiModelProperty(value = "门店名称")
    private String areaName;
 
    @ApiModelProperty(value = "门店距离当前位置的 距离")
    private String siteDistance;
 
    @ApiModelProperty(value = "课包列表")
    private List<CouList> courses;
 
    @Data
    public static class CouList {
 
        @ApiModelProperty(value = "课包ID")
        Long courseID;
 
        @ApiModelProperty(value = "课包名称")
        String courseName;
 
        @ApiModelProperty(value = "时间段")
        String timeStr;
 
        @ApiModelProperty(value = "详细说明")
        String detail;
 
        @ApiModelProperty(value = "预约状态:1=未预约,2=已预约")
        Integer status;
        @ApiModelProperty(value = "总学时数")
        Integer allNum;
        @ApiModelProperty(value = "已扣学时数")
        Integer useNum;
        @ApiModelProperty(value = "剩余学时数")
        Integer lastNum;
 
    }
 
}