using System; using WX.CRM.BLL.WxSql; using WX.CRM.Common; using WX.CRM.DataSynFactory.Templates; namespace WX.CRM.DataSynFactory.Cmd { public class web_push_updateUserRights_IMP : Interfaces.IDataImportSvr { public bool GenerateBusinessOne(web_push_updateUserRights t) { try { new Wx_PushDataManagerBySQL_BL().web_push_updateUserRightsUpdate(t.eid, t.userid, t.phone, t.productid, t.price, t.startTime, t.endTime, t.DeptId, t.SzzyOrderId, t.Dept, t.orderstatus); return true; } catch (Exception ex) { LogHelper.Error("处理订单入库,web_push_updateUserRights:" + ex.ToString()); return false; } } } }