xiaoyong931011
2022-10-22 d5fe69a4fc1cecd33366ce270f9a543cd154766f
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;
 
}