package cn.com.basic.face.discern.query.condition;
|
|
|
public class VisitorQueryCondition extends BaseCondition {
|
|
public static final class FieldNames {
|
/**
|
* 公司主键
|
*/
|
public static final String companyId = "companyId";
|
/**
|
* 人员名字
|
*/
|
public static final String name = "name";
|
/**
|
* 人员主键
|
*/
|
public static final String id = "id";
|
/**
|
*
|
*/
|
public static final String notCompanyId = "notCompanyId";
|
}
|
|
// 公司主键
|
private String companyId;
|
// 人员名字
|
private String name;
|
// 人员主键
|
private String id;
|
//
|
private String notCompanyId;
|
|
/**
|
* Get 公司主键
|
*/
|
public String getCompanyId() {
|
return companyId;
|
}
|
|
/**
|
* Set 公司主键
|
*/
|
public void setCompanyId(String companyId) {
|
this.companyId = companyId;
|
}
|
|
/**
|
* Get 人员名字
|
*/
|
public String getName() {
|
return name;
|
}
|
|
/**
|
* Set 人员名字
|
*/
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
/**
|
* Get 人员主键
|
*/
|
public String getId() {
|
return id;
|
}
|
|
/**
|
* Set 人员主键
|
*/
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
/**
|
* Get
|
*/
|
public String getNotCompanyId() {
|
return notCompanyId;
|
}
|
|
/**
|
* Set
|
*/
|
public void setNotCompanyId(String notCompanyId) {
|
this.notCompanyId = notCompanyId;
|
}
|
|
public String toString() {
|
return
|
",公司主键 =" + companyId + ",人员名字 =" + name + ",人员主键 =" + id +
|
", =" + notCompanyId;
|
}
|
}
|