GateCountData.java 1.04 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 GateCountData {
    /**
     * 广场id
     */
    private Long mallId;

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

    /**
     * 出入口id
     */
    private Long gateId;

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

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

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

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

    private Integer hour;

    /**
     * 店外正向客流
     */
    private Integer outsideInnum;

    /**
     * 店外反向客流
     */
    private Integer outsideOutnum;

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