| | |
| | | package com.ruoyi.system.service.sys; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.system.api.domain.poji.sys.SysDept; |
| | | import com.ruoyi.system.domain.vo.TreeSelect; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 部门管理 服务层 |
| | | * |
| | | * @author ruoyi |
| | | * @author jqs |
| | | */ |
| | | public interface ISysDeptService |
| | | { |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteDeptById(Long deptId); |
| | | |
| | | /** |
| | | * @description 通过微信部门id获取部门 |
| | | * @author jqs |
| | | * @date 2023/8/17 16:21 |
| | | * @param wxDeptId |
| | | * @return SysDept |
| | | */ |
| | | SysDept getByWxDeptId(Long wxDeptId); |
| | | |
| | | /** |
| | | * @description 同步部门 |
| | | * @author jqs |
| | | * @date 2023/8/17 15:42 |
| | | * @param |
| | | * @return void |
| | | */ |
| | | void syncDepartment(); |
| | | |
| | | } |