admin
2019-11-23 51a4ff5d777028d52a19c314a99f796334cb7b51
fanli/src/main/java/com/yeshi/fanli/entity/brand/BrandInfo.java
@@ -2,13 +2,11 @@
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;
/**
 * 品牌信息
@@ -32,9 +30,18 @@
   @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; // 权重:值越大越前
@@ -120,4 +127,29 @@
   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;
   }
}