package com.landy.gum.out.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class OutQinglingQueryCondition extends BaseQueryCondition {
|
|
private String ouqdState;
|
private String ouqlSn;
|
private Integer locationid;
|
|
public String getOuqdState() {
|
return ouqdState;
|
}
|
|
public void setOuqdState(String ouqdState) {
|
this.ouqdState = ouqdState;
|
}
|
|
public String getOuqlSn() {
|
return ouqlSn;
|
}
|
|
public void setOuqlSn(String ouqlSn) {
|
this.ouqlSn = ouqlSn;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
}
|