2
schangxiang@126.com
2024-08-16 b47c50a2a514def7374b32d7194b2c599cba5625
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
 
namespace VirtualConveyor.Conveyor.Entity
{
    public class OpcWriteItem
    {
        /// <summary> 
        /// 任务号 
        /// </summary>
        public string TaskId { get; set; }
 
        /// <summary>
        /// 是否到位
        /// </summary>
        public string Occupied { get; set; }
 
        /// <summary>
        /// 允许放货(输送机到位)
        /// </summary>
        public string PutDownLicense { get; set; }
 
        /// <summary>
        /// 允许取货(输送机到位)
        /// </summary>
        public string PickUpLicense { get; set; }
 
        /// <summary>
        /// 滚动开始
        /// </summary>
        public string StartRotation { get; set; }
 
        /// <summary>
        /// 手动允许取货(输送机空闲)
        /// </summary>
        public string PickUpLicenseManual { get; set; }
 
        /// <summary>
        /// 滚道完成
        /// </summary>
        public string LayingOffComplete { get; set; }
 
 
        /// <summary>
        /// 人工检查结果
        /// </summary>
        public string CheckResult { get; set; } 
    }
}