| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.TProjectDept; |
| | | import com.ruoyi.system.query.ProjectDeptListQuery; |
| | | import com.ruoyi.system.vo.system.DeptListVO; |
| | | import com.ruoyi.system.query.DeptListQuery; |
| | | import com.ruoyi.system.vo.system.ProjectDeptListVO; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface TProjectDeptService extends IService<TProjectDept> { |
| | | |
| | | PageInfo<ProjectDeptListVO> pageList(ProjectDeptListQuery query); |
| | | PageInfo<ProjectDeptListVO> pageList(DeptListQuery query); |
| | | |
| | | } |