puzhibing
2023-07-10 f95325fd2635a9af08c0acac70e70379978d128a
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
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 Long courseConfigId;
 
    @ApiModelProperty(value = "支付金额")
    private BigDecimal payAmount;
 
}