package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class PreviousProductLocationQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String bbitId;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getBbitId() {
|
return bbitId;
|
}
|
|
public void setBbitId(String bbitId) {
|
this.bbitId = bbitId;
|
}
|
|
}
|