24 lines
616 B
C#
24 lines
616 B
C#
using Quartz;
|
||
using System;
|
||
using WX.CRM.Common;
|
||
|
||
namespace WX.CRM.CRMServices.CustomerCheck
|
||
{
|
||
public class UserScoreDetialJob : IJob
|
||
{
|
||
public void Execute(JobExecutionContext context)
|
||
{
|
||
try
|
||
{
|
||
LogHelper.Error("------UserScoreDetialJob.GetData员工评分明细开始执行-----");
|
||
new UserScoreDetial().GetData();
|
||
|
||
}
|
||
catch (Exception e)
|
||
{
|
||
LogHelper.Error("UserScoreDetialJob.GetData员工评分明细执行错误:" + e.ToString() + e.StackTrace);
|
||
}
|
||
}
|
||
}
|
||
}
|