wanshenmean
2026-03-09 1181f9f764b14abd6e9f598f89f8507b4bbfad0d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_QuartzJob.DeviceBase;
 
namespace WIDESEAWCS_Tasks
{
    public class PinMachineCommand : DeviceCommand
    {
        /// <summary>
        /// 物流线运行信号
        /// </summary>
        public short LogisticsLineRunningSignal { get; set; }
 
        /// <summary>
        /// 插拔钉机运行信号
        /// </summary>
        public short PlugPinMachineRunningSignal { get; set; }
 
        /// <summary>
        /// 要料请求-上层
        /// </summary>
        public short MaterialRequestUpper { get; set; }
 
        /// <summary>
        /// 出料请求-上层
        /// </summary>
        public short OutputRequestUpper { get; set; }
 
        /// <summary>
        /// 插拔钉盘可出料-上层
        /// </summary>
        public short PlugPinTrayOutputReadyUpper { get; set; }
 
        /// <summary>
        /// 要料请求-下层
        /// </summary>
        public short MaterialRequestLower { get; set; }
 
        /// <summary>
        /// 出料请求-下层
        /// </summary>
        public short OutputRequestLower { get; set; }
 
        /// <summary>
        /// 插拔钉盘可出料-下层
        /// </summary>
        public short PlugPinTrayOutputReadyLower { get; set; }
    }
}