package com.landy.gum.out.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class QingLingEditQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String detailpid;
|
private String ouqlOrg;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getDetailpid() {
|
return detailpid;
|
}
|
|
public void setDetailpid(String detailpid) {
|
this.detailpid = detailpid;
|
}
|
|
public String getOuqlOrg() {
|
return ouqlOrg;
|
}
|
|
public void setOuqlOrg(String ouqlOrg) {
|
this.ouqlOrg = ouqlOrg;
|
}
|
|
}
|