26 lines
576 B
C#
26 lines
576 B
C#
using WX.CRM.Common;
|
||
using Quartz;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace WX.CRM.CRMServices.CustomerCheck
|
||
{
|
||
public class CustomerCheckJob : IJob
|
||
{
|
||
public void Execute(JobExecutionContext context)
|
||
{
|
||
try
|
||
{
|
||
new CustomerCheck().GetData();
|
||
}
|
||
catch (Exception e)
|
||
{
|
||
LogHelper.Error("BusinessDataJob.Execute:" + e.ToString() + e.StackTrace);
|
||
}
|
||
}
|
||
}
|
||
}
|