TBaseStation.cs
2.05 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
///
/// </summary>
[Table("t_base_station")]
public partial class TBaseStation : IdEntity
{
public TBaseStation()
{
}
/// <summary>
/// 唯一编号
/// </summary>
[Column("ID")]
public new long? Id { get; set; }
/// <summary>
/// 站台类型
/// </summary>
[Column("StationType")]
public int? StationType { get; set; }
/// <summary>
/// 站台区域
/// </summary>
[Column("Area")]
public string StationArea { get; set; }
/// <summary>
/// 站台所属组
/// </summary>
[Column("Group")]
public string StationGroup { get; set; }
/// <summary>
/// 站台方向
/// </summary>
[Column("StationOri")]
public int? StationOri { get; set; }
/// <summary>
/// 站台距离
/// </summary>
[Column("Length")]
public int? StationLength { get; set; }
/// <summary>
/// 是否启用
/// </summary>
[Column("IsEnable")]
public bool? IsEnable { get; set; }
/// <summary>
/// 是否锁定
/// </summary>
[Column("IsLocked")]
public bool? IsLocked { get; set; }
/// <summary>
/// 站台码值
/// </summary>
[Column("Barcode")]
public string StrBarcode { get; set; }
/// <summary>
/// 站台附属点
/// </summary>
[Column("PreBarcode")]
public string StrPreBarcode { get; set; }
/// <summary>
///
/// </summary>
[Column("Name")]
public string StrStationNo { get; set; }
/// <summary>
/// 站台状态
/// </summary>
[Column("StationState")]
public int? StationState { get; set; }
/// <summary>
/// 站台防撞
/// </summary>
[Column("Tim")]
public int? StationTim { get; set; }
}
}