lisy
2023-08-11 c321a119aa3dd4ff4bfa30b795b7f5386675f10c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dsh.account.model.vo.userBenefitDetail;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
 
@Data
public class RechargePayRequest {
 
 
    @ApiModelProperty(value = "支付方式 1微信 2支付宝")
    private Integer payType;
 
    @ApiModelProperty(value = "充值金额")
    private BigDecimal amount;
 
}