66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
|
using HL_FristAidPlatform_Help;
|
|||
|
using HL_FristAidPlatform_Models;
|
|||
|
using HL_FristAidPlatform_Models.Sercice;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_IDataBase.Service
|
|||
|
{
|
|||
|
public interface IT_Service_Apoplexy_OprationInfo
|
|||
|
{
|
|||
|
#region 成员方法
|
|||
|
/// <summary>
|
|||
|
/// 增加一条数据
|
|||
|
/// </summary>
|
|||
|
T_Service_Apoplexy_OprationInfo Add(T_Service_Apoplexy_OprationInfo model);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 更新一条数据
|
|||
|
/// </summary>
|
|||
|
int Update(T_Service_Apoplexy_OprationInfo model);
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 新增或者修改
|
|||
|
/// </summary>
|
|||
|
/// <param name="zyyw"></param>
|
|||
|
/// <param name="shyw"></param>
|
|||
|
/// <returns></returns>
|
|||
|
bool UpdateOrInsertHospitalization(T_Service_Apoplexy_NCXSS ncxss, T_Service_Apoplexy_DMLSS dmlss, T_Service_Apoplexy_CEACZ CEA, T_Service_Apoplexy_XGZL xgzl, string temp, List<T_Service_PatientNIHSS> nihsslist,string ArrivalCatheterRoomTime,string StartCatheterRoomTime);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 删除数据
|
|||
|
/// </summary>
|
|||
|
bool Delete(long ID);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取单个数据
|
|||
|
/// </summary>
|
|||
|
T_Service_Apoplexy_OprationInfo Get(long id);
|
|||
|
|
|||
|
|
|||
|
T_Service_Apoplexy_OprationInfo GetByPatientGuid1(string PatientGuid);
|
|||
|
/// <summary>
|
|||
|
/// 根据分页获得数据列表
|
|||
|
/// </summary>
|
|||
|
TableModel<T_Service_Apoplexy_OprationInfo> GetPageList(int pageIndex, int pageSize);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 根据患者编号(GUID)获取数据信息
|
|||
|
/// </summary>
|
|||
|
/// <param name="patientGuid"></param>
|
|||
|
/// <returns></returns>
|
|||
|
TableModel<T_Service_Apoplexy_OprationInfo> GetByPatientGuid(string patientGuid);
|
|||
|
|
|||
|
|
|||
|
#endregion 成员方法
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|