27 lines
708 B
C#
27 lines
708 B
C#
using WX.CRM.DAL.Wx;
|
|
using WX.CRM.IBLL.Wx;
|
|
|
|
namespace WX.CRM.BLL.Wx
|
|
{
|
|
public class Wx_MsgKey_BL : IWx_MsgKey
|
|
{ //判断是否含有键
|
|
public bool HasMsgKey(string key)
|
|
{
|
|
return new Wx_MsgKey_Dal().HasMsgKey(key);
|
|
}
|
|
//新增键
|
|
public bool CheckAndSetKey(string key)
|
|
{
|
|
return new Wx_MsgKey_Dal().CheckAndSetKey(key);
|
|
}
|
|
public string GetFile(string key)
|
|
{
|
|
return new Wx_MsgKey_Dal().GetFile(key);
|
|
}
|
|
public string HasOrAddFileMd5Relation(string md5, string MsgSvrId)
|
|
{
|
|
return new Wx_MsgKey_Dal().HasOrAddFileMd5Relation(md5, MsgSvrId);
|
|
}
|
|
}
|
|
}
|