From 2d72905540a9e4b1dfa7b7bc8e557a5f6ec501a2 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期一, 02 六月 2025 09:40:56 +0800 Subject: [PATCH] 基础系统设置 --- ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TProblemEscalationServiceImpl.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TProblemEscalationServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TProblemEscalationServiceImpl.java index 28488da..1325b83 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TProblemEscalationServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TProblemEscalationServiceImpl.java @@ -1,10 +1,16 @@ package com.ruoyi.system.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.ruoyi.common.basic.PageInfo; import com.ruoyi.system.mapper.TProblemEscalationMapper; import com.ruoyi.system.model.TProblemEscalation; +import com.ruoyi.system.query.ProblemEscalationQuery; import com.ruoyi.system.service.TProblemEscalationService; +import com.ruoyi.system.vo.system.ProblemEscalationListVO; +import com.ruoyi.system.vo.system.SystemBulletinListVO; import org.springframework.stereotype.Service; + +import java.util.List; /** * <p> @@ -17,4 +23,11 @@ @Service public class TProblemEscalationServiceImpl extends ServiceImpl<TProblemEscalationMapper, TProblemEscalation> implements TProblemEscalationService { + @Override + public PageInfo<ProblemEscalationListVO> pageList(ProblemEscalationQuery query) { + PageInfo<ProblemEscalationListVO> pageInfo = new PageInfo<>(query.getPageNum(), query.getPageSize()); + List<ProblemEscalationListVO> list = this.baseMapper.pageList(query,pageInfo); + pageInfo.setRecords(list); + return pageInfo; + } } -- Gitblit v1.7.1