nickchange
2023-11-17 a9564eae9f0169ca39329b2f14a8f13d13358a0a
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
57
58
59
package com.dsh.course.model.vo.response;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ExchangeCoursePackageResponse {
 
    @ApiModelProperty(value = "课包id")
    private Integer coursePackageDiscountId;
 
    @ApiModelProperty(value = "课包封面图")
    private String coverDrawing;
 
    @ApiModelProperty(value = "课包介绍图")
    private String introduceDrawing;
 
    @ApiModelProperty(value = "课包名称")
    private String coursePackageName;
 
    @ApiModelProperty(value = "门店名称+地址")
    private String storeNameAddr;
 
    @ApiModelProperty(value = "门店距离 单位km")
    private double distance;
 
    @ApiModelProperty(value = "课时数")
    private Integer classHours;
 
    @ApiModelProperty(value = "赠送课时数")
    private Integer freeClassHours;
 
    @ApiModelProperty(value = "上课周数")
    private String weekTime;
 
    @ApiModelProperty(value = "上课时间")
    private String time;
 
    @ApiModelProperty(value = "原价")
    private Double costPrice;
 
    @ApiModelProperty(value = "折扣价/会员价")
    private Double discountPrice;
 
    @ApiModelProperty(value = "玩湃币")
    private Integer wanpaiGold;
    @ApiModelProperty("详情图片")
    private String detailDrawing;
 
    @ApiModelProperty("课程类型")
    private Integer type;
 
    @ApiModelProperty("假期时间")
    private String holiTime;
 
    private Integer payType;
 
}