xiaoyong931011
2022-10-21 e7ca8ba2b3c3b446e39d4c3a3ea5e238adb2fc7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cc.mrbird.febs.dapp.dto;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiAddAddressDto", description = "新增地址")
public class ApiAddAddressDto {
 
    @ApiModelProperty(value = "Trc20")
    private String type;
 
    @ApiModelProperty(value = "地址")
    private String address;
 
    @ApiModelProperty(value = "资金密码")
    private String transferCode;
 
}