PersonVo.java 1.1 KB
package com.viontech.keliu.vo;

import java.util.Date;

/**
 * Created with IntelliJ IDEA.
 *
 * @author: zhuhai
 * Date: 2022-10-31
 * Time: 20:57
 */
public class PersonVo {
    private Integer mall_id;
    private String person_unid;
    private Integer person_type;
    private Date counttime;

    private Integer mood;

    public Integer getMall_id() {
        return this.mall_id;
    }

    public void setMall_id(Integer mall_id) {
        this.mall_id = mall_id;
    }

    public Integer getPerson_type() {
        return this.person_type;
    }

    public String getPerson_unid() {
        return this.person_unid;
    }

    public void setPerson_unid(String person_unid) {
        this.person_unid = person_unid;
    }

    public void setPerson_type(Integer person_type) {
        this.person_type = person_type;
    }

    public Date getCounttime() {
        return this.counttime;
    }

    public void setCounttime(Date counttime) {
        this.counttime = counttime;
    }

    public Integer getMood() {
        return mood;
    }

    public void setMood(Integer mood) {
        this.mood = mood;
    }
}