Helius
2022-05-28 da4df01891679d68ef999413005ec452d55f088e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2022-05-28
 **/
@Data
@ApiModel(value ="TransferDto", description = "转账接口参数接收类")
public class TransferDto {
 
    @ApiModelProperty(value = "金额", example = "1")
    private BigDecimal amount;
 
    @ApiModelProperty(value = "交易hash", example = "0x123")
    private String hash;
 
    @ApiModelProperty(value = "地址", example = "0x3221")
    private String address;
 
    @ApiModelProperty(value = "链", example = "BSC")
    private String chainType;
}