1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cc.mrbird.febs.dapp.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author wzy
| * @date 2022-05-27
| **/
| @Data
| @ApiModel(value = "TransferDto", description = "转账接口参数类")
| public class TransferDto {
|
| @ApiModelProperty(value = "1-买入 2-卖出", example = "1")
| private Integer type;
|
| @ApiModelProperty(value = "交易hash", example = "123")
| private String txHash;
|
| @ApiModelProperty(value = "地址", example = "0x123")
| private String address;
| }
|
|