TBasePoint.cs
3.94 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
///
/// </summary>
[Table("t_base_point")]
public partial class TBasePoint
{
public TBasePoint()
{
}
/// <summary>
/// ID
/// </summary>
[Column("ID")]
public int? Id { get; set; }
/// <summary>
/// 点区域类型
/// </summary>
[Column("AreaType")]
public string PointAreaType { get; set; }
/// <summary>
/// RFID值
/// </summary>
[Column("Barcode")]
public string StrBarcode { get; set; }
/// <summary>
/// X值
/// </summary>
[Column("IntX")]
public int? IntX { get; set; }
/// <summary>
/// Y值
/// </summary>
[Column("IntY")]
public int? IntY { get; set; }
/// <summary>
/// 是否选择X正方向
/// </summary>
[Column("IsXpos")]
public bool? IsXpos { get; set; }
/// <summary>
///
/// </summary>
[Column("XPosLength")]
public int? XPosLength { get; set; }
/// <summary>
/// 是否选择X负方向
/// </summary>
[Column("IsXNeg")]
public bool? IsXNeg { get; set; }
/// <summary>
///
/// </summary>
[Column("XNegLength")]
public int? XNegLength { get; set; }
/// <summary>
/// 是否选择Y正方向
/// </summary>
[Column("IsYPos")]
public bool? IsYPos { get; set; }
/// <summary>
///
/// </summary>
[Column("YPosLength")]
public int? YPosLength { get; set; }
/// <summary>
/// 是否选择Y负方向
/// </summary>
[Column("IsYNeg")]
public bool? IsYNeg { get; set; }
/// <summary>
///
/// </summary>
[Column("YNegLength")]
public int? YNegLength { get; set; }
/// <summary>
/// 启用
/// </summary>
[Column("IsEnable")]
public bool? IsEnable { get; set; }
/// <summary>
/// 是否占用
/// </summary>
[Column("IsOccupy")]
public bool? IsOccupy { get; set; }
/// <summary>
/// 占用AGV编号
/// </summary>
[Column("OccupyAgvNo")]
public string StrOccupyAgvNo { get; set; }
/// <summary>
/// 点类型
/// </summary>
[Column("PointType")]
public int? PointType { get; set; }
/// <summary>
/// X正方向距离
/// </summary>
[Column("XLength")]
public int? IntXLength { get; set; }
/// <summary>
/// Y正方向距离
/// </summary>
[Column("YLength")]
public int? IntYLength { get; set; }
/// <summary>
/// 车头方向
/// </summary>
[Column("AgvOri")]
public int? OriAgv { get; set; }
/// <summary>
/// 转盘方向
/// </summary>
[Column("DialOri")]
public int? OriDial { get; set; }
/// <summary>
///
/// </summary>
[Column("PreBarcode")]
public string StrPreBarcode { get; set; }
/// <summary>
/// 限制区域名称
/// </summary>
[Column("RegionName")]
public string StrRegionName { get; set; }
/// <summary>
/// 是否驻停
/// </summary>
[Column("IsStop")]
public bool? IsStop { get; set; }
/// <summary>
/// 停止等级
/// </summary>
[Column("StopLevel")]
public int? IntStopLevel { get; set; }
#region 注释
// /// <summary>
// /// 是否占用限制区域
// /// </summary>
// [Column("RegionApply")]
// public bool? IsRegionApply { get; set; }
// /// <summary>
///// 占用限制区域AGV编号
///// </summary>
// [Column("RegionApplyAgvNo")]
// public string StrRegionApplyAgvNo { get; set; }
#endregion
}
}