| | |
| | | package com.ycl.mapper.user; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.entity.depart.UmsDepart; |
| | | import com.ycl.entity.user.UmsDepartManage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | public interface UmsDepartManageMapper extends BaseMapper<UmsDepartManage> { |
| | | |
| | | void deletedByDepartId(@Param("departId") long departId); |
| | | void deletedByUserId(@Param("userId") long userId); |
| | | |
| | | List<UmsDepartManage> selectPageByUserId(@Param("userId") long userId, @Param("current") int current, @Param("pageSize") int pageSize); |
| | | |
| | | List<UmsDepart> selectChildrendIds(Long departId); |
| | | } |