package com.landy.gum.zonghe.query;
|
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class ZhProductDaiZhiQueryItem extends BaseQueryItem {
|
|
private String bbprId;
|
private String bbprName;
|
private String bbprStyle;
|
private String bbprUnit;
|
private String bbprBrand;
|
private Date lastExitDate;
|
|
@Column(name = "bbpr_id")
|
public String getBbprId() {
|
return bbprId;
|
}
|
|
public void setBbprId(String bbprId) {
|
this.bbprId = bbprId;
|
addValidField("bbprId");
|
}
|
|
@Column(name = "bbpr_name")
|
public String getBbprName() {
|
return bbprName;
|
}
|
|
public void setBbprName(String bbprName) {
|
this.bbprName = bbprName;
|
addValidField("bbprName");
|
}
|
|
@Column(name = "bbpr_style")
|
public String getBbprStyle() {
|
return bbprStyle;
|
}
|
|
public void setBbprStyle(String bbprStyle) {
|
this.bbprStyle = bbprStyle;
|
addValidField("bbprStyle");
|
}
|
|
@Column(name = "bbpr_unit")
|
public String getBbprUnit() {
|
return bbprUnit;
|
}
|
|
public void setBbprUnit(String bbprUnit) {
|
this.bbprUnit = bbprUnit;
|
addValidField("bbprUnit");
|
}
|
|
@Column(name = "bbpr_brand")
|
public String getBbprBrand() {
|
return bbprBrand;
|
}
|
|
public void setBbprBrand(String bbprBrand) {
|
this.bbprBrand = bbprBrand;
|
addValidField("bbprBrand");
|
}
|
|
@Column(name = "last_exit_date")
|
public Date getLastExitDate() {
|
return lastExitDate;
|
}
|
|
public void setLastExitDate(Date lastExitDate) {
|
this.lastExitDate = lastExitDate;
|
addValidField("lastExitDate");
|
}
|
|
}
|