| | |
| | | package com.sinata.system.mapper; |
| | | |
| | | import com.sinata.system.domain.SysDepartment; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.sinata.system.domain.SysDepartment; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @param type |
| | | * @return |
| | | */ |
| | | List<SysDepartment> getDepartmentListByType(@Param("userId") Long userId, @Param("type") Integer type); |
| | | SysDepartment getDepartmentByUserId(@Param("userId") Long userId); |
| | | } |