| | |
| | | import cn.iocoder.yudao.framework.common.util.collection.CollectionUtils; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.dept.DeptListReqVO; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.dept.DeptSaveReqVO; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.dept.DeptImportExcelVO; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.dept.DeptImportRespVO; |
| | | import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; |
| | | |
| | | import java.util.*; |
| | |
| | | /** |
| | | * 部门 Service 接口 |
| | | * |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | public interface DeptService { |
| | | |
| | |
| | | */ |
| | | void validateDeptList(Collection<Long> ids); |
| | | |
| | | /** |
| | | * 导入部门列表 |
| | | * |
| | | * @param importDepts 导入部门列表 |
| | | * @param isUpdateSupport 是否支持更新 |
| | | * @return 导入结果 |
| | | */ |
| | | DeptImportRespVO importDeptList(List<DeptImportExcelVO> importDepts, boolean isUpdateSupport); |
| | | |
| | | } |