| | |
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | | import com.yeshi.fanli.vo.goods.GoodsDetailVO;
|
| | |
|
| | | /**
|
| | | * 品牌信息
|
| | |
| | | @Column(name = "bf_name")
|
| | | private String name; // 品牌名称
|
| | |
|
| | | @Column(name = "bf_shop_key")
|
| | | private String shopKey; // 店铺匹配词
|
| | | |
| | | @Column(name = "bf_search_key")
|
| | | private String searchKey; // 搜索词
|
| | | |
| | | @Expose
|
| | | @Column(name = "bf_icon")
|
| | | private String icon; // 品牌logo
|
| | | |
| | | @Column(name = "bf_goods_total")
|
| | | private Integer goodsTotal; // 拥有商品数量
|
| | |
|
| | | @Column(name = "bf_weight")
|
| | | private Double weight; // 权重:值越大越前
|
| | |
| | | public void setUpdateTime(Date updateTime) {
|
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | |
|
| | | public Integer getGoodsTotal() {
|
| | | return goodsTotal;
|
| | | }
|
| | |
|
| | | public void setGoodsTotal(Integer goodsTotal) {
|
| | | this.goodsTotal = goodsTotal;
|
| | | }
|
| | |
|
| | | public String getSearchKey() {
|
| | | return searchKey;
|
| | | }
|
| | |
|
| | | public void setSearchKey(String searchKey) {
|
| | | this.searchKey = searchKey;
|
| | | }
|
| | |
|
| | | public String getShopKey() {
|
| | | return shopKey;
|
| | | }
|
| | |
|
| | | public void setShopKey(String shopKey) {
|
| | | this.shopKey = shopKey;
|
| | | }
|
| | | } |