lyhzzz 5 달 전
부모
커밋
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;