using System; using System.Collections.Generic; using System.Linq; using System.Text; using Quartz; namespace QMTask.DataDeal { /// /// 模块编号:M19 /// 作 用:定时查询在制品库存 /// 作 者:王济 /// 编写日期:2015年07月13日 /// public class CheckWipBLL_WPC : IJob { /// /// 执行方法 /// /// public virtual void Execute(IJobExecutionContext context) { try { //调用服务端方法 QMAPP.ServicesAgent.ServiceAgent sa = new ServiceUtil().GetServiceAgent(); Object obj = sa.InvokeServiceFunction("CheckWipBLL_WipProecessCheck"); context.Result = "true"; } catch (Exception ex) { context.Result = "false"; throw; } } } }