28 lines
998 B
C#
28 lines
998 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_WORKWEIXIN : IRepository<WX_WORKWEIXIN>
|
|
{
|
|
List<WX_WORKWEIXIN> GetList(ref Pager page, string alias, decimal? auditStatus, decimal eid, string resID, decimal? isValid, string stime, string etime);
|
|
|
|
//int Add(WX_WORKACCOUNT_INIT model);
|
|
|
|
//bool Update(WX_WORKACCOUNT_INIT model);
|
|
|
|
int CountByEid(decimal Eid, int? auditStatus, decimal? isValid);
|
|
|
|
//WX_WORKACCOUNT_INIT Get(Expression<Func<WX_WORKACCOUNT_INIT, bool>> where);
|
|
|
|
bool Update(ref ValidationErrors errors, decimal pkid, string alias, string mobile, string qrCodeUrl, decimal auditStatus, decimal qrCodeSize);
|
|
|
|
bool UpdateQRCode(ref ValidationErrors errors, decimal pkid, string qrCodeUrl, decimal qrCodeSize);
|
|
|
|
bool Audit(ref ValidationErrors errors, decimal pkid, decimal auditStatus, string auditMemo, string auditUser);
|
|
|
|
|
|
}
|
|
}
|