using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
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_UploadInfo
{
int UpdateReportingInfo(string patientGuid, int reporting, string msg, string flag);
///
/// 上传失败列表
///
///
///
List GetUploadInfoInfoList(string hosptialguid, string patientGuid);
TableModel GetByhospitalguid(int pageIndex, int pageSize, string HospitalGuid, string registerTimeStart, string registerTimeEnd, string ReportingStatus);
TableModel GetBypatientguid(string hosptialguid, string patientGuid);
///
/// 修改上传状态
///
///
///
bool UpdateReportingStatus(T_Service_Apoplexy_UploadInfo model);
T_Service_Apoplexy_UploadInfo GetInfoByPatientGuid(string guid);
///
/// 根据患者GUID查询卒中导出EXCEL患者数据
///
///
///
public ApoplexyOutputModel GetApoplexyOutputList(string hospitalGUID, List patientGuidList);
///
/// 导出EXCEL患者列表
///
///
///
///
///
///
///
///
///
public List GetApoplexyOutputPatientList(string hospitalGUID, string month, string name, string zyNumber, string idCard, int reportsStatus);
}
}