lyhzzz 2 سال پیش
والد
کامیت
9af2caf208
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

@@ -72,7 +72,7 @@ public class CaseTagPointServiceImpl extends ServiceImpl<ICaseTagPointMapper, Ca
         LambdaQueryWrapper<CaseTagPoint> wrapper = new LambdaQueryWrapper<>();
         wrapper.eq(CaseTagPoint::getTagId,tagId);
         wrapper.eq(CaseTagPoint::getBindHide,0);
-        wrapper.orderByDesc(CaseTagPoint::getCreateTime);
+        wrapper.orderByAsc(CaseTagPoint::getCreateTime);
         List<CaseTagPoint> list = this.list(wrapper);
         List<CaseTagPointVo> caseTagPointVoList = new ArrayList<>();
         for (CaseTagPoint caseTagPoint : list) {