ZoneCountData.java 1.17 KB
package com.viontech.keliu.entity;

import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Getter;
import lombok.Setter;

import java.util.Date;

@Getter
@Setter
public class ZoneCountData {
    /**
     * 广场id
     */
    private Long mallId;

    /**
     * 商户id
     */
    private Long accountId;

    /**
     * 楼层id
     */
    private Long floorId;

    /**
     * 区域id
     */
    private Long zoneId;

    /**
     * 进入数量
     */
    private Integer innum;

    /**
     * 出数量
     */
    private Integer outnum;

    /**
     * 店外进人数
     */
    private Integer outsideInnum;

    /**
     * 店外出人数
     */
    private Integer outsideOutnum;

    /**
     * 统计时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date counttime;

    /**
     * 统计日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date countdate;

    /**
     * 小时
     */
    private Integer hour;

    /**
     * 铺位号
     */
    private Long bunkNo;

    /**
     * 数据操作类型:insert:插入,update:更新
     */
    private String operationType;
}