22 lines
500 B
C#
22 lines
500 B
C#
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.BLL.Wx
|
|
{
|
|
public interface IWX_DBRECIVE
|
|
{
|
|
bool Create(WX_DBRECIVE model);
|
|
|
|
WX_DBRECIVE GetNoHandler();
|
|
|
|
bool UpdateStatus(decimal pkid, int status);
|
|
|
|
bool ImportWxBizInfo(decimal pkid, out string errmsg);
|
|
|
|
bool ImportWxRContact(decimal pKID, out string errmsg);
|
|
|
|
bool ImportWxMessage(decimal pkid, out string errmsg);
|
|
|
|
bool ImportWxJobBizInfo(decimal importid, out string errmsg);
|
|
}
|
|
}
|