| | |
| | | @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
|
| | |
| | | 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;
|
| | | }
|
| | | } |