|
|
@ -604,6 +604,7 @@ public class ExcelHeaderTranslator { |
|
|
headers.put("marketName", "所属地区"); |
|
|
headers.put("marketName", "所属地区"); |
|
|
headers.put("walletName", "钱包名称"); |
|
|
headers.put("walletName", "钱包名称"); |
|
|
headers.put("typeText", "交易类型"); |
|
|
headers.put("typeText", "交易类型"); |
|
|
|
|
|
headers.put("transactionCurrency", "交易币种"); |
|
|
headers.put("amount", "交易金额"); |
|
|
headers.put("amount", "交易金额"); |
|
|
headers.put("orderCode", "订单号"); |
|
|
headers.put("orderCode", "订单号"); |
|
|
headers.put("description", "交易说明"); |
|
|
headers.put("description", "交易说明"); |
|
|
@ -623,8 +624,9 @@ public class ExcelHeaderTranslator { |
|
|
*/ |
|
|
*/ |
|
|
public List<String> getUserWalletColumnOrder() { |
|
|
public List<String> getUserWalletColumnOrder() { |
|
|
return Arrays.asList( |
|
|
return Arrays.asList( |
|
|
"jwcode", "userName", "marketName", "walletName", "typeText", "amount", |
|
|
|
|
|
"orderCode", "description", "statusText", "createTime" |
|
|
|
|
|
|
|
|
"jwcode", "userName", "marketName", "walletName", "typeText", |
|
|
|
|
|
"transactionCurrency", "amount", "orderCode", "description", |
|
|
|
|
|
"statusText", "createTime" |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|