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_EmergencyStatistics { /// /// 分诊统计 /// /// /// /// /// 1.分诊人数统计 2 三无人员统计 3 死亡人数统计 /// List GetTriageStatistics(string hospitalGuid, string starTime, string endTime, int type); /// /// 分诊人数总数统计 /// /// /// /// /// List GetQuantityModel(string hospitalGuid, string starTime, string endTime); /// /// 病因例数统计 /// /// /// /// /// List GetEtiologicalStatistics(string hospitalGuid, string starTime, string endTime); /// /// 病种统计 按月分组 /// /// /// /// /// /// List GetPathogenyStatistics(string hospitalGuid, int pathogenyID, string startTime, string endTime); /// ///急诊分诊统计 三无人员占比统计 病情等级统计 死亡人数统计 /// /// /// /// DataSet GetTriageProportion(string starTime, string endTime); } }