#region << 版 本 注 释 >> /*---------------------------------------------------------------- * 命名空间:WIDESEAWCS_Model.Models.TaskInfo * 创建者:胡童庆 * 创建时间:2024/8/2 16:13:36 * 版本:V1.0.0 * 描述: * * ---------------------------------------------------------------- * 修改人: * 修改时间: * 版本:V1.0.1 * 修改说明: * *----------------------------------------------------------------*/ #endregion << 版 本 注 释 >> using Magicodes.ExporterAndImporter.Core; using SqlSugar; using WIDESEAWCS_Core.DB.Models; namespace WIDESEAWCS_Model.Models { [SugarTable(nameof(Dt_StationManager), "站台信息")] public class Dt_StationManager : BaseEntity { /// /// 主键 /// [ImporterHeader(Name = "主键")] [ExporterHeader(DisplayName = "主键")] [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int stationID { get; set; } /// /// 站台类型 1-入库站台 2-出库站台 3-RB043精排过点 4-西侧横移机 5-提升机 6-空框入库 7-空框出库,8-RB001白车身接车 ,9-空撬入库判断 10-RB042精排判断 /// [ImporterHeader(Name = "站台类型")] [ExporterHeader(DisplayName = "站台类型")] [SugarColumn(IsNullable = false, ColumnDescription = "站台类型")] public int stationType { get; set; } /// /// 所属PLC /// [ImporterHeader(Name = "所属PLC")] [ExporterHeader(DisplayName = "所属PLC")] [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "所属PLC")] public string stationPLC { get; set; } /// /// 巷道号 /// [ImporterHeader(Name = "巷道号")] [ExporterHeader(DisplayName = "巷道号")] [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "巷道号")] public string Roadway { get; set; } /// /// 备注 /// [ImporterHeader(Name = "备注")] [ExporterHeader(DisplayName = "备注")] [SugarColumn(IsNullable = false, ColumnDescription = "备注")] public string stationRemark { get; set; } /// /// 线体编号(子设备编号) /// [ImporterHeader(Name = "线体编号(子设备编号)")] [ExporterHeader(DisplayName = "线体编号(子设备编号)")] [SugarColumn(IsNullable = false, ColumnDescription = "线体编号(子设备编号)")] public string stationChildCode { get; set; } /// /// 设备区域 /// [ImporterHeader(Name = "设备区域")] [ExporterHeader(DisplayName = "设备区域")] [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "设备区域")] public string stationArea { get; set; } /// /// 坐标地址 /// [ImporterHeader(Name = "坐标地址")] [ExporterHeader(DisplayName = "坐标地址")] [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "坐标地址")] public string stationLocation { get; set; } /// /// /// [SugarColumn(IsNullable = false, ColumnDescription = "MES点位")] public string stationEquipMES { get; set; } /// /// /// [SugarColumn(IsNullable = false, ColumnDescription = "站台模式")] public string stationModel { get; set; } /// /// /// [SugarColumn(IsNullable = false, ColumnDescription = "横移机道口")] public string stationTCLocation { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true, ColumnDescription = "备注")] public string remark { get; set; } /// /// 启用状态 /// [SugarColumn(IsNullable = false, ColumnDescription = "启用状态")] public string stationStatus { get; set; } } }