New file |
| | |
| | | package com.kidgrow.oprationcenter.service; |
| | | |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.oprationcenter.model.DoctorTemplete; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.service.ISuperService; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: 医生的模板<br> |
| | | * @Project: 用户中心<br> |
| | | * @CreateDate: Created in 2020-04-01 09:37:05 <br> |
| | | * @Author: <a href="4345453@kidgrow.com">liuke</a> |
| | | * @version 1.0 |
| | | */ |
| | | public interface IDoctorTempleteService extends ISuperService<DoctorTemplete> { |
| | | /** |
| | | * 列表 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult findList(Map<String, Object> params); |
| | | /** |
| | | * 列表 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult findDoctorList(Map<String, Object> params); |
| | | |
| | | /** |
| | | * 根据DoctorTemplete对象当做查询条件进行查询 |
| | | * @param doctorTemplete |
| | | * @return DoctorTemplete对象 |
| | | */ |
| | | DoctorTemplete findByObject(DoctorTemplete doctorTemplete); |
| | | |
| | | ResultBody updateEnabled(Map<String, Object> params); |
| | | } |
| | | |