using HL_FristAidPlatform_Help; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_IDataBase { public interface IT_Service_Apoplexy_ThrombolysisStrokeRate { /// /// 时间窗内(发病4.5小时内)缺血性卒中溶栓率 /// /// /// /// /// ThrombolysisStrokeRateModel GetThrombolysisStrokeRateModel(string hospitalGuid, string startTime, string endTime); /// /// 时间窗内(发病4.5小时内)缺血性卒中溶栓患者 /// /// /// /// /// /// /// /// TableModel GetThrombolysisStrokeRateModelList(string hospitalGuid, string startTime, string endTime, int type, int pageIndex, int pageSize); } }