package com.landy.gum.inout.query;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class ProductByCategoryQueryItem extends BaseQueryItem {
|
|
private String bbprId;
|
|
@Column(name = "bbpr_id")
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
addValidField("bbprId");
|
}
|
|
}
|