package com.landy.gum.sys.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class DropDownListQueryCondition extends BaseQueryCondition {
|
|
private Integer locationId;
|
private String sydiState;
|
|
public Integer getLocationId() {
|
return locationId;
|
}
|
|
public void setLocationId(Integer locationId) {
|
this.locationId = locationId;
|
}
|
|
public String getSydiState() {
|
return sydiState;
|
}
|
|
public void setSydiState(String sydiState) {
|
this.sydiState = sydiState;
|
}
|
|
}
|