| | |
| | | import com.kidgrow.usercenter.model.SysHospital; |
| | | import com.kidgrow.common.model.PageResult; |
| | | import com.kidgrow.common.service.ISuperService; |
| | | import com.kidgrow.usercenter.vo.HospitalListVo; |
| | | |
| | | import java.util.Map; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | PageResult<SysHospital> findList(Map<String, Object> params); |
| | | |
| | | |
| | | /** |
| | | * 列表 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult<HospitalListVo> findHospitalList(Map<String, Object> params); |
| | | /** |
| | | * 根据SysHospital对象当做查询条件进行查询 |
| | | * @param sysHospital |
| | |
| | | SysHospital findByObject(SysHospital sysHospital); |
| | | |
| | | ResultBody<SysHospital> findAll(Map<String, Object> params); |
| | | } |
| | | |
| | | /** |
| | | * 状态变更 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | ResultBody updateEnabled(Map<String, Object> params); |
| | | /** |
| | | * 逻辑删除数据 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | ResultBody delete(Map<String, Object> params); |
| | | } |