浏览代码

test

master
niohe·erbao 1年前
父节点
当前提交
2836f16948
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      pmapi/src/main/java/com/ningdatech/pmapi/expert/helper/ExpertManageHelper.java

+ 4
- 1
pmapi/src/main/java/com/ningdatech/pmapi/expert/helper/ExpertManageHelper.java 查看文件

@@ -1,5 +1,6 @@
package com.ningdatech.pmapi.expert.helper;

import cn.hutool.core.collection.CollUtil;
import com.ningdatech.basic.exception.BizException;
import com.ningdatech.pmapi.expert.model.*;
import com.ningdatech.pmapi.meta.helper.DictionaryCache;
@@ -64,7 +65,9 @@ public class ExpertManageHelper {
tagFieldInfoList.addAll(goodAt);
tagFieldInfoList.addAll(technicalExpertise);
tagFieldInfoList.addAll(industrySector);
tagFieldInfoList.addAll(expertSource);
if(CollUtil.isNotEmpty(expertSource)){
tagFieldInfoList.addAll(expertSource);
}
for (TagFieldInfo tagFieldInfo : tagFieldInfoList) {
String tagCode = tagFieldInfo.getTagCode();
TagDTO tagCodeDTO = tagCache.getByTagCode(tagCode);


正在加载...
取消
保存