package cn.com.basic.face.discern.visit.entity; import java.io.Serializable; public class VisitStat implements Serializable{ /** * */ private static final long serialVersionUID = 1L; private Integer personid; private Integer registercompanyid; private Integer totalcount; public Integer getPersonid() { return personid; } public void setPersonid(Integer personid) { this.personid = personid; } public Integer getRegistercompanyid() { return registercompanyid; } public void setRegistercompanyid(Integer registercompanyid) { this.registercompanyid = registercompanyid; } public Integer getTotalcount() { return totalcount; } public void setTotalcount(Integer totalcount) { this.totalcount = totalcount; } }