package cn.com.basic.face.discern.query.condition;
|
|
|
public class DeviceQueryCondition extends BaseCondition {
|
|
public static final class FieldNames {
|
/**
|
*
|
*/
|
public static final String sn = "sn";
|
/**
|
*
|
*/
|
public static final String type = "type";
|
/**
|
*
|
*/
|
public static final String companyId = "companyId";
|
/**
|
*
|
*/
|
public static final String belongId = "belongId";
|
}
|
|
//
|
private String sn;
|
//
|
private String type;
|
//
|
private String companyId;
|
//
|
private String belongId;
|
|
/**
|
* Get
|
*/
|
public String getSn() {
|
return sn;
|
}
|
|
/**
|
* Set
|
*/
|
public void setSn(String sn) {
|
this.sn = sn;
|
}
|
|
/**
|
* Get
|
*/
|
public String getType() {
|
return type;
|
}
|
|
/**
|
* Set
|
*/
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
/**
|
* Get
|
*/
|
public String getCompanyId() {
|
return companyId;
|
}
|
|
/**
|
* Set
|
*/
|
public void setCompanyId(String companyId) {
|
this.companyId = companyId;
|
}
|
|
/**
|
* Get
|
*/
|
public String getBelongId() {
|
return belongId;
|
}
|
|
/**
|
* Set
|
*/
|
public void setBelongId(String belongId) {
|
this.belongId = belongId;
|
}
|
|
public String toString() {
|
return
|
", =" + sn + ", =" + type + ", =" + companyId +
|
", =" + belongId ;
|
}
|
}
|