package com.jiuqi.mobile.nigo.comeclose.bean.base; import com.jiuqi.mobile.nigo.comeclose.bean.NiGoBean; /** * 农机的品牌产品名称型号应用bean * * @ClassName: BrandProductModelBean * @author xuz * @date 2014-10-20 下午4:22:25 * */ public class BrandProductModelBean extends NiGoBean { private static final long serialVersionUID = 2776379729169411354L; // @DBColumn(comment = "农机的品牌产品名称型号编号") private long code; // @DBColumn(comment = "直属上级编号") private long pCode; // @DBColumn(length = DBColumn.Length_Name, comment = "名称") private String name; // @DBColumn(comment = "农机厂商编号,位数不限") private int factoryCode; private String factoryName; // @DBColumn(comment = "农机品牌编号,2") private int brandCode; private String brandName; // @DBColumn(comment = "农机产品名称编号,2") private int productCode; private String productName; // @DBColumn(comment = "农机型号编号,3") private int modelCode; private String modelName; // @DBColumn(comment = "农机的大小类品目编号") private long kindsOfCarCode; private KindsOfCarBean kindsOfCarBean; // @DBColumn(comment = "区分品牌产品名称和型号。1.品牌 2.产品名称 3.型号") private int mark; // @DBColumn(columnType=DBColumn.Type_Text,comment = "对品牌、产品名称、型号的描述") private String detail; public int getMark() { return mark; } public void setMark(int mark) { this.mark = mark; } public long getCode() { return code; } public void setCode(long code) { this.code = code; } public long getpCode() { return pCode; } public void setpCode(long pCode) { this.pCode = pCode; } public String getName() { return name; } public void setName(String name) { this.name = name; } public long getKindsOfCarCode() { return kindsOfCarCode; } public void setKindsOfCarCode(long kindsOfCarCode) { this.kindsOfCarCode = kindsOfCarCode; } public KindsOfCarBean getKindsOfCarBean() { return kindsOfCarBean; } public void setKindsOfCarBean(KindsOfCarBean kindsOfCarBean) { this.kindsOfCarBean = kindsOfCarBean; } public int getBrandCode() { return brandCode; } public void setBrandCode(int brandCode) { this.brandCode = brandCode; } public int getProductCode() { return productCode; } public void setProductCode(int productCode) { this.productCode = productCode; } public int getModelCode() { return modelCode; } public void setModelCode(int modelCode) { this.modelCode = modelCode; } public String getDetail() { return detail; } public void setDetail(String detail) { this.detail = detail; } public int getFactoryCode() { return factoryCode; } public void setFactoryCode(int factoryCode) { this.factoryCode = factoryCode; } public String getFactoryName() { return factoryName; } public void setFactoryName(String factoryName) { this.factoryName = factoryName; } public String getBrandName() { return brandName; } public void setBrandName(String brandName) { this.brandName = brandName; } public String getProductName() { return productName; } public void setProductName(String productName) { this.productName = productName; } public String getModelName() { return modelName; } public void setModelName(String modelName) { this.modelName = modelName; } }