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) {