lyhzzz 3 months ago
parent
commit
fb5a88873e

+ 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;