package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class GetProductOnProductRunQueryCondition extends BaseQueryCondition {
|
|
private String bbprNames;
|
private Integer bbprId;
|
private Integer factoryId;
|
|
public String getBbprNames() {
|
return bbprNames;
|
}
|
|
public void setBbprNames(String bbprNames) {
|
this.bbprNames = bbprNames;
|
}
|
|
public Integer getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(Integer bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public Integer getFactoryId() {
|
return factoryId;
|
}
|
|
public void setFactoryId(Integer factoryId) {
|
this.factoryId = factoryId;
|
}
|
|
|
}
|