package com.dsh.account.model.vo.classDetails; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data public class ClasspaymentRequest { @ApiModelProperty(value = "课包id") private Integer lessonId; @ApiModelProperty(value = "学员id") private Integer stuId; @ApiModelProperty(value = "支付方式(1=微信 2=支付宝 3=玩湃币)") private Integer payType; @ApiModelProperty(value = "是否使用优惠券 1是 2否") private Integer useConpon; @ApiModelProperty(value = "优惠券Id") private Integer conponId; @ApiModelProperty(value = "课时id") private Integer courseConfigId; @ApiModelProperty(value = "支付金额") private BigDecimal payAmount; }