xiaoyong931011
2022-11-02 61c06554409b6db2afe99a91044736256428cdce
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;
 
}