Commit bd7af924 by wangli

修改

1 parent 9f826b18
...@@ -180,10 +180,12 @@ public class BusinessBlockServiceImpl implements BusinessBlockService { ...@@ -180,10 +180,12 @@ public class BusinessBlockServiceImpl implements BusinessBlockService {
return Result.failure("区块已存在或者裁剪为空"); return Result.failure("区块已存在或者裁剪为空");
} }
String blockId = saasResult.getResult(); String blockId = saasResult.getResult();
String blockName = String.format("%s_%s", layerName, team.getTeamName()); //区块名称
MapBlockInfo block = new MapBlockInfo(); MapBlockInfo block = new MapBlockInfo();
block.setBlockId(blockId); block.setBlockId(blockId);
block.setBlockName(team.getTeamName()); //默认使用team name; block.setBlockName(blockName);
block.setBranchId(team.getBranchId()); block.setBranchId(team.getBranchId());
block.setGroupId(team.getGroupId()); block.setGroupId(team.getGroupId());
block.setTeamId(teamId); block.setTeamId(teamId);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!