package com.landy.gum.inout.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class StuffPickQueryCondition extends BaseQueryCondition {
|
|
private String iospSn;
|
private String iospVolumes;
|
private Date startDate;
|
private Date endDate;
|
private String iospType;
|
private String bbstId;
|
private String bbstStyle;
|
private String bbstType;
|
|
public String getIospSn() {
|
return iospSn;
|
}
|
|
public void setIospSn(String iospSn) {
|
this.iospSn = iospSn;
|
}
|
|
public String getIospVolumes() {
|
return iospVolumes;
|
}
|
|
public void setIospVolumes(String iospVolumes) {
|
this.iospVolumes = iospVolumes;
|
}
|
|
public Date getStartDate() {
|
return startDate;
|
}
|
|
public void setStartDate(Date startDate) {
|
this.startDate = startDate;
|
}
|
|
public Date getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(Date endDate) {
|
this.endDate = endDate;
|
}
|
|
public String getIospType() {
|
return iospType;
|
}
|
|
public void setIospType(String iospType) {
|
this.iospType = iospType;
|
}
|
|
public String getBbstId() {
|
return bbstId;
|
}
|
|
public void setBbstId(String bbstId) {
|
this.bbstId = bbstId;
|
}
|
|
public String getBbstStyle() {
|
return bbstStyle;
|
}
|
|
public void setBbstStyle(String bbstStyle) {
|
this.bbstStyle = bbstStyle;
|
}
|
|
public String getBbstType() {
|
return bbstType;
|
}
|
|
public void setBbstType(String bbstType) {
|
this.bbstType = bbstType;
|
}
|
|
}
|