ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
using iWareSda.Devices._3_Conveyer.ConveyerModel;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareSda
{
    //Conveyer地址类
    public class ConveyerDBForWrite
    {
 
        #region 写入的Conveyer信息
        /// <summary>
        /// 心跳
        /// </summary>
        [Description("心跳")]
        public string W_HandShake { get; set; }
 
        /// <summary>
        /// 扫码器1接收完成
        /// </summary>
        [Description("扫码器1接收完成")]
        public string W_Scan1_ReceiveFinish { get; set; }
       
 
        #region 写的站点
 
        public List<ConveyerDBForWriteComm> W_ConveyerForWriteCommList { get; set; }
 
        #endregion
 
        //agv地址
        /// <summary>
        /// AGV请求进入
        /// </summary>
        public string W_AGV_RequestIn { get; set; }
 
        /// <summary>
        /// AGV进入到位
        /// </summary>
        public string W_AGV_RequestInArr { get; set; }
 
        /// <summary>
        /// AGV请求出
        /// </summary>
        public string W_AGV_RequestOut { get; set; }
 
        /// <summary>
        /// AGV请求出到位
        /// </summary>
        public string W_AGV_RequestOutArr { get; set; }
 
        /// <summary>
        /// AGV任务类型,1-入库,2-出库
        /// </summary>
        public string W_AGV_TaskType { get; set; }
 
        #endregion
    }
}