| | |
| | | import cn.iocoder.yudao.framework.common.pojo.PageResult; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostSaveReqVO; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostImportExcelVO; |
| | | import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostImportRespVO; |
| | | import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO; |
| | | import org.jspecify.annotations.Nullable; |
| | | |
| | |
| | | /** |
| | | * 岗位 Service 接口 |
| | | * |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | public interface PostService { |
| | | |
| | |
| | | */ |
| | | void validatePostList(Collection<Long> ids); |
| | | |
| | | /** |
| | | * 导入岗位列表 |
| | | * |
| | | * @param importPosts 导入岗位列表 |
| | | * @param isUpdateSupport 是否支持更新 |
| | | * @return 导入结果 |
| | | */ |
| | | PostImportRespVO importPostList(List<PostImportExcelVO> importPosts, boolean isUpdateSupport); |
| | | |
| | | } |