huangxiaoqiang
2025-06-12 c54e0666bdd34fbe133fe521bf9d46dd6c0fe53e
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
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models.BasicInfo
{
    public class Dt_StationManager: BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [ImporterHeader(Name = "主键")]
        [ExporterHeader(DisplayName = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true,IsNullable =false, ColumnDescription = "主键")]
        public int stationID { get; set; }
 
        /// <summary>
        /// 站台编号
        /// </summary>
        [SugarColumn( ColumnDescription = "站台编号")]
        public string stationCode { get; set; }
 
        /// <summary>
        /// 站台名称remark
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "站台名称")]
        public string stationName { get; set; }
 
        /// <summary>
        /// 类型
        /// </summary>
        [SugarColumn( ColumnDescription = "站台类型")]
        public int stationMaterial { get; set; }
 
        /// <summary>
        /// 是否启用
        /// </summary>
        [SugarColumn( ColumnDescription = "是否启用")]
        public int stationEnable { get; set; }
 
        /// <summary>
        /// 区域
        /// </summary>
        [SugarColumn( ColumnDescription = "区域")]
        public int stationArea { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn( Length = 50, ColumnDescription = "备注")]
        public string stationRemark { get; set; }
 
 
        /// <summary>
        /// 站台所属设备
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = false, ColumnDescription = "站台所属设备")]
        public string DeviceCode { get; set; }
    }
}