|
|
@ -78,6 +78,11 @@ public class ExcelHeaderTranslator { |
|
|
headers.put("permanentGold", "永久金币"); |
|
|
headers.put("permanentGold", "永久金币"); |
|
|
headers.put("freeGold", "免费金币"); |
|
|
headers.put("freeGold", "免费金币"); |
|
|
headers.put("taskGold", "任务金币"); |
|
|
headers.put("taskGold", "任务金币"); |
|
|
|
|
|
headers.put("refundSumGold", "退款金币总数"); |
|
|
|
|
|
headers.put("refundPermanentGold", "退款永久金币"); |
|
|
|
|
|
headers.put("refundFreeGold", "退款免费金币"); |
|
|
|
|
|
headers.put("refundTaskGold", "退款任务金币"); |
|
|
|
|
|
headers.put("refundModel", "退款类型"); |
|
|
headers.put("remark", "备注"); |
|
|
headers.put("remark", "备注"); |
|
|
headers.put("adminName", "提交人"); |
|
|
headers.put("adminName", "提交人"); |
|
|
headers.put("isRefund", "是否退款"); |
|
|
headers.put("isRefund", "是否退款"); |
|
|
@ -99,7 +104,9 @@ public class ExcelHeaderTranslator { |
|
|
return Arrays.asList( |
|
|
return Arrays.asList( |
|
|
"name", "orderCode", "jwcode", "market", "goodsName", |
|
|
"name", "orderCode", "jwcode", "market", "goodsName", |
|
|
"payPlatform", "sumGold", "permanentGold", "freeGold", |
|
|
"payPlatform", "sumGold", "permanentGold", "freeGold", |
|
|
"taskGold", "remark", "adminName", "isRefund", "createTime", "price" |
|
|
|
|
|
|
|
|
"taskGold", "refundSumGold", "refundPermanentGold", |
|
|
|
|
|
"refundFreeGold", "refundTaskGold", "refundModel", |
|
|
|
|
|
"remark", "adminName", "isRefund", "createTime", "price" |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|