no message
Showing
1 changed file
with
1 additions
and
2 deletions
| ... | @@ -100,8 +100,7 @@ public class BuildingBlockServiceImpl implements IBuildingBlockService { | ... | @@ -100,8 +100,7 @@ public class BuildingBlockServiceImpl implements IBuildingBlockService { |
| 100 | List<BuildingBlockVo> list = baseMapper.selectVoList(null); | 100 | List<BuildingBlockVo> list = baseMapper.selectVoList(null); |
| 101 | for (BuildingBlockVo vo : list) { | 101 | for (BuildingBlockVo vo : list) { |
| 102 | if (StrUtil.isNotBlank(vo.getOssId())) { | 102 | if (StrUtil.isNotBlank(vo.getOssId())) { |
| 103 | SysOssVo oss = iSysOssService.getById(Long.valueOf(vo.getOssId())); | 103 | vo.setOssUrl(ossUrlService.selectUrlByIds(vo.getOssId())); |
| 104 | vo.setOssUrl(oss.getUrl()); | ||
| 105 | } | 104 | } |
| 106 | } | 105 | } |
| 107 | return list; | 106 | return list; | ... | ... |
-
Please register or sign in to post a comment