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;
|
|
}
|