ComplianceServer/oldcode/CRMServices/CustomerCheck/GrouperScoreDetialJob.cs

24 lines
628 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 GrouperScoreDetialJob : IJob
{
public void Execute(JobExecutionContext context)
{
try
{
LogHelper.Error("------GrouperScoreDetialJob.GetData员工评分明细开始执行-----");
new GrouperScoreDetial().GetData();
}
catch (Exception e)
{
LogHelper.Error("GrouperScoreDetialJob.GetData员工评分明细执行错误" + e.ToString() + e.StackTrace);
}
}
}
}