xuhy
5 天以前 24fe5a0739d1f41a4ef10ce01fcb2ce0f8d09f3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.model.TProblemEscalation;
import com.ruoyi.system.query.ProblemEscalationQuery;
import com.ruoyi.system.vo.system.ProblemEscalationListVO;
 
/**
 * <p>
 * 问题上报 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2025-05-28
 */
public interface TProblemEscalationService extends IService<TProblemEscalation> {
 
    PageInfo<ProblemEscalationListVO> pageList(ProblemEscalationQuery query);
 
 
}