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 com.xcong.excoin.modules.blackchain.model;
|
| import lombok.Data;
|
| /**
| * 数据样例
| * EosResult(quantity=2.0000 EOS, memo=aa, from=okbtothemoon, to=biueeostoken, accountActionSeq=2)
| */
| @Data
| public class EosResult {
| /**
| * 转账数量
| */
| private String quantity;
|
| /**
| * 转账标记
| */
| private String memo;
| private String from;
| private String to;
|
| /**
| * 这笔转账对应于这个账户的序号
| */
| private Integer accountActionSeq;
|
| }
|
|