wangxinhui
2 天以前 a8756c3526832332db4ef5685348d9b188c2bf2b
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Tasks.辅料仓
{
    public class FLReadData
    {
        ///输送线
        /// <summary>
        /// 放货完成(写)
        /// </summary>
        public bool W_PutFinish5;
 
        /// <summary>
        /// 托盘号
        /// </summary>
        public string W_Barcode5;
 
        /// <summary>
        /// 写入任务号
        /// </summary>
        public string W_TaskNum5;
 
        /// <summary>
        /// 入库到位指令
        /// </summary>
        public bool R_ConveyArrivaled5;
 
        /// <summary>
        /// 入库到位托盘号
        /// </summary>
        public string R_Barcode5;
 
        /// <summary>
        /// 入库到位任务号
        /// </summary>
        public string R_TaskNum5;
 
 
        /// <summary>
        /// 放货完成(写)
        /// </summary>
        public bool W_PutFinish1;
 
        /// <summary>
        /// 是否允许放货(读)
        /// </summary>
        public bool R_IsCanPut;
    }
}