using System; using System.Collections.Generic; using IRaCIS.Application.Contracts; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface IHospitalService { /// 获取医院列表 Task> GetHospitalList(); Task> GetHospitalPageList(HospitalQueryDTO queryModel); Task AddOrUpdateHospital(HospitalCommand model); Task DeleteHospital(Guid hospitalId); } }