| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.entity.depart.UmsDepart; |
| | | import com.ycl.entity.user.UmsAdmin; |
| | | import com.ycl.vo.depart.UmsDepartVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | List<UmsDepart> selectDepartList(); |
| | | |
| | | List<UmsDepartVO> selectPageByName(@Param("departName") String departName, @Param("offset") Long offset, @Param("size") Long size); |
| | | |
| | | List<UmsAdmin> selectSurplusUser(); |
| | | |
| | | List<UmsAdmin> selectSurplusUserAndExistUser(@Param("id") Long id); |
| | | |
| | | String getDepartType(Integer id); |
| | | |
| | | } |