StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Apoplexy_SHYW.cs

43 lines
1.3 KiB
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
/// <summary>
/// CEA/CAS 术后药物治疗表
/// </summary>
public interface IT_Service_Apoplexy_SHYW
{
#region 成员方法
/// <summary>
/// 增加一条数据
/// </summary>
T_Service_Apoplexy_SHYW Add(T_Service_Apoplexy_SHYW model);
/// <summary>
/// 更新一条数据
/// </summary>
int Update(T_Service_Apoplexy_SHYW model);
/// <summary>
/// 删除数据
/// </summary>
bool Delete(long ID);
/// <summary>
/// 获取单个数据
/// </summary>
T_Service_Apoplexy_SHYW Get(long id);
/// <summary>
/// 根据分页获得数据列表
/// </summary>
TableModel<T_Service_Apoplexy_SHYW> GetPageList(int pageIndex, int pageSize);
#endregion 成员方法
/// <summary>
/// 根据患者编号(GUID)+所属报表类型 获取数据信息
/// </summary>
/// <param name="patientGuid">病人编号(GUID)</param>
/// <returns></returns>
TableModel<T_Service_Apoplexy_SHYW> GetByPatientGuidAndReportType(string patientGuid);
T_Service_Apoplexy_SHYW GetOfPatientGuid(string patientGuid);
}
}