Browse Source

Country report

wfansh 5 months ago
parent
commit
c7f7c780b3

+ 18 - 17
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/dmp/entity/GACountryReport.java

@@ -15,6 +15,7 @@ import org.jeecgframework.poi.excel.annotation.Excel;
 import org.springframework.format.annotation.DateTimeFormat;
 
 import java.io.Serializable;
+import java.util.Date;
 
 /**
  * @Description: dmp_ga_country_report
@@ -30,32 +31,32 @@ import java.io.Serializable;
 public class GACountryReport implements Serializable {
     private static final long serialVersionUID = 1L;
 
-    /**id*/
-    @TableId(type = IdType.AUTO)
+	/**id*/
+	@TableId(type = IdType.AUTO)
     @Schema(description = "id")
-    private java.lang.Long id;
-    /**站点id*/
-    @Excel(name = "站点id", width = 15)
+    private Long id;
+	/**站点id*/
+	@Excel(name = "站点id", width = 15)
     @Schema(description = "站点id")
-    private java.lang.Integer siteId;
-    /**统计时间*/
-    @Excel(name = "统计时间", width = 15, format = "yyyy-MM-dd")
-    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
+    private Integer siteId;
+	/**统计时间*/
+	@Excel(name = "统计时间", width = 15, format = "yyyy-MM-dd")
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
     @DateTimeFormat(pattern="yyyy-MM-dd")
     @Schema(description = "统计时间")
-    private java.util.Date date;
-    /**国家*/
-    @Excel(name = "国家", width = 15)
+    private Date date;
+	/**国家*/
+	@Excel(name = "国家", width = 15)
     @Schema(description = "国家")
-    private java.lang.String country;
-    /**访问量*/
-    @Excel(name = "访问量", width = 15)
+    private String country;
+	/**访问量*/
+	@Excel(name = "访问量", width = 15)
     @Schema(description = "访问量")
-    private java.lang.Integer totalUsers;
+    private Integer totalUsers;
     /**ctime*/
     @Excel(name = "ctime", width = 20, format = "yyyy-MM-dd HH:mm:ss")
     @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
     @Schema(description = "ctime")
-    private java.util.Date ctime;
+    private Date ctime;
 }