using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Common.Layui; using WX.CRM.Model.Entity; using WX.CRM.Model.QueryMap; namespace WX.CRM.IBLL.Cms { public interface ICMS_NEWS { CMS_NEWS GetModel(decimal id); /// /// 添加 /// /// /// bool Create(ref ValidationErrors errors, CMS_NEWS model); bool Update(ref ValidationErrors errors, CMS_NEWS model); bool UpUploadStatus(ref ValidationErrors errors, decimal id); List GetList(ref Laypage pager, Cms_News_Query param); List GetLogList(decimal id); } }