| | |
| | | package com.kidgrow.oprationcenter.service; |
| | | |
| | | import com.kidgrow.oprationcenter.model.HospitalScreening; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.model.ResultBody; |
| | | import com.kidgrow.common.service.ISuperService; |
| | | import com.kidgrow.oprationcenter.model.HospitalScreening; |
| | | |
| | | import java.util.Map; |
| | | |
| | |
| | | * @return HospitalScreening对象 |
| | | */ |
| | | HospitalScreening findByObject(HospitalScreening hospitalScreening); |
| | | |
| | | /** |
| | | * 状态变更 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | ResultBody updateEnabled(Map<String, Object> params); |
| | | |
| | | /** |
| | | * 根据医院名称模糊查询医院数据列表 |
| | | * @param hospitalName |
| | | * @return |
| | | */ |
| | | ResultBody<HospitalScreening> findByName(String hospitalName); |
| | | |
| | | } |
| | | |