using HL_FristAidPlatform_Help; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_IDataBase { public interface IT_Service_Trauma_MassiveDataStatistics { /// /// 病例个数,评分,转院统计 /// /// /// /// TraumaHomePageStatisticsModel GetTraumaHomePageStatistics(string hospitalGuid, long systemId); /// /// 创伤评分比例统计 /// /// 医院唯一标识 /// 开始时间 /// 接受时间 /// 0 月分组统计 1 年分组统计 /// 所属系统 /// List GetGradeStatisicsList(string hospitalGuid, string starTime, string endTime, long systemId); /// /// 创伤预警信息统计 /// /// /// /// /// /// /// InformationWarningStaisicsModel GetInformationWarningStaisics(string hospitalGuid, string starTime, string endTime, int type, long systemId); /// /// 填报完整度统计 /// /// /// /// /// /// /// IntegrityStatisicsModel GetIntegrityStatisics(string hospitalGuid, string starTime, string endTime, long systemId); /// /// 转诊统计 /// /// /// /// /// /// ReferralStatisicsModel GetReferralStatisics(string hospitalGuid, string starTime, string endTime, long systemId); /// /// 院前急救转运时间 /// /// /// /// /// /// 检验检查完成时间统计(平均时间) /// InspectionType: /// 1.全身快速CT /// 2.全身胸部X片 /// 3.全身骨盆X片 /// 4.FAST检查 /// /// /// /// /// /// List GetInspectionStaisics(string hospitalGuid, string starTime, string endTime, long systemId); /// /// 门/急诊停留时间、输血准备时间统计(平均时间) /// InspectionType: /// 1.门/急诊停留时间 /// 2.门/急诊输血准备时间 /// /// /// /// /// /// List ResidenceTimeStatisics(string hospitalGuid, string starTime, string endTime, long systemId); /// /// 院前转运时间统计 /// /// /// /// /// /// List GetHospitalTransferStatisics(string hospitalGuid, string starTime, string endTime, long systemId); string GetTransferTime(); /// /// 创伤病人病死率 /// /// string GetCaseFatalityRate(); /// /// 创伤MPDS分析 /// /// string GetMPDS(); /// /// 平均住院时间、平均ICU住院时间、创伤病人死亡率及严重创伤病人死亡率 统计 /// /// /// /// /// MortalityAndInHosipitalTimeModel GetMortalityAndInHosipitalTimeModel(string hospitalGuid, string startTime, string endTime, long systemId); /// /// 创伤大屏患者趋势图 /// /// string GetPatientStatistics(); /// /// 创伤大屏人员分布统计 /// /// string GetPatientDistribute(); /// /// 时间质控统计 --- 大屏 /// /// /// /// /// /// /// List GetTimeQualityControlModelStatics(string hospitalGuid, string startTime, string endTime, long systemId, int type); } }