package com.landy.gum.base.query;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class ProcurePriceListQueryItem extends BaseQueryItem {
|
|
private Double bbppPrice;
|
|
@Column(name = "bbpp_price")
|
public Double getBbppPrice() {
|
return bbppPrice;
|
}
|
|
public void setBbppPrice(Double bbppPrice) {
|
this.bbppPrice = bbppPrice;
|
addValidField("bbppPrice");
|
}
|
|
}
|