lyhzzz 3 月之前
父節點
當前提交
fb5a88873e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/fdkankan/fusion/service/impl/CaseTagPointServiceImpl.java

+ 1 - 1
src/main/java/com/fdkankan/fusion/service/impl/CaseTagPointServiceImpl.java

@@ -77,8 +77,8 @@ public class CaseTagPointServiceImpl extends ServiceImpl<ICaseTagPointMapper, Ca
         List<CaseTagPointVo> caseTagPointVoList = new ArrayList<>();
         for (CaseTagPoint caseTagPoint : list) {
             CaseTagPointVo caseTagPointVo = new CaseTagPointVo();
-            BeanUtils.copyProperties(caseTagPoint,caseTagPointVo);
             BeanUtils.copyProperties(caseTag,caseTagPointVo);
+            BeanUtils.copyProperties(caseTagPoint,caseTagPointVo);
             caseTagPointVoList.add(caseTagPointVo);
         }
         return caseTagPointVoList;