Commit 93e86880 by zhangkb

修改参数

parent 67ea9c1d
......@@ -703,9 +703,12 @@ public class TagService {
@SuppressWarnings("unchecked")
public Map<String,Object> getTagMetadataWithDataPrivilege(String dimensionType,String idPath,
String keyword,String modelPath,int pageNum,int pageSize,String tagType){
if(StringUtils.isBlank(modelPath)) {
modelPath = null;
}
//调用repo接口获取标签关联的元数据
Map<String,Object> tagData = repoService.getTagMetadata(dimensionType,
idPath,keyword, modelPath,pageNum, pageSize,tagType);
idPath,keyword,modelPath,pageNum,pageSize,tagType);
//获取用户关联的数据权限
Map<Long, Set<String>> systemTagMap = GrantedAuthHelper.getDataPrivileges();
tagData.put("systemTagMap", systemTagMap);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment