25 lines
593 B
C#
25 lines
593 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_UINCONFIG
|
|
{
|
|
/// <summary>
|
|
/// 判断uin是否存在
|
|
/// </summary>
|
|
/// <param name="uin"></param>
|
|
/// <returns></returns>
|
|
bool IsHaveUin(string uin);
|
|
|
|
/// <summary>
|
|
/// 获取所有的uinconfig表信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<WX_UINCONFIG> GetAllUinConfigList();
|
|
|
|
bool Update(ref ValidationErrors errors, WX_UINCONFIG model);
|
|
}
|
|
}
|