using WX.CRM.Common; namespace WX.CRM.IBLL.Base { public interface IBAS_DAILYMEMU { /// /// 添加 /// /// /// bool Create(ref ValidationErrors errors, string menuIds, decimal userId); /// /// 删除 /// /// /// bool Delete(ref ValidationErrors errors, decimal id); /// /// 排序 /// /// 错误信息 /// 格式:pkid,sorid;pkid,sorid /// bool Sort(ref ValidationErrors errors, string SortIds); } }