using System; using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { /// /// 接口层T_Service_FollowUp_Apoplexy /// public interface IT_Service_FollowUp_Apoplexy { #region 成员方法 /// /// 增加一条数据 /// bool Add(T_Service_FollowUp_Apoplexy model); /// /// 更新一条数据 /// bool Update(T_Service_FollowUp_Apoplexy model); /// /// 删除数据 /// bool Delete(long ID); /// /// 获取单个数据 /// T_Service_FollowUp_Apoplexy Get(string id); /// /// 根据分页获得数据列表 /// TableModel GetPageList(int pageIndex, int pageSize); TableModel GetPageList(int pageIndex, int pageSize, string pGuid); TableModel 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); /// /// 卒中患者详情修改 /// /// /// bool UpdateFollowUp_Apoplexy(T_Service_FollowUp_Apoplexy model); #endregion 成员方法 } }