limeng 3 сар өмнө
parent
commit
c723464e99

+ 3 - 2
application-webadmin/src/main/java/com/tourism/webadmin/back/service/impl/TourTravelNotesCommentServiceImpl.java

@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.github.pagehelper.page.PageMethod;
 import com.tourism.common.core.base.dao.BaseDaoMapper;
 import com.tourism.common.core.base.service.BaseService;
 import com.tourism.common.core.constant.GlobalDeletedFlag;
@@ -187,9 +188,9 @@ public class TourTravelNotesCommentServiceImpl extends BaseService<TourTravelNot
             queryWrapper.ne(TourTravelNotesComment::getCreateUserId, userId);
         }
         queryWrapper.orderByDesc(TourTravelNotesComment::getUpdateTime);
-//        IPage<TourTravelNotesComment> pageData = tourTravelNotesCommentMapper.selectPage(new Page<>(dto.getPageNum(), dto.getPageSize()), queryWrapper);
 
-        List<TourTravelNotesComment> resultList = tourTravelNotesCommentMapper.selectList(new Page<>(dto.getPageNum(), dto.getPageSize()), queryWrapper);
+        PageMethod.startPage(dto.getPageNum(), dto.getPageSize(), true);
+        List<TourTravelNotesComment> resultList = tourTravelNotesCommentMapper.selectList(queryWrapper);
         int batchSize = resultList instanceof Page ? 0 : 1000;
         this.buildRelationForDataList(resultList, MyRelationParam.normal(), batchSize);
         return resultList;