package com.dsh.course.model.dto;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 折扣类型json字符串封装
|
*/
|
|
@Data
|
public class DiscountJsonDto {
|
/**
|
* type为1,为会员折扣现金支付金额;type为3,为限时折扣现金支付金额
|
*/
|
@ApiModelProperty(value = "type为1,为会员折扣现金支付金额 type为3,为限时折扣现金支付金额")
|
private double discountMember;
|
/**
|
* 会员续课现金支付金额
|
*/
|
@ApiModelProperty(value = "会员续课现金支付金额")
|
private double continuingMember;
|
/**
|
* 用户续课现金支付金额
|
*/
|
@ApiModelProperty(value = "用户续课现金支付金额")
|
private double continuingUser;
|
/**
|
* 有效期开始时间(2023-01-01)
|
*/
|
@ApiModelProperty(value = "有效期开始时间")
|
private String lifespanStart;
|
/**
|
* 有效期结束时间
|
*/
|
@ApiModelProperty(value = "有效期结束时间")
|
private String lifespanEnd;
|
/**
|
* 赠送课时数
|
*/
|
@ApiModelProperty(value = "赠送课时数")
|
private Integer classHours;
|
/**
|
* 周数 (1;2;5)
|
*/
|
@ApiModelProperty(value = "周数")
|
private String weekNum;
|
/**
|
* 折扣时间 开始时间(08:00)
|
*/
|
@ApiModelProperty(value = "折扣时间 开始时间")
|
private String timeFrameStart;
|
/**
|
* 折扣时间 结束时间
|
*/
|
@ApiModelProperty(value = "折扣时间 结束时间")
|
private String timeFrameEnd;
|
|
}
|