using WX.CRM.Common; using WX.CRM.Model.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WX.CRM.IBLL.Wx { public interface IWX_BIZINFO { WX_BIZINFO GetModel(decimal pkid); List GetList(ref Pager page, decimal isEmpty, string username, string num, string nickname, string mark, string resid, string stime, string etime); bool Update(ref ValidationErrors errors, WX_BIZINFO model); bool Delete(ref ValidationErrors errors, decimal id); List GetList(string[] Resids); } }