KKSU
2024-04-17 15abe034d8d3e2fa86b2f3bf1bdbdb718a9a0909
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
package com.xcong.excoin.modules.yunding.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "InsureChangeUsdtDto", description = "确认入参类")
public class InsureChangeUsdtDto {
 
    @NotNull
    @ApiModelProperty(value = "XCH数量", example = "2")
    private BigDecimal xchNum;
 
    /**
     * 资金交易密码
     */
    @NotNull
    @ApiModelProperty(value = "交易密码", example = "2")
    private String tradePassword;
 
 
}