Person.java
573 Bytes
package com.viontech.keliu.entity;
import lombok.Data;
import java.util.Date;
/**
 * Created with IntelliJ IDEA.
 *
 * @author: zhuhai
 * Date: 2022-11-02
 * Time: 18:07
 */
@Data
public class Person {
    private Long accountId;
    private Long mallId;
    private Long gateId;
    private String personUnid;
    private Integer personType;
    private Date countTime;
    private Date countDate;
    private Integer mood;
    private Integer direction;
    private Integer age;
    private Integer gender;
    private Integer trackTime;
    private Long channelId;
}