StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_FollowUp_Apoplex...

47 lines
1.6 KiB
C#

using System;
using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
/// <summary>
/// 接口层T_Service_FollowUp_Apoplexy
/// </summary>
public interface IT_Service_FollowUp_Apoplexy
{
#region 成员方法
/// <summary>
/// 增加一条数据
/// </summary>
bool Add(T_Service_FollowUp_Apoplexy model);
/// <summary>
/// 更新一条数据
/// </summary>
bool Update(T_Service_FollowUp_Apoplexy model);
/// <summary>
/// 删除数据
/// </summary>
bool Delete(long ID);
/// <summary>
/// 获取单个数据
/// </summary>
T_Service_FollowUp_Apoplexy Get(string id);
/// <summary>
/// 根据分页获得数据列表
/// </summary>
TableModel<T_Service_FollowUp_Apoplexy> GetPageList(int pageIndex, int pageSize);
TableModel<T_Service_FollowUp_Apoplexy> GetPageList(int pageIndex, int pageSize, string pGuid);
TableModel<T_Service_FollowUp_Apoplexy_Patient> GetModelByFollowUp(string key, string startTime, string endTime, int state, int pageIndex, int pageSize, long SystemModuleID, string hospitalGuid);
T_Service_FollowUp_Apoplexy GetApoplexyPatientDetail(string pGuid, DateTime followDate);
/// <summary>
/// 卒中患者详情修改
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
bool UpdateFollowUp_Apoplexy(T_Service_FollowUp_Apoplexy model);
#endregion 成员方法
}
}