xiaoyong931011
2022-10-24 2a354a0de703a9afdfcab88913dedc260b1da76a
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;
 
}