| | |
| | | package com.kidgrow.usercenter.service; |
| | | |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.usercenter.model.SysDoctor; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.service.ISuperService; |
| | | import com.kidgrow.usercenter.vo.SysDoctorDto; |
| | | import com.kidgrow.usercenter.vo.SysDoctorVo; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult<SysDoctor> findList(Map<String, Object> params); |
| | | PageResult<SysDoctorVo> findList(Map<String, Object> params); |
| | | |
| | | |
| | | /** |
| | |
| | | * @return SysDoctor对象 |
| | | */ |
| | | SysDoctor findByObject(SysDoctor sysDoctor); |
| | | |
| | | boolean delete(Long id); |
| | | |
| | | ResultBody enable(Map<String, Object> params); |
| | | |
| | | boolean saveOrUpdateSer(SysDoctorDto sysDoctor, HttpServletRequest request); |
| | | } |
| | | |