Helius
2020-11-24 54ff29f2ad04037924fcdef681f672cb45fdea8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.common.system.dto;
 
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;
    @ApiModelProperty(value = "资金交易密码", example = "1qazwsx")
    private String password;
    @ApiModelProperty(value = "钱包名称", example = "qwer")
    private String walletName;
    @ApiModelProperty(value = "终端ID", example = "21220sdsf")
    private String terminalId;
 
}