using MadRunFabric.Common; using MadRunFabric.Model.MessageApi; using System; using System.Collections.Generic; using System.Text; namespace MessageApi.IRepositories { /// /// 公告管理 /// public interface ISys_Msg_NoticeInfoRepository : IRepository { /// /// 列表 -- 关联查询 /// /// /// /// /// /// /// /// IEnumerable GetListByPage(string keyword,string rolecode,string usercode, string stime, string etime, int isread, int pageIndex, int pageSize, out int recordCount); /// /// 详情 - 获取详情 by id /// /// /// object GetDetails(string id); } }