fix
Helius
2021-11-04 ede9a493166d6f91562bf5391a0e081e52ab560a
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.coin.parameter.dto;
 
import java.math.BigDecimal;
 
import javax.validation.constraints.NotNull;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "TransferOfBalanceFromAgentDto", description = "资金划转参数接收类")
public class TransferOfBalanceFromAgentDto {
 
    @NotNull(message = "划转金额不能为空")
    @ApiModelProperty(value = "划转金额", example = "100")
    private BigDecimal balance;
 
    @NotNull(message = "币种不能为空")
    @ApiModelProperty(value = "币种", example = "USDT")
    private String symbol;
    
    @NotNull(message = "账户类型不能为空")
    @ApiModelProperty(value = "转账类型1:转币币,2:转合约", example = "1")
    private Integer transfertype;
 
}