package com.dsh.course.model; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @author zhibing.pu * @date 2023/7/5 20:29 */ @Data @ApiModel public class PaymentCourseVo { @ApiModelProperty(value = "课程id", dataType = "int", required = true) private Integer id; @ApiModelProperty(value = "支付方式(1=微信,2=支付宝,3=玩湃币)", dataType = "int", required = true) private Integer payType; @ApiModelProperty(value = "支付金额(不使用优惠券的价格)", dataType = "double", required = true) private Double price; @ApiModelProperty(value = "课时id", dataType = "int", required = true) private Integer coursePackagePaymentConfigId; @ApiModelProperty(value = "学员id,多个分号分隔", dataType = "string", required = true) private String studentIds; @ApiModelProperty(value = "优惠券id", dataType = "long", required = false) private Long couponId; @ApiModelProperty(value = "订单id", dataType = "int", required = false) private Long orderId; }