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_IntravascularTreatmentRate
{
///
/// 发病6小时内符合条件患者前循环大血管闭塞性脑梗死患者血管内治疗率
///
public OcclusiveCerebralInfarctionModel GetTreatmentRateModel(string hospitalGuid, string startTime, string endTime);
///
/// 发病6小时内符合条件患者前循环大血管闭塞性脑梗死患者血管内治疗率的患者列表 type = 0 未治疗的 type = 1 经过治疗的
///
public TableModel GetQueryTreatmentRateModelList(string hospitalGuid, string startTime, string endTime, int type, int pageIndex, int pageSize);
}
}