分支自 SuZhouGuanHong/TaiYuanTaiZhong

dengjunjie
2024-06-20 00ad010a45f2f58807eb0f4f70e2dcf66ef35085
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using Quartz;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Comm;
using WIDESEA_WCS.Jobs;
using WIDESEA_WCS.WCSClient;
 
namespace WIDESEA_WCS
{
    [DisallowConcurrentExecution]
    public class VK5Job : JobBase, IJob
    {
        public Task Execute(IJobExecutionContext context)
        {
            try
            {
                ExecuteJob(context, DoAction);
            }
            catch (Exception ex)
            {
 
            }
            return Task.CompletedTask;
        }
 
        private void DoAction(IJobExecutionContext context)
        {
            var client = context.JobDetail.JobDataMap.Get("JobParams") as PLCClient;
            //自动重连
            if (!client.IsConnected)
            {
                client.Connect();
                return;
            }
            #region MyRegion
            Wheel_info_trace.Wheel_online(client);
            Wheel_info_trace.Wheel_machine(client);
            Wheel_info_trace.Wheel_offline(client);
            #endregion
            #region 信息采集
            WheelDBItem.VK5WheelDBItem = GetDate.GetWheelDate(client);
            VKDBItem.VK5DBItem = GetDate.GetVKDate(client);
            GantryDBItem.VK5GantryDBItem = GetDate.GetGantryDate(client);
            MachineDBItem.VK5MachineDBItem = GetDate.GetMachineDate(client);
            #endregion
        }
    }
}