package com.landy.gum.out.query;
|
|
import java.util.Date;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ExitListQueryCondition extends BaseQueryCondition {
|
|
private String exitInfo;
|
private String ouexState;
|
private Date beginExitDate;
|
private Date endExitDate;
|
private String ouexExitType;
|
private Integer locationid;
|
private String ouexId;
|
|
public String getExitInfo() {
|
return exitInfo;
|
}
|
|
public void setExitInfo(String exitInfo) {
|
this.exitInfo = exitInfo;
|
}
|
|
public String getOuexState() {
|
return ouexState;
|
}
|
|
public void setOuexState(String ouexState) {
|
this.ouexState = ouexState;
|
}
|
|
public Date getBeginExitDate() {
|
return beginExitDate;
|
}
|
|
public void setBeginExitDate(Date beginExitDate) {
|
this.beginExitDate = beginExitDate;
|
}
|
|
public Date getEndExitDate() {
|
return endExitDate;
|
}
|
|
public void setEndExitDate(Date endExitDate) {
|
this.endExitDate = endExitDate;
|
}
|
|
public String getOuexExitType() {
|
return ouexExitType;
|
}
|
|
public void setOuexExitType(String ouexExitType) {
|
this.ouexExitType = ouexExitType;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getOuexId() {
|
return ouexId;
|
}
|
|
public void setOuexId(String ouexId) {
|
this.ouexId = ouexId;
|
}
|
|
}
|