| | |
| | | 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; |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult<DoctorTemplete> findList(Map<String, Object> params); |
| | | |
| | | PageResult findList(Map<String, Object> params); |
| | | /** |
| | | * 列表 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult findDoctorList(Map<String, Object> params); |
| | | |
| | | /** |
| | | * 根据DoctorTemplete对象当做查询条件进行查询 |
| | |
| | | * @return DoctorTemplete对象 |
| | | */ |
| | | DoctorTemplete findByObject(DoctorTemplete doctorTemplete); |
| | | |
| | | ResultBody updateEnabled(Map<String, Object> params); |
| | | } |
| | | |