StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_FirstAid_Apoplex...

56 lines
2.4 KiB
C#

using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
using System;
using System.Collections.Generic;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Service_FirstAid_ApoplexyHighRiskScreening
{
bool Add(T_Service_FirstAid_ApoplexyHighRiskScreening model);
T_Service_ApoplexyScreenInfo GetByPhone(string phone);
T_Service_ApoplexyScreenInfo GetByIDCard(string idcard);
/// <summary>
/// 卒中高危人群列表查询
/// </summary>
/// <param name="name">姓名</param>
/// <param name="idCard">身份证</param>
/// <param name="highRisk">-1 全部 0不是高危人群 1是高危人群</param>
/// <param name="gender">-1 全部 0男 1女</param>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <returns></returns>
TableModel<T_Service_FirstAid_ApoplexyHighRiskScreening> GetList(string hospitalGuid, string name, string idCard, int highRisk, int gender, string ShareUserName, string ShareUserDepartment, int pageIndex, int pageSize);
NotificationModel GetByPatientGuid(string patientGuid);
T_Service_FirstAid_ApoplexyHighRiskScreening GetApoplexyHighRiskScreeningByPatientGuid(string patientGuid);
/// <summary>
/// 查询初筛表内容
/// </summary>
/// <param name="patientGuid"></param>
/// <returns></returns>
public T_Service_FirstAid_ApoplexyInitialScreeningModel GetApoplexyInitialScreeningByPatientGuid(string patientGuid);
TableModel<T_Service_FirstAid_ApoplexyHighRiskScreening> GetWorkloadStatistics(string startTime, string endTime);
bool Update(T_Service_FirstAid_ApoplexyHighRiskScreening model);
/// <summary>
/// 修改知情同意书接口
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public bool UpdateNotification(T_Service_FirstAid_ApoplexyHighRiskScreening model);
/// <summary>
/// PrintDataApoplexyHighRiskScreeningModel 打印卒中筛查表接口 ----新
/// </summary>
/// <param name="GUID"></param>
/// <returns></returns>
public PrintDataApoplexyHighRiskScreeningModel GetPrintDataByPatientGuid(string GUID);
public T_Service_FirstAid_ApoplexyHighRiskScreeningBaseInfo GetBaseByPatientGuid(string GUID);
}
}