nickchange
2023-10-10 ee9cb0da4a43bcf523ebb157678f64a2895fba1a
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
50
51
52
53
54
55
56
package com.dsh.other.model;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class StoreDetailsVo {
 
    @ApiModelProperty(value = "门店图片数组")
    private List<String> images;
 
    @ApiModelProperty(value = "门店id")
    private Integer storeId;
 
    @ApiModelProperty(value = "门店名称")
    private String storeName;
 
    @ApiModelProperty(value = "门店地址")
    private String storeAddress;
 
    @ApiModelProperty(value = "门店营业时间段")
    private String storeTime;
 
    @ApiModelProperty(value = "门店信息")
    private String storeInfo;
 
    @ApiModelProperty(value = "场地列表")
    private List<Site> venueList;
 
    @ApiModelProperty(value = "课程列表")
    private List<StoreOfCourseVo> courseVoList;
 
 
    @Data
    public static class Site{
 
        @ApiModelProperty(value = "场地id")
        private Integer siteId;
 
        @ApiModelProperty(value = "场地名称")
        private String siteName;
 
        @ApiModelProperty(value = "场地类型:足球场")
        private String siteType;
 
        @ApiModelProperty(value = "预约时间段")
        private String siteTime;
 
        @ApiModelProperty(value = "价格")
        private double price;
    }
 
}