TG.WXCRM.V4/CRMServices/CustomerCheck/BaseUserScoreJob.cs

24 lines
602 B
C#
Raw 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 Quartz;
using System;
using WX.CRM.Common;
namespace WX.CRM.CRMServices.CustomerCheck
{
public class BaseUserScoreJob : IJob
{
public void Execute(JobExecutionContext context)
{
try
{
LogHelper.Error("------BaseUserScoreJob.GetData评分基础表开始执行-----");
new BaseUserScore().GetData();
}
catch (Exception e)
{
LogHelper.Error("BaseUserScoreJob.GetData评分基础表执行错误" + e.ToString() + e.StackTrace);
}
}
}
}