package com.landy.gum.out.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class PeiHuoDanListQueryCondition extends BaseQueryCondition {
|
|
private String ouqlInfo;
|
private Date ouqlStartDate;
|
private Date ouqlEndDate;
|
private Integer locationid;
|
|
public String getOuqlInfo() {
|
return ouqlInfo;
|
}
|
|
public void setOuqlInfo(String ouqlInfo) {
|
this.ouqlInfo = ouqlInfo;
|
}
|
|
public Date getOuqlStartDate() {
|
return ouqlStartDate;
|
}
|
|
public void setOuqlStartDate(Date ouqlStartDate) {
|
this.ouqlStartDate = ouqlStartDate;
|
}
|
|
public Date getOuqlEndDate() {
|
return ouqlEndDate;
|
}
|
|
public void setOuqlEndDate(Date ouqlEndDate) {
|
this.ouqlEndDate = ouqlEndDate;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
}
|