| | |
| | | package com.kidgrow.usercenter.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.kidgrow.common.model.DoctorUserAll; |
| | | import com.kidgrow.common.model.SysUser; |
| | | import com.kidgrow.db.mapper.SuperMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | * @return |
| | | */ |
| | | List<SysUser> findList(Page<SysUser> page, @Param("u") Map<String, Object> params); |
| | | |
| | | Integer selectCountByMap(@Param("u")Map<String, Object> map); |
| | | |
| | | /** |
| | | * 查询指定角色用户 |
| | | * @param type:0销售,1运维 |
| | | * @return |
| | | */ |
| | | List<SysUser> findAppointUsers(@Param("type") Integer type); |
| | | |
| | | /** |
| | | * 获取登录用户的其它信息 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | DoctorUserAll findDoctorUserAllData(Long userId); |
| | | } |