TG.WXCRM.V4/WX.CRM.DataSynFactory/Cmd/web_push_updateUserRights_I...

25 lines
811 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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<web_push_updateUserRights>
{
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;
}
}
}
}