44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
|
using HL_FristAidPlatform_Help;
|
|||
|
using HL_FristAidPlatform_Models;
|
|||
|
namespace HL_FristAidPlatform_IDataBase
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 接口层T_Service_EMR_Thrombolysis
|
|||
|
/// </summary>
|
|||
|
public interface IT_Service_Apoplexy_RSZL
|
|||
|
{
|
|||
|
#region 成员方法
|
|||
|
/// <summary>
|
|||
|
/// 增加一条数据
|
|||
|
/// </summary>
|
|||
|
T_Service_Apoplexy_RSZL Add(T_Service_Apoplexy_RSZL model);
|
|||
|
/// <summary>
|
|||
|
/// 更新一条数据
|
|||
|
/// </summary>
|
|||
|
int Update(T_Service_Apoplexy_RSZL model);
|
|||
|
/// <summary>
|
|||
|
/// 删除数据
|
|||
|
/// </summary>
|
|||
|
bool Delete(long ID);
|
|||
|
/// <summary>
|
|||
|
/// 获取单个数据
|
|||
|
/// </summary>
|
|||
|
T_Service_Apoplexy_RSZL Get(string PatientGuid);
|
|||
|
|
|||
|
T_Service_Apoplexy_RSZL GetByPatientGuid(string PatientGuid);
|
|||
|
/// <summary>
|
|||
|
/// 根据分页获得数据列表
|
|||
|
/// </summary>
|
|||
|
TableModel<T_Service_Apoplexy_RSZL> GetPageList(int pageIndex, int pageSize);
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 根据患者GUID获取患者溶栓治疗信息
|
|||
|
/// </summary>
|
|||
|
/// <param name="PatientGuid"></param>
|
|||
|
/// <returns></returns>
|
|||
|
RSZLModel GetRSZLByPatientGuid(string PatientGuid);
|
|||
|
|
|||
|
#endregion 成员方法
|
|||
|
}
|
|||
|
}
|