xiaoyong931011
2020-11-30 78d39c4e43c80ea16cc96dc73d60c8880ac5020d
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
package com.xcong.excoin.common.system.dto;
 
import javax.validation.constraints.NotNull;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "OutCenterRegisterDto", description = "注册接口参数类")
public class OutCenterRegisterDto {
    
    @ApiModelProperty(value = "推荐人Uid", example = "rxadr3")
    private String refererId;
    
    @NotNull(message = "资金交易密码不能为空")
    @ApiModelProperty(value = "资金交易密码", example = "1qazwsx")
    private String password;
    
    
    @ApiModelProperty(value = "钱包名称", example = "qwer")
    private String walletName;
    
    @ApiModelProperty(value = "终端ID", example = "21220sdsf")
    private String terminalId;
 
}