| | |
| | | @Data |
| | | @ApiModel(value = "TransferDto", description = "转账接口参数类") |
| | | public class TransferDto { |
| | | |
| | | // 第一次{金额 amount: val, 手续费fee: 0, txHash: '', 1-买入type: 1, 钱包buyType: 2} |
| | | // 成功{type: 1, txHash: result.transactionHash, id: res.data, flag: 'success', buyType: 2} |
| | | // 失败{type: 1, id: res.data, flag: 'fail', buyType: 2} |
| | | @ApiModelProperty(value = "1-买入 2-卖出", example = "1") |
| | | private Integer type; |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "1-余额 2-钱包") |
| | | private Integer buyType; |
| | | |
| | | @ApiModelProperty(value = "节点编码") |
| | | private String nodeCode; |
| | | |
| | | @ApiModelProperty(hidden = true) |
| | | private Long memberId; |
| | | } |