package cn.com.basic.face.discern.visit.entity;
|
|
public class VisitStat {
|
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;
|
}
|
}
|