package com.landy.gum.inout.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class HardwareEntryDetailListQueryCondition extends BaseQueryCondition {
|
|
private String bbstName;
|
private String bbstType;
|
private Date beginDate;
|
private Date endDate;
|
|
public String getBbstName() {
|
return bbstName;
|
}
|
|
public void setBbstName(String bbstName) {
|
this.bbstName = bbstName;
|
}
|
|
public String getBbstType() {
|
return bbstType;
|
}
|
|
public void setBbstType(String bbstType) {
|
this.bbstType = bbstType;
|
}
|
|
public Date getBeginDate() {
|
return beginDate;
|
}
|
|
public void setBeginDate(Date beginDate) {
|
this.beginDate = beginDate;
|
}
|
|
public Date getEndDate() {
|
return endDate;
|
}
|
|
public void setEndDate(Date endDate) {
|
this.endDate = endDate;
|
}
|
|
}
|