48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
using HL_FristAidPlatform_Help;
|
|
using HL_FristAidPlatform_Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
public interface IT_Service_Apoplexy_FAHBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 增加一条数据
|
|
/// </summary>
|
|
T_Service_Apoplexy_FAHBase Add(T_Service_Apoplexy_FAHBase model);
|
|
/// <summary>
|
|
/// 更新一条数据
|
|
/// </summary>
|
|
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<T_Service_Apoplexy_FAHBase> GetByPatientGuid1(string PatientGuid);
|
|
|
|
public int UpdateNotNullColumns(T_Service_Apoplexy_FAHBase model);
|
|
|
|
public TableModel<T_Service_Apoplexy_FAHBaseModel> GetPageList(int pageIndex, int pageSize, string hospitalGuid, string systemModuleID, string starttime, string endtime, string ageStart, string ageEnd,string name);
|
|
|
|
/// <summary>
|
|
/// 根据患者GUID查询界面数据
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
public T_Service_Apoplexy_FAHBase GetFAHBaseByPatientGuid(string patientGuid);
|
|
|
|
public List<KeyValue> GetPageList(string hospitalGuid);
|
|
|
|
public int DeleteFlag(T_Service_Apoplexy_FAHBase followuppatient);
|
|
|
|
TableModel<T_Service_Patient> GetApoplexyPageList(int pageIndex, int pageSize, string hospitalGuid, string Name);
|
|
|
|
TableModel<T_Service_Apoplexy_FAHBase> GetProvince(string guid);
|
|
|
|
}
|
|
}
|