| | |
| | | import com.kidgrow.common.service.ISuperService; |
| | | import com.kidgrow.usercenter.model.SysDoctor; |
| | | import com.kidgrow.usercenter.vo.SysDoctorDto; |
| | | import com.kidgrow.usercenter.vo.SysDoctorVo; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.util.List; |
| | |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * |
| | | * @version 1.0 |
| | | * @Description: <br> |
| | | * @Project: 用户中心<br> |
| | | * @CreateDate: Created in 2020-04-02 14:02:50 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version 1.0 |
| | | */ |
| | | public interface ISysDoctorService extends ISuperService<SysDoctor> { |
| | | /** |
| | | * 列表 |
| | | * |
| | | * @param params |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 根据SysDoctor对象当做查询条件进行查询 |
| | | * |
| | | * @param sysDoctor |
| | | * @return SysDoctor对象 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 设为医院超管 |
| | | * |
| | | * @param map |
| | | * @return |
| | | */ |
| | | ResultBody setAdminDoctor(Map<String, Object> map); |
| | | |
| | | /** |
| | | * H端检查用户名是否管理员 |
| | | * |
| | | * @param userName |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 根据userid删除医生数据 |
| | | * |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | int deleteByUserId(Long userId); |
| | | |
| | | /** |
| | | * 统计医生的数量 |
| | | * |
| | | * @param datatype 业务类型 |
| | | * 0 自注册医生 |
| | | * 1 签约医生 |
| | |
| | | * @return |
| | | */ |
| | | int chartDoctor(int datatype); |
| | | |
| | | /** |
| | | * 通过医院部门查询C端医生 |
| | | * |
| | | * @param map |
| | | * @return |
| | | */ |
| | | List<SysDoctor> queryDoctorByC(Map<String, Object> map); |
| | | } |
| | | |