package com.landy.gum.out.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class PsCenterUpListQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String ouqlInfo;
|
private String syusId;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getOuqlInfo() {
|
return ouqlInfo;
|
}
|
|
public void setOuqlInfo(String ouqlInfo) {
|
this.ouqlInfo = ouqlInfo;
|
}
|
|
public String getSyusId() {
|
return syusId;
|
}
|
|
public void setSyusId(String syusId) {
|
this.syusId = syusId;
|
}
|
|
|
}
|