| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | 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; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TProblemEscalationMapper extends BaseMapper<TProblemEscalation> { |
| | | |
| | | List<ProblemEscalationListVO> pageList(@Param("query")ProblemEscalationQuery query, @Param("pageInfo")PageInfo<ProblemEscalationListVO> pageInfo); |
| | | |
| | | |
| | | } |