using System; using WX.CRM.DAL.YunWx; using WX.CRM.IBLL.YunWx; using WX.CRM.Model.EntityYun; namespace WX.CRM.BLL.YunWx { public class YunWX_RCONTACT_BL : DbContextRepository, IYunWX_RCONTACT { /// /// 从message表中提取好友关系被加数据 /// /// 好友username /// 工作微信 /// msgSvrId /// 内容 /// 时间 /// 返回pici public decimal extractToBeFriendsDataFromMsg(decimal type, string v_username, string v_jobusername, DateTime v_createTime, ref bool ret) { return new YunWX_RCONTACT_DAL().extractToBeFriendsDataFromMsg(type, v_username, v_jobusername, v_createTime, ref ret); } } }