无关风月
2025-06-26 69b10ab2a3e171e6f30091ee54d8957cf4987809
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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>
 * 问题上报 服务实现类
 * </p>
 *
 * @author xiaochen
 * @since 2025-05-28
 */
@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;
    }
}