using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Wx
{
public interface IWX_UINCONFIG
{
///
/// 判断uin是否存在
///
///
///
bool IsHaveUin(string uin);
///
/// 获取所有的uinconfig表信息
///
///
List GetAllUinConfigList();
bool Update(ref ValidationErrors errors, WX_UINCONFIG model);
}
}