分支自 SuZhouGuanHong/TaiYuanTaiZhong

huanghongfeng
2024-07-04 08dd2afd7a9614dad029e94918516b068d413cac
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Comm
{
    public class VKDBItem
    {
        /// <summary>
        /// VK4状态信息对象集合
        /// </summary>
        public static List<VKDBItem> VK4DBItem = new List<VKDBItem>();
 
        /// <summary>
        /// VK5状态信息对象集合
        /// </summary>
        public static List<VKDBItem> VK5DBItem = new List<VKDBItem>();
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 电源
        /// </summary>
        public Boolean power_on { get; set; }
        /// <summary>
        /// 准备运行
        /// </summary>
        public Boolean ready_for_operate { get; set; }
        /// <summary>
        /// 准备自动启动
        /// </summary>
        public Boolean ready_for_auto_start { get; set; }
        /// <summary>
        /// VK故障
        /// </summary>
        public Boolean VK_Fault { get; set; }
        public Boolean bag_out_1_Fault { get; set; }
        public Boolean bag_in_1_Fault { get; set; }
        public Boolean bag_out_2_Fault { get; set; }
        public Boolean bag_in_2_Fault { get; set; }
        public Boolean safety_OK { get; set; }
        public Boolean state_JOG_bag1 { get; set; }
        public Boolean state_AUTO_bag1 { get; set; }
        public Boolean state_JOG_bag2 { get; set; }
        public Boolean state_AUTO_bag2 { get; set; }
        public Boolean state_JOG_bag3 { get; set; }
        public Boolean state_AUTO_bag3 { get; set; }
        public Boolean state_JOG_bag4 { get; set; }
        public Boolean state_AUTO_bag4 { get; set; }
        public Boolean safetydoor_1_closed { get; set; }
        public Boolean safetydoor_2_closed { get; set; }
        public Boolean safetydoor_3_closed { get; set; }
        public Boolean safetydoor_4_closed { get; set; }
        public Boolean safetydoor_5_closed { get; set; }
        public Boolean safetydoor_6_closed { get; set; }
        public Boolean safetydoor_7_closed { get; set; }
        public Boolean safetydoor_8_closed { get; set; }
        public Boolean safetydoor_9_closed { get; set; }
        /// <summary>
        /// vk状态
        /// </summary>
        public Int16 vk_state { get; set; }
    }
}