|
@ -26,14 +26,16 @@ public class User implements Serializable { |
|
|
private String name; // 客户姓名 |
|
|
private String name; // 客户姓名 |
|
|
@ExcelProperty("所属地区") |
|
|
@ExcelProperty("所属地区") |
|
|
private String market; // 所属地区 |
|
|
private String market; // 所属地区 |
|
|
@ExcelProperty("历史永久金币") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private BigDecimal sumPermanentGold; // 历史永久金币 |
|
|
private BigDecimal sumPermanentGold; // 历史永久金币 |
|
|
@ExcelProperty("历史六月免费金币") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private BigDecimal sumFreeJune; // 历史六月免费金币 |
|
|
private BigDecimal sumFreeJune; // 历史六月免费金币 |
|
|
@ExcelProperty("历史十二月免费金币") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private BigDecimal sumFreeDecember; // 历史十二月免费金币 |
|
|
private BigDecimal sumFreeDecember; // 历史十二月免费金币 |
|
|
@ExcelProperty("历史任务金币") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private BigDecimal sumTaskGold; // 历史任务金币 |
|
|
private BigDecimal sumTaskGold; // 历史任务金币 |
|
|
|
|
|
@ExcelProperty("金币总数") |
|
|
|
|
|
private BigDecimal sumGold;// 金币总数 |
|
|
@ExcelProperty("当前永久金币") |
|
|
@ExcelProperty("当前永久金币") |
|
|
private BigDecimal currentPermanentGold; // 当前永久金币 |
|
|
private BigDecimal currentPermanentGold; // 当前永久金币 |
|
|
@ExcelProperty("当前六月免费金币") |
|
|
@ExcelProperty("当前六月免费金币") |
|
@ -42,17 +44,17 @@ public class User implements Serializable { |
|
|
private BigDecimal currentFreeDecember; // 当前十二月免费金币 |
|
|
private BigDecimal currentFreeDecember; // 当前十二月免费金币 |
|
|
@ExcelProperty("当前任务金币") |
|
|
@ExcelProperty("当前任务金币") |
|
|
private BigDecimal currentTaskGold; // 当前任务金币 |
|
|
private BigDecimal currentTaskGold; // 当前任务金币 |
|
|
@ExcelProperty("充值次数") |
|
|
|
|
|
|
|
|
@ExcelProperty("充值次数(25年起)") |
|
|
private Integer rechargeNum; // 充值次数 |
|
|
private Integer rechargeNum; // 充值次数 |
|
|
@ExcelProperty("历史消费") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private Integer sumConsume; // 历史消费 |
|
|
private Integer sumConsume; // 历史消费 |
|
|
@ExcelProperty("历史消费次数") |
|
|
|
|
|
|
|
|
@ExcelProperty("消费次数(25年起)") |
|
|
private Integer consumeNum; // 消费次数 |
|
|
private Integer consumeNum; // 消费次数 |
|
|
@ExcelProperty("历史消费永久金币") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private BigDecimal sumConsumePermanent; |
|
|
private BigDecimal sumConsumePermanent; |
|
|
@ExcelProperty("历史消费任务金币") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private BigDecimal sumConsumeTask; |
|
|
private BigDecimal sumConsumeTask; |
|
|
@ExcelProperty("历史消费免费金币") |
|
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
private BigDecimal sumConsumeFree; |
|
|
private BigDecimal sumConsumeFree; |
|
|
@ExcelIgnore |
|
|
@ExcelIgnore |
|
|
private List<String> markets; |
|
|
private List<String> markets; |
|
|