package cn.com.basic.face.discern.entity;
|
|
import java.io.Serializable;
|
|
import cn.com.basic.face.discern.common.BaseEntity;
|
|
/**
|
* VisitPersonType
|
*/
|
public class VisitPersonType extends BaseEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
public static final String MODEL_NAME = "VisitPersonType";
|
|
public static final class FieldNames {
|
/**
|
* registerCompanyId
|
*/
|
public static final String registerCompanyId = "registerCompanyId";
|
/**
|
* personId
|
*/
|
public static final String personId = "personId";
|
/**
|
* visitorTypeId
|
*/
|
public static final String visitorTypeId = "visitorTypeId";
|
}
|
|
// registerCompanyId
|
private Integer registerCompanyId;
|
// personId
|
private Integer personId;
|
// visitorTypeId
|
private Integer visitorTypeId;
|
|
/**
|
* Get registerCompanyId
|
*/
|
public Integer getRegisterCompanyId() {
|
return registerCompanyId;
|
}
|
|
/**
|
* Set registerCompanyId
|
*/
|
public void setRegisterCompanyId(Integer registerCompanyId) {
|
this.registerCompanyId = registerCompanyId;
|
}
|
|
/**
|
* Get personId
|
*/
|
public Integer getPersonId() {
|
return personId;
|
}
|
|
/**
|
* Set personId
|
*/
|
public void setPersonId(Integer personId) {
|
this.personId = personId;
|
}
|
|
/**
|
* Get visitorTypeId
|
*/
|
public Integer getVisitorTypeId() {
|
return visitorTypeId;
|
}
|
|
/**
|
* Set visitorTypeId
|
*/
|
public void setVisitorTypeId(Integer visitorTypeId) {
|
this.visitorTypeId = visitorTypeId;
|
}
|
|
public String toString() {
|
return
|
",registerCompanyId ="+ registerCompanyId + ",personId ="+ personId + ",visitorTypeId ="+ visitorTypeId
|
;
|
}
|
}
|