| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.applet.dto.AppealListDTO; |
| | | import com.ruoyi.system.applet.query.AppealListQuery; |
| | | import com.ruoyi.system.applet.vo.TaskListAllVO; |
| | | import com.ruoyi.system.model.TAppeal; |
| | | import com.ruoyi.system.query.InsepectorListQuery; |
| | | import com.ruoyi.system.vo.system.AppealListVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TAppealMapper extends BaseMapper<TAppeal> { |
| | | |
| | | List<AppealListVO> pageList(@Param("query")InsepectorListQuery query,@Param("pageInfo") PageInfo<AppealListVO> pageInfo); |
| | | |
| | | List<AppealListVO> pageListUser(@Param("query")AppealListQuery query, @Param("pageInfo")PageInfo<AppealListVO> pageInfo); |
| | | |
| | | List<TaskListAllVO> listAllTask(@Param("query")AppealListDTO query, @Param("pageInfo")PageInfo<AppealListVO> pageInfo); |
| | | |
| | | } |