RechargeDTO.java 695 字节
Newer Older
1
package com.youlai.mall.ums.dto;
H
hxrui 已提交
2

3
import io.swagger.v3.oas.annotations.media.Schema;
H
hxrui 已提交
4 5
import lombok.Data;

H
hxrui 已提交
6 7
import java.math.BigDecimal;

8
@Schema 
H
hxrui 已提交
9 10 11
@Data
public class RechargeDTO {

12
    @Schema(description = "充值金额")
H
hxrui 已提交
13
    private String price;
H
hxrui 已提交
14

15
    @Schema(description = "充值说明")
H
hxrui 已提交
16 17
    private String name;

18
    @Schema(description = "用来通知指定地址")
H
hxrui 已提交
19 20
    private String callbackurl;

21
    @Schema(description = "跳转地址")
H
hxrui 已提交
22 23
    private String reurl;

24
    @Schema(description = "用户存放您的用户ID")
H
hxrui 已提交
25 26
    private String thirduid;

27
    @Schema(description = "备注")
H
hxrui 已提交
28 29
    private String remarks;

30
    @Schema(description = "其他信息")
H
hxrui 已提交
31 32 33 34
    private String other;


}