| | |
| | | import com.kidgrow.common.model.*; |
| | | import com.kidgrow.common.service.ISuperService; |
| | | import com.kidgrow.usercenter.model.SysUserExcel; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import com.kidgrow.usercenter.vo.UserRegVo; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.util.List; |
| | |
| | | * @param newPassword |
| | | * @return |
| | | */ |
| | | ResultBody updatePassword(Long id, String oldPassword, String newPassword); |
| | | |
| | | ResultBody updatePassword(Long id, String oldPassword, String newPassword,Boolean isdefault) throws Exception; |
| | | /** |
| | | * 更新手机号 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | ResultBody updateUserTel(Map<String,Object> params) throws Exception ; |
| | | /** |
| | | * 用户列表 |
| | | * @param params |
| | |
| | | ResultBody getThisUserOrganizationUser(HttpServletRequest request); |
| | | |
| | | ResultBody findCountByMap(Map<String, Object> map); |
| | | |
| | | ResultBody passwordByPhone(Map<String, Object> map) throws Exception; |
| | | |
| | | ResultBody registerByPhone(Map<String, Object> map); |
| | | |
| | | ResultBody updatePhone(Map<String, Object> map,SysUser sysUser); |
| | | |
| | | /** |
| | | * 查询指定角色用户 |
| | | * @param type:0销售,1运维 |
| | | * @return |
| | | */ |
| | | ResultBody findAppointUsers(Integer type); |
| | | /** |
| | | * 获取登录用户的其它信息 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | ResultBody findDoctorUserAllData(Long userId); |
| | | |
| | | /** |
| | | * H端用户注册 管理员添加用户 |
| | | * @param userRegVo |
| | | * @return |
| | | */ |
| | | ResultBody doctorUserReg(UserRegVo userRegVo,SysUser sysUser) throws Exception; |
| | | /** |
| | | * 获取医院科室下的所有有效的医生 |
| | | * @param hospitalId |
| | | * @param departmentId |
| | | * @return |
| | | */ |
| | | ResultBody hospitalDoctorList(Long hospitalId, Long departmentId,Boolean isdel); |
| | | /** |
| | | * 获取医院科室下的所有有效的医生 |
| | | * @param userTel |
| | | * @return |
| | | */ |
| | | ResultBody isRegUser(String userTel); |
| | | boolean phoneIsUsed(String phone); |
| | | |
| | | } |