24 lines
628 B
C#
24 lines
628 B
C#
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);
|
||
}
|
||
}
|
||
}
|
||
}
|