lisy
2023-06-14 dce6ffdc52bbba0c28d761fcd1c5659840f0bba9
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
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 = "门店名称")
    private String areaName;
 
    @ApiModelProperty(value = "门店距离当前位置的 距离")
    private String siteDistance;
 
    @ApiModelProperty(value = "课包列表")
    private List<CouList> courses;
 
    @Data
    static class CouList{
 
        @ApiModelProperty(value = "课包ID")
        Integer courseID;
 
        @ApiModelProperty(value = "课包名称")
        String courseName;
 
        @ApiModelProperty(value = "时间段")
        String timeStr;
 
        @ApiModelProperty(value = "详细说明")
        String detail;
 
    }
 
}