package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class SupplierListByProductIdQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String bbprId;
|
private String bbppState;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public String getBbppState() {
|
return bbppState;
|
}
|
|
public void setBbppState(String bbppState) {
|
this.bbppState = bbppState;
|
}
|
|
}
|