package com.landy.gum.sys.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class DepartmentQueryCondition extends BaseQueryCondition {
|
|
private String sydeInfo;
|
private Integer locationid;
|
private String sydeState;
|
private String phState;
|
|
public String getSydeInfo() {
|
return sydeInfo;
|
}
|
|
public void setSydeInfo(String sydeInfo) {
|
this.sydeInfo = sydeInfo;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getSydeState() {
|
return sydeState;
|
}
|
|
public void setSydeState(String sydeState) {
|
this.sydeState = sydeState;
|
}
|
|
public String getPhState() {
|
return phState;
|
}
|
|
public void setPhState(String phState) {
|
this.phState = phState;
|
}
|
|
}
|