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; }