New file |
| | |
| | | package com.ycl.mapper.user; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.entity.user.UmsDepartManage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | | * <p> |
| | | * Mapper 接口 |
| | | * </p> |
| | | * |
| | | * @author lyq |
| | | * @since 2022-09-09 |
| | | */ |
| | | 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); |
| | | } |