分支自 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
70
71
72
73
74
75
76
77
78
79
80
81
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Comm.PLCDBItem
{
    public class Oiling_machine
    {
        /// <summary>
        /// 对象集合
        /// </summary>
        public static List<Oiling_machine> Oiling_machineDBItem = new List<Oiling_machine>();
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 自动模式
        /// </summary>
        public bool R_Automatic_mode{ get; set; }
 
        /// <summary>
        /// 手动模式
        /// </summary>
        public bool R_Manual_mode { get; set; }
 
        /// <summary>
        /// 自动运行中
        /// </summary>
        public bool R_AutoRunning { get; set; }
 
        /// <summary>
        /// 1:无故障, 0:有故障
        /// </summary>
        public bool R_NO_FAULT { get; set; }
 
        /// <summary>
        /// 设备上电
        /// </summary>
        public bool R_state_power_on { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public bool R_state_automatic_se_lected { get; set; }
 
        /// <summary>
        /// 急停信号
        /// </summary>
        public bool R_EstopOK { get; set; }
 
        /// <summary>
        /// 车轮到达喷油链条
        /// </summary>
        public bool R_WheelOnPosition { get; set; }
 
        /// <summary>
        /// 车轮SN号
        /// </summary>
        public string R_Wheel_SN { get; set; }
 
        /// <summary>
        /// 车轮类型
        /// </summary>
        public Int16 R_Wheel_Type { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public byte R_Part_Status { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public byte R_Part_Process { get; set; }
    }
}