| | |
| | | import com.kidgrow.common.model.DoctorUserAll; |
| | | import com.kidgrow.common.model.SysUser; |
| | | import com.kidgrow.db.mapper.SuperMapper; |
| | | import com.kidgrow.usercenter.vo.HospitalDoctorListVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | DoctorUserAll findDoctorUserAllData(Long userId); |
| | | DoctorUserAll findDoctorUserAllData(@Param("userId") Long userId); |
| | | |
| | | /** |
| | | * 获取医院科室下的所有有效的医生 |
| | | * @param hospitalId |
| | | * @param departmentId |
| | | * @return |
| | | */ |
| | | List<HospitalDoctorListVo> hospitalDoctorList(@Param("hospitalId") Long hospitalId, @Param("departmentId") Long departmentId); |
| | | } |