Authored by wangnan

logo处理

... ... @@ -20,6 +20,8 @@ public class TblBrandLogicService {
private TblBrandService tblBrandService;
@Autowired
private TblBrandRelationLogicService tblBrandRelationLogicService;
@Autowired
private TblImgUrlLogicService tblImgUrlLogicService;
/**
* 增量
... ... @@ -67,7 +69,9 @@ public class TblBrandLogicService {
brandBO.setStatus(1);
}
brandBO.setIsGlobal("Y");
brandBO.setBrandIco(tblBrand.getLogo());
if (tblBrand.getLogo() != null) {
brandBO.setBrandIco(tblImgUrlLogicService.getTblImageUrl(tblBrand.getLogo(), true));
}
brandBO.setBrandDomain(null);
brandBO.setBrandKeyword(null);
brandBO.setHotKeyword(null);
... ...