|
|
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fs.common.annotation.Excel;
|
|
|
import com.fs.common.core.domain.BaseEntity;
|
|
|
import lombok.Data;
|
|
|
|
|
|
@@ -16,15 +17,19 @@ public class StatisticsTable {
|
|
|
@TableId(type = IdType.AUTO)
|
|
|
private Long id;// id
|
|
|
private Long companyId;//公司id
|
|
|
+ @Excel(name = "公司名称")
|
|
|
private String companyName;//公司名称
|
|
|
+ @Excel(name = "小程序id")
|
|
|
private String appId;//小程序id
|
|
|
+ @Excel(name = "小程序名称")
|
|
|
private String appName;//小程序名称
|
|
|
+ @Excel(name = "总观看人数")
|
|
|
private Integer appAllNum;//总观看人数
|
|
|
/** 更新时间 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
|
|
private Date updateTime;
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @TableField(fill = FieldFill.INSERT)
|
|
|
+ @Excel(name = "创建时间",dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date createTime;
|
|
|
}
|