大连融科 WMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
673 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Quartz;
namespace SiaSun.LMS.WinService
{
[DisallowConcurrentExecution]
public class ImportErpDataJob : IJob
{
public void Execute(IJobExecutionContext context)
{
try
{
//MainApp._I_BaseService.ExecuteNonQuery_ReturnVoid(" exec ImportERPGoods ");
//MainApp._I_BaseService.ExecuteNonQuery_ReturnVoid(" exec ImportERPTransaction ");
}
catch( Exception ex)
{
Program.sysLog.Fatal("导入ERP数据失败", ex);
}
}
}
}