|
|
@@ -5,55 +5,41 @@ import lombok.Data;
|
|
|
|
|
|
@Data
|
|
|
public class TransactionItemExport {
|
|
|
- @ExcelProperty(value = "blockchain", index = 0)
|
|
|
- private String blockchain;
|
|
|
- @ExcelProperty(value = "createdTimestamp", index = 1)
|
|
|
- private Long createdTimestamp;
|
|
|
- @ExcelProperty(value = "direction", index = 2)
|
|
|
- private String direction;
|
|
|
- @ExcelProperty(value = "hasTokenTransfer", index = 3)
|
|
|
- private String hasTokenTransfer;
|
|
|
- @ExcelProperty(value = "id", index = 4)
|
|
|
+ @ExcelProperty(value = "请求id", index = 0)
|
|
|
+ private String requestId;
|
|
|
+ @ExcelProperty(value = "交易流水id", index = 1)
|
|
|
private String id;
|
|
|
- @ExcelProperty(value = "isInternal", index = 5)
|
|
|
- private String isInternal;
|
|
|
- @ExcelProperty(value = "minedInBlockHeight", index = 6)
|
|
|
- private String minedInBlockHeight;
|
|
|
- @ExcelProperty(value = "network", index = 7)
|
|
|
- private String network;
|
|
|
-
|
|
|
- @ExcelProperty(value = "recipientAddress", index = 8)
|
|
|
- private String recipientAddress;
|
|
|
- @ExcelProperty(value = "recipientAddressType", index = 9)
|
|
|
- private String recipientAddressType;
|
|
|
- @ExcelProperty(value = "recipientAmount", index = 10)
|
|
|
- private String recipientAmount;
|
|
|
- @ExcelProperty(value = "recipientAmountUnit", index = 11)
|
|
|
- private String recipientAmountUnit;
|
|
|
- @ExcelProperty(value = "recipientIsVaultAddress", index = 12)
|
|
|
- private String recipientIsVaultAddress;
|
|
|
- @ExcelProperty(value = "recipientLabel", index = 13)
|
|
|
- private String recipientLabel;
|
|
|
+ @ExcelProperty(value = "链上真实交易哈希值", index = 2)
|
|
|
+ private String transactionId;
|
|
|
+ @ExcelProperty(value = "交易状态", index = 3)
|
|
|
+ private String status;
|
|
|
+ @ExcelProperty(value = "创建时间", index = 4)
|
|
|
+ private Long createdTimestamp;
|
|
|
|
|
|
- @ExcelProperty(value = "senderAddress", index = 14)
|
|
|
+ @ExcelProperty(value = "转出钱包地址", index = 5)
|
|
|
private String senderAddress;
|
|
|
- @ExcelProperty(value = "senderAddressType", index = 15)
|
|
|
- private String senderAddressType;
|
|
|
- @ExcelProperty(value = "senderAmount", index = 16)
|
|
|
- private String senderAmount;
|
|
|
- @ExcelProperty(value = "senderAmountUnit", index = 17)
|
|
|
- private String senderAmountUnit;
|
|
|
- @ExcelProperty(value = "senderIsVaultAddress", index = 18)
|
|
|
+ @ExcelProperty(value = "转出钱包是否内部钱包", index = 6)
|
|
|
private String senderIsVaultAddress;
|
|
|
- @ExcelProperty(value = "senderLabel", index = 19)
|
|
|
- private String senderLabel;
|
|
|
+ @ExcelProperty(value = "转出钱包币种", index = 7)
|
|
|
+ private String senderAmountUnit;
|
|
|
+ @ExcelProperty(value = "转出货币金额", index = 8)
|
|
|
+ private String senderAmount;
|
|
|
|
|
|
- @ExcelProperty(value = "status", index = 20)
|
|
|
- private String status;
|
|
|
- @ExcelProperty(value = "amount", index = 21)
|
|
|
- private String amount;
|
|
|
- @ExcelProperty(value = "amountUnit", index = 22)
|
|
|
- private String amountUnit;
|
|
|
- @ExcelProperty(value = "transactionId", index = 23)
|
|
|
- private String transactionId;
|
|
|
+ @ExcelProperty(value = "收款钱包地址", index = 9)
|
|
|
+ private String recipientAddress;
|
|
|
+ @ExcelProperty(value = "收款钱包是否内部钱包", index = 10)
|
|
|
+ private String recipientIsVaultAddress;
|
|
|
+ @ExcelProperty(value = "收款钱包币种", index = 11)
|
|
|
+ private String recipientAmountUnit;
|
|
|
+ @ExcelProperty(value = "收到货币金额", index = 12)
|
|
|
+ private String recipientAmount;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "所属区块链", index = 13)
|
|
|
+ private String blockchain;
|
|
|
+ @ExcelProperty(value = "区块高度", index = 14)
|
|
|
+ private String minedInBlockHeight;
|
|
|
+ @ExcelProperty(value = "区块链手续费", index = 15)
|
|
|
+ private String feeAmount;
|
|
|
+ @ExcelProperty(value = "区块链手续费币种", index = 16)
|
|
|
+ private String feeAmountUnit;
|
|
|
}
|