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