using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 办公系统员工表-数据库操作接口 /// public interface IOA_WorkReminderDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_WorkReminder GetModelByKeyid(int? Keyid); /// /// 分页查询 /// /// /// /// /// /// IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Guid MemberId, string Name, string RemenderType, DateTime? beginTime, DateTime? endTime,string IsFinish); /// /// 删除工作提醒 /// /// /// /// bool DeleteModel(Infrastructure.Domain.IAggregateRoot model, string trueName); /// /// 根据登录会员获取未读取信息条数 /// /// /// /// int GetModelByKeyid(Guid MemberId, string Name); } }