using SqlSugar; namespace WIDESEAWCS_Model.Models.System { public class PlatformStation { /// /// 站台ID /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "站台ID")] public int Station_id { get; set; } /// /// 站台编号 /// [SugarColumn( ColumnDescription = "站台编号")] public string Station_code { get; set; } /// /// 类型 /// [SugarColumn( ColumnDescription = "站台类型")] public int Station_material { get; set; } /// /// 是否启用 /// [SugarColumn( ColumnDescription = "是否启用")] public int Station_enable { get; set; } /// /// 备注 /// [SugarColumn( ColumnDescription = "楼层")] public int Station_storey { get; set; } /// /// 站台所属设备 /// [SugarColumn(Length = 50, ColumnDescription = "站台所属设备")] public string ChildPosiDeviceCode { get; set; } } }