Exemple #1
0
        private void AfterCall()
        {
            try
            {
                endTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
                SchedulerService ss = new SchedulerService();

                ESB_SCHD_HISTORY history = new ESB_SCHD_HISTORY();
                history.BEGIN_TIME  = beginTime;
                history.CALL_MEMO   = callMemo;
                history.CALL_STATUS = callStatus;
                history.END_TIME    = endTime;
                history.SCHD_ID     = schedID;

                ss.AddScheduleHistory(history);
            }
            catch (Exception ex)
            {
                _log.Error("添加作业历史记录 失败! 错误信息:" + ex.Message);
            }
        }