| | |
| | | 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> |
| | |
| | | @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; |
| | | } |
| | | } |