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