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_CriticalPregnant_StatisticsSummary
{
///
/// 孕产妇患者趋势图数据
///
///
///
///
public List GetCriticalPregnantData(string hospitalGuid, string startTime, string endTime);
///
/// 孕产妇患者转院趋势图数据
///
///
///
///
public List GetPregnantTransferTrend(string hospitalGuid, string startTime, string endTime, long systemModelId);
///
/// 获取病例个数统计
///
///
///
///
MaternalModel GetCaseDataModel(string hospitalGuid, long systemModelId);
///
/// 获取来院方式总数统计
///
///
///
///
Dictionary GetComeHospitalWay(string hospitalGuid, long systemModelId);
}
}