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