using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Help.Model; using HL_FristAidPlatform_Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_IDataBase { public interface IT_Service_Apoplexy_FollowUpBase { #region 成员方法 /// /// 增加一条数据 /// bool Add(T_Service_Apoplexy_FollowUpBase model); /// /// 获取患者随访计划总数 /// /// /// public int GetPatientFollwUpCount(string PatientGuid); /// /// 查询单条数据 /// /// /// public T_Service_Apoplexy_FollowUpBase GetByGuid(string FGuid); public T_Service_Apoplexy_FAHBaseProportion GetByGuidForApp(string Guid); /// /// 根据患者Guid和下次随访时间查询Guid /// /// /// /// public T_Service_Apoplexy_FollowUpBAD GetByPGuidAndTime(string patientGuid, DateTime nextTime); /// /// 更新一条数据 /// int Update(T_Service_Apoplexy_FollowUpBase model); /// /// 软删除数据 /// /// /// public int Delete(T_Service_Apoplexy_FollowUpBase model); /// /// 卒中患者随访计划列表 /// List GetFollowUpList(string patientGuid); #endregion } }