KKSU
2024-07-02 7f7a1b01527843ffb178d015a044380acbde4fe2
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
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "BuyNodeDto", description = "连接参数接收类")
public class BuyNodeDto {
 
    @ApiModelProperty(value = "id", example = "1")
    private Long id;
 
    @ApiModelProperty(value = "金额", example = "1")
    private BigDecimal amount;
 
    @ApiModelProperty(value = "success/fail", example = "success")
    private String flag;
 
    @ApiModelProperty(value = "交易hash", example = "123")
    private String txHash;
 
}