package com.landy.gum.inventory.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ProductOrderOccupationQueryCondition extends BaseQueryCondition {
|
|
private Integer bbprId;
|
private String bbprName;
|
|
public Integer getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(Integer bbprId) {
|
this.bbprId = bbprId;
|
}
|
|
public String getBbprName() {
|
return bbprName;
|
}
|
|
public void setBbprName(String bbprName) {
|
this.bbprName = bbprName;
|
}
|
|
}
|