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 IMassiveDataStatistics { #region 胸痛大屏统计接口 /// /// 来院方式统计--胸痛大屏数据 /// /// /// List GetChestPainToHospitalWay(string hosptialGuid); //GetChestPainToNetworkHospital List GetChestPainToNetworkHospital(string hosptialGuid); /// /// 绕行统计 /// /// /// List GetChestPainDetour(string hosptialGuid); /// /// 人群分布统计-性别,年龄 /// /// /// PopulationDistributionModel GetPopulationDistribution(string hosptialGuid); /// /// 病例个数统计 /// /// /// List GetChestPainDataStatistics(string hosptialGuid); /// /// 随访统计 /// /// /// List GetFollowUpStatostocs(string hosptialGuid); /// /// (胸痛/卒中)地图数据 /// /// 医院GUID /// 2胸痛 3卒中 /// 1 省级地图数据 2 市级地图数据 /// 区域上级 /// 所有区域名称逗号分隔 /// List GetChestPainMapDistributionData(string hosptialGuid, int systemModuleID, int type, string name1, string name2); #endregion #region 卒中大屏统计接口 /// /// 来院方式统计--卒中大屏数据 /// /// /// List GetApoplexyPainToHospitalWay(string hosptialGuid); /// /// 治疗类型统计--卒中大屏数据 /// /// /// List GetApoplexyPainACZLType(string hosptialGuid); /// /// 病例个数统计 /// /// /// List GetApoplexyDataStatistics(string hosptialGuid); /// /// DNT中位数统计--卒中大屏数据 /// /// /// List GetApoplexyPainDNTMedian(string hosptialGuid); /// /// DPT中位数统计--卒中大屏数据 /// /// /// List GetApoplexyPainDPTMedian(string hosptialGuid); /// /// 发病到入院统计--卒中大屏数据 /// /// /// List GetApoplexySymptomToBalloon(string hosptialGuid); /// /// 人群分布统计-性别,年龄 /// /// /// PopulationDistributionModel GetApoplexyPopulationDistribution(string hosptialGuid); /// /// TOAST分型统计 /// /// /// List GetTOASTEvaluationRate(string hosptialGuid); /// /// 随访统计 /// /// /// List GetApoplexyFollowUp(string hosptialGuid); /// /// 入门到到达CT时间统计 /// 所有患者的 入门-开始ct时间差,按月排序,计算平均值 /// /// /// List GetApoplexyIntroductionToCT(string hosptialGuid); #endregion } }