|
|
@@ -5,37 +5,33 @@ import lombok.Data;
|
|
|
|
|
|
@Data
|
|
|
public class TransactionItemExport {
|
|
|
- @ExcelProperty(value = "请求id", index = 0)
|
|
|
- private String requestId;
|
|
|
- @ExcelProperty(value = "链上真实交易哈希值", index = 1)
|
|
|
- private String transactionId;
|
|
|
- @ExcelProperty(value = "交易状态", index = 2)
|
|
|
+ @ExcelProperty(value = "交易状态", index = 0)
|
|
|
private String status;
|
|
|
- @ExcelProperty(value = "创建时间", index = 3)
|
|
|
+ @ExcelProperty(value = "创建时间", index = 1)
|
|
|
private String createdTimestamp;
|
|
|
-
|
|
|
- @ExcelProperty(value = "转出钱包地址", index = 4)
|
|
|
+ @ExcelProperty(value = "转出钱包地址", index = 2)
|
|
|
private String senderAddress;
|
|
|
- @ExcelProperty(value = "转出钱包币种", index = 5)
|
|
|
+ @ExcelProperty(value = "付款钱包名称", index = 3)
|
|
|
+ private String senderLabel;
|
|
|
+ @ExcelProperty(value = "转出币种", index = 4)
|
|
|
private String senderAmountUnit;
|
|
|
- @ExcelProperty(value = "转出货币金额", index = 6)
|
|
|
+ @ExcelProperty(value = "转出金额", index = 5)
|
|
|
private String senderAmount;
|
|
|
- @ExcelProperty(value = "转出钱包名称", index = 7)
|
|
|
- private String senderLabel;
|
|
|
-
|
|
|
- @ExcelProperty(value = "收款钱包地址", index = 8)
|
|
|
+ @ExcelProperty(value = "收款钱包地址", index = 6)
|
|
|
private String recipientAddress;
|
|
|
- @ExcelProperty(value = "收款钱包币种", index = 9)
|
|
|
+ @ExcelProperty(value = "收款钱包名称", index = 7)
|
|
|
+ private String recipientLabel;
|
|
|
+ @ExcelProperty(value = "收款币种", index = 8)
|
|
|
private String recipientAmountUnit;
|
|
|
- @ExcelProperty(value = "收到货币金额", index = 10)
|
|
|
+ @ExcelProperty(value = "收到金额", index = 9)
|
|
|
private String recipientAmount;
|
|
|
- @ExcelProperty(value = "收款钱包名称", index = 11)
|
|
|
- private String recipientLabel;
|
|
|
-
|
|
|
- @ExcelProperty(value = "所属区块链", index = 12)
|
|
|
+ @ExcelProperty(value = "所属区块链", index = 10)
|
|
|
private String blockchain;
|
|
|
- @ExcelProperty(value = "区块链手续费", index = 13)
|
|
|
+ @ExcelProperty(value = "区块链手续费", index = 11)
|
|
|
private String feeAmount;
|
|
|
- @ExcelProperty(value = "区块链手续费币种", index = 14)
|
|
|
+ @ExcelProperty(value = "手续费币种", index = 12)
|
|
|
private String feeAmountUnit;
|
|
|
+ @ExcelProperty(value = "链上交易哈希", index = 13)
|
|
|
+ private String transactionId;
|
|
|
+
|
|
|
}
|