package com.landy.gum.out.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class PsingRightDownQueryCondition extends BaseQueryCondition {
|
|
private String bbprId;
|
private Integer locationid;
|
private String ouqdProcessDate;
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getOuqdProcessDate() {
|
return ouqdProcessDate;
|
}
|
|
public void setOuqdProcessDate(String ouqdProcessDate) {
|
this.ouqdProcessDate = ouqdProcessDate;
|
}
|
|
}
|