package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ProductListQueryCondition extends BaseQueryCondition {
|
|
private String locationid;
|
private Integer bbbrId;
|
|
public String getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(String locationid) {
|
this.locationid = locationid;
|
}
|
|
public Integer getBbbrId() {
|
return bbbrId;
|
}
|
|
public void setBbbrId(Integer bbbrId) {
|
this.bbbrId = bbbrId;
|
}
|
|
}
|