xiaoyong931011
2023-02-09 e92b00089d8d57899df380135d79864dade09837
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;
 
}