package cn.com.basic.face.discern.checking.entity;
|
|
import java.io.Serializable;
|
|
public class CheckingCompany implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private Integer personid;
|
|
private Integer companyid;
|
|
public Integer getPersonid() {
|
return personid;
|
}
|
|
public void setPersonid(Integer personid) {
|
this.personid = personid;
|
}
|
|
public Integer getCompanyid() {
|
return companyid;
|
}
|
|
public void setCompanyid(Integer companyid) {
|
this.companyid = companyid;
|
}
|
}
|