WcsSRMBuffer.cs
2.88 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
    /// <summary>
	/// STK指令缓存
	/// </summary>
    [Table("wcs_SRMBuffer")]
    public partial class WcsSRMBuffer : IdEntity
    {
        public WcsSRMBuffer()
        {
        }
        /// <summary>
	    /// 指令类型
	    /// </summary>
        [Column("BufferType")]
        public int? BufferType { get; set; }
        /// <summary>
	    /// PLC号
	    /// </summary>
        [Column("Plc_Device")]
        public int? PlcDevice { get; set; }
        /// <summary>
	    /// 指令长度
	    /// </summary>
        [Column("BufferLen")]
        public int? BufferLen { get; set; }
        /// <summary>
	    /// 起始X
	    /// </summary>
        [Column("StartX")]
        public int? StartX { get; set; }
        /// <summary>
	    /// 起始Y
	    /// </summary>
        [Column("StartY")]
        public int? StartY { get; set; }
        /// <summary>
	    /// 起始Z
	    /// </summary>
        [Column("StartZ")]
        public int? StartZ { get; set; }
        /// <summary>
	    /// 结束X
	    /// </summary>
        [Column("EndX")]
        public int? EndX { get; set; }
        /// <summary>
	    /// 结束Y
	    /// </summary>
        [Column("EndY")]
        public int? EndY { get; set; }
        /// <summary>
	    /// 结束Z
	    /// </summary>
        [Column("EndZ")]
        public int? EndZ { get; set; }
        /// <summary>
	    /// 任务类型
	    /// </summary>
        [Column("TaskType")]
        public int? TaskType { get; set; }
        /// <summary>
	    /// 条码
	    /// </summary>
        [Column("BarCode")]
        public string BarCode { get; set; }
        /// <summary>
	    /// 条码长度
	    /// </summary>
        [Column("BarCodeLen")]
        public int? BarCodeLen { get; set; }
        /// <summary>
	    /// 备用位1
	    /// </summary>
        [Column("Keep1")]
        public int? Keep1 { get; set; }
        /// <summary>
	    /// 备用位2
	    /// </summary>
        [Column("Keep2")]
        public int? Keep2 { get; set; }
        /// <summary>
	    /// 备用位3
	    /// </summary>
        [Column("Keep3")]
        public int? Keep3 { get; set; }
        /// <summary>
	    /// 备用位4
	    /// </summary>
        [Column("Keep4")]
        public int? Keep4 { get; set; }
        /// <summary>
	    /// 备用位5
	    /// </summary>
        [Column("Keep5")]
        public int? Keep5 { get; set; }
        /// <summary>
	    /// 备用位6
	    /// </summary>
        [Column("Keep6")]
        public int? Keep6 { get; set; }
        /// <summary>
	    /// 备用位7
	    /// </summary>
        [Column("Keep7")]
        public int? Keep7 { get; set; }
        public DateTime? UpdateTime { get; set; }
        /// <summary>
	    /// 发送次数
	    /// </summary>
        [Column("SendCount")]
        public int? SendCount { get; set; }
    }
}