package com.landy.gum.inout.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class AdjustListQueryCondition extends BaseQueryCondition {
|
|
private String ioamName;
|
private String ioamType;
|
private Date startDate;
|
private Date endDate;
|
|
public String getIoamName() {
|
return ioamName;
|
}
|
|
public void setIoamName(String ioamName) {
|
this.ioamName = ioamName;
|
}
|
|
public String getIoamType() {
|
return ioamType;
|
}
|
|
public void setIoamType(String ioamType) {
|
this.ioamType = ioamType;
|
}
|
|
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;
|
}
|
|
}
|