|
|
@ -30,31 +30,32 @@ public class BeanConsumeLive { |
|
|
|
private String name; //姓名 |
|
|
|
@ExcelProperty("精网号") |
|
|
|
private Integer jwcode; //精网号 |
|
|
|
@ExcelProperty("地区/分部") |
|
|
|
@ExcelProperty("地区") |
|
|
|
private String dept; //地区/分部 |
|
|
|
//类型 直播: 1. 发礼物2. 发红包3. 发福袋4. 付费直播5. 加入粉丝团6. 发弹幕 |
|
|
|
//文章: 1. 打赏2. 付费 |
|
|
|
@ExcelProperty("类型") |
|
|
|
|
|
|
|
//@ExcelProperty("类型" ) |
|
|
|
@ExcelIgnore |
|
|
|
private String type; //类型 |
|
|
|
@ExcelProperty("礼物名称") |
|
|
|
@ExcelProperty("礼物") |
|
|
|
private String gift; //礼物名称 |
|
|
|
@ExcelProperty("是否为背包礼物") |
|
|
|
@ExcelProperty("是否为背包礼物 0-否 1-是") |
|
|
|
private String isBackpack; |
|
|
|
@ExcelProperty("金豆数量") |
|
|
|
private String beanNum; //金豆数量 |
|
|
|
@ExcelProperty("频道名称") |
|
|
|
@ExcelProperty("频道") |
|
|
|
private String liveChannel; //频道名称(截取content) |
|
|
|
@ExcelProperty("免费金豆") |
|
|
|
private String freeBean; //免费金豆 |
|
|
|
@ExcelProperty("付费金豆") |
|
|
|
private String buyBean; //付费金豆 |
|
|
|
@ExcelProperty("直播名称") |
|
|
|
@ExcelProperty("直播间名称") |
|
|
|
private String liveName; //直播间名称 |
|
|
|
@ExcelProperty("消费时间") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
private Date consumeTime; // 消费时间 (时间戳转化) |
|
|
|
@ExcelProperty("支付方式") |
|
|
|
@ExcelIgnore |
|
|
|
//@ExcelProperty("支付方式") |
|
|
|
private Integer payType; //支付方式(直播:12345,铁粉:7,文章:8) |
|
|
|
@ExcelIgnore |
|
|
|
private String sortField; //排序字段 |
|
|
|