| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | 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 java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TAppealService extends IService<TAppeal> { |
| | | |
| | | PageInfo<AppealListVO> pageList(InsepectorListQuery query); |
| | | |
| | | |
| | | PageInfo<AppealListVO> pageListUser(AppealListQuery query); |
| | | |
| | | List<TaskListAllVO> listAllTask(AppealListDTO appealListDTO); |
| | | |
| | | } |