...
|
...
|
@@ -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("");
|
...
|
...
|
|