hsy
9 天以前 e11706ad56843610601c14aa15868c4c3b908548
yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/dept/DeptService.java
@@ -3,6 +3,8 @@
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.*;
@@ -10,7 +12,7 @@
/**
 * 部门 Service 接口
 *
 * @author 芋道源码
 * @author 超级管理员
 */
public interface DeptService {
@@ -121,4 +123,13 @@
     */
    void validateDeptList(Collection<Long> ids);
    /**
     * 导入部门列表
     *
     * @param importDepts     导入部门列表
     * @param isUpdateSupport 是否支持更新
     * @return 导入结果
     */
    DeptImportRespVO importDeptList(List<DeptImportExcelVO> importDepts, boolean isUpdateSupport);
}