1
wankeda
2025-02-12 8326222e65f0bb258c99d93f1954d7696c4ef00d
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
using SqlSugar;
 
namespace WIDESEAWCS_Model.Models.System
{
    public class PlatformStation
    {
        /// <summary>
        /// 站台ID
        /// </summary>
        [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "站台ID")]
        public int Station_id { get; set; }
 
        /// <summary>
        /// 站台编号
        /// </summary>
        [SugarColumn( ColumnDescription = "站台编号")]
        public string Station_code { get; set; }
 
 
        /// <summary>
        /// 类型
        /// </summary>
        [SugarColumn( ColumnDescription = "站台类型")]
        public int Station_material { get; set; }
 
        /// <summary>
        /// 是否启用
        /// </summary>
        [SugarColumn( ColumnDescription = "是否启用")]
        public int Station_enable { get; set; }
 
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn( ColumnDescription = "楼层")]
        public int Station_storey { get; set; }
 
 
        /// <summary>
        /// 站台所属设备
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "站台所属设备")]
        public string ChildPosiDeviceCode { get; set; }
 
 
 
 
    }
}