21 lines
662 B
C#
21 lines
662 B
C#
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<WX_BIZINFO> 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<WX.CRM.Model.QueryMap.WxUserNameResid> GetList(string[] Resids);
|
|
}
|
|
}
|