|
@@ -3,27 +3,31 @@ package org.jeecg.modules.excelutil.entity;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.alibaba.excel.metadata.BaseRowModel;
|
|
import com.alibaba.excel.metadata.BaseRowModel;
|
|
|
|
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
public class BytedanceCustomTbtjDataEntity extends BaseRowModel {
|
|
public class BytedanceCustomTbtjDataEntity extends BaseRowModel {
|
|
/**日期*/
|
|
/**日期*/
|
|
- @ExcelProperty(value = "日期", index = 1)
|
|
|
|
- private String stateDate;
|
|
|
|
|
|
+ @ExcelProperty(value = "日期", index = 0)
|
|
|
|
+ private Date stateDate;
|
|
/**计划id*/
|
|
/**计划id*/
|
|
- @ExcelProperty(value = "计划id", index = 2)
|
|
|
|
|
|
+ @ExcelProperty(value = "计划id", index = 1)
|
|
private Long adId;
|
|
private Long adId;
|
|
- @ExcelProperty(value = "登录人数", index = 3)
|
|
|
|
|
|
+ @ExcelProperty(value = "登录人数", index = 2)
|
|
private Integer loginCnt;
|
|
private Integer loginCnt;
|
|
/**bugerCnt*/
|
|
/**bugerCnt*/
|
|
- @ExcelProperty(value = "首购人数", index = 4)
|
|
|
|
|
|
+ @ExcelProperty(value = "首购人数", index = 3)
|
|
private Integer buyerCnt;
|
|
private Integer buyerCnt;
|
|
/**nextDayStay*/
|
|
/**nextDayStay*/
|
|
- @ExcelProperty(value = "次留数", index = 5)
|
|
|
|
|
|
+ @ExcelProperty(value = "次留数", index = 4)
|
|
private Integer nextDayStay;
|
|
private Integer nextDayStay;
|
|
|
|
+
|
|
|
|
+ private String dateString;
|
|
|
|
|
|
- public String getStateDate() {
|
|
|
|
|
|
+ public Date getStateDate() {
|
|
return stateDate;
|
|
return stateDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setStateDate(String stateDate) {
|
|
|
|
|
|
+ public void setStateDate(Date stateDate) {
|
|
this.stateDate = stateDate;
|
|
this.stateDate = stateDate;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -58,4 +62,12 @@ public class BytedanceCustomTbtjDataEntity extends BaseRowModel {
|
|
public void setNextDayStay(Integer nextDayStay) {
|
|
public void setNextDayStay(Integer nextDayStay) {
|
|
this.nextDayStay = nextDayStay;
|
|
this.nextDayStay = nextDayStay;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getDateString() {
|
|
|
|
+ return dateString;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDateString(String dateString) {
|
|
|
|
+ this.dateString = dateString;
|
|
|
|
+ }
|
|
}
|
|
}
|