Authored by Gino Zhang

Merge branch '0110' of git.yoho.cn:yoho-search/yoho-search-consumer into 0110

... ... @@ -29,6 +29,7 @@ public class ShopsLogicService {
@Autowired
private BrandMapper brandMapper;
/**
* 增量
*
... ...
... ... @@ -23,7 +23,8 @@ public class TblShopsLogicService {
private ShopsBrandsMapper shopsBrandsMapper;
@Autowired
private BrandMapper brandMapper;
@Autowired
private TblImgUrlLogicService tblImgUrlLogicService;
@Autowired
private TblBrandService tblBrandService;
... ... @@ -68,7 +69,9 @@ public class TblShopsLogicService {
shopsBO.setShopName(tblBrand.getBrandNameEn());
shopsBO.setShopDomain("");
shopsBO.setShopNature(0);
shopsBO.setShopLogo(tblBrand.getLogo());
if (tblBrand.getLogo() != null) {
shopsBO.setShopLogo(tblImgUrlLogicService.getTblImageUrl(tblBrand.getLogo() , true));
}
shopsBO.setWebsiteUrl("");
shopsBO.setOtherUrl("");
shopsBO.setShopAddress("");
... ...