package com.landy.gum.out.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ExitDetailForViewQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String ouexId;
|
|
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;
|
}
|
|
}
|