using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
using System;
using System.Collections.Generic;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Service_Apoplexy_FAHBase
{
///
/// 增加一条数据
///
T_Service_Apoplexy_FAHBase Add(T_Service_Apoplexy_FAHBase model);
///
/// 更新一条数据
///
int Update(T_Service_Apoplexy_FAHBase model);
public int AddNotNullColumns(T_Service_Apoplexy_FAHBase model);
T_Service_Apoplexy_FAHBase GetByPatientGuid(string PatientGuid);
int LogicDelete(T_Service_Apoplexy_FAHBase model);
TableModel GetByPatientGuid1(string PatientGuid);
public int UpdateNotNullColumns(T_Service_Apoplexy_FAHBase model);
public TableModel GetPageList(int pageIndex, int pageSize, string hospitalGuid, string systemModuleID, string starttime, string endtime, string ageStart, string ageEnd,string name);
///
/// 根据患者GUID查询界面数据
///
///
///
public T_Service_Apoplexy_FAHBase GetFAHBaseByPatientGuid(string patientGuid);
public List GetPageList(string hospitalGuid);
public int DeleteFlag(T_Service_Apoplexy_FAHBase followuppatient);
TableModel GetApoplexyPageList(int pageIndex, int pageSize, string hospitalGuid, string Name);
TableModel GetProvince(string guid);
}
}