Commit 6afa1089 by chamberone

fix: 添加返回saas url

1 parent b1625a2a
......@@ -131,7 +131,12 @@ public class BusinessBlockServiceImpl implements BusinessBlockService {
block.setLayerName(b.getLayerName());
block.setTeamId(b.getTeamId());
block.setTeamName(team.getTeamName());
// block.setArea(b.getArea().toString());
block.setSaasUrl(b.getSaasUrl());
if (StringUtils.isNotBlank(b.getAreaIds())) {
block.setAreaCount(b.getAreaIds().split(",").length);
} else {
block.setAreaCount(0);
}
if(null != b.getUpdateTime()) {
block.setUpdateTime(TimeUtils.IsoLocalDateTime2String(b.getUpdateTime()));
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!