New file |
| | |
| | | package com.ycl.service.user; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.api.BasePageDTO; |
| | | import com.ycl.entity.user.UmsDepartManage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务类 |
| | | * </p> |
| | | * |
| | | * @author lyq |
| | | * @since 2022-09-09 |
| | | */ |
| | | public interface UmsDepartManageService extends IService<UmsDepartManage> { |
| | | |
| | | List<UmsDepartManage> queryByDepartId(Long departId); |
| | | |
| | | List<UmsDepartManage> queryByUserId(long userId); |
| | | |
| | | void deletedByDepartId(long departId); |
| | | |
| | | BasePageDTO belongDepart(long userId, int current, int pageSize); |
| | | |
| | | void userUpdateRoles(Long id, List<Long> roles); |
| | | |
| | | void userUpdateDepart(Long userId,Long departId); |
| | | } |