1
huangxiaoqiang
2025-04-08 c814a981db2a078a3d1021263ad349e2c1de9188
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/ProcessParameters/Platform.cs
@@ -24,7 +24,7 @@
        /// </summary>
        [ImporterHeader(Name = "站台编号,唯一标识每个站台的编号")]
        [ExporterHeader(DisplayName = "站台编号,唯一标识每个站台的编号")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站台编号,唯一标识每个站台的编号")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台编号,唯一标识每个站台的编号")]
        public string PlatCode { get; set; }
        /// <summary>
@@ -32,7 +32,7 @@
        /// </summary>
        [ImporterHeader(Name = "站台名称")]
        [ExporterHeader(DisplayName = "站台名称")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站台名称")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台名称")]
        public string PlatformName { get; set; }
        /// <summary>
@@ -40,7 +40,7 @@
        /// </summary>
        [ImporterHeader(Name = "对应堆垛机")]
        [ExporterHeader(DisplayName = "对应堆垛机")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "对应堆垛机")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "对应堆垛机")]
        public string Stacker { get; set; }
        /// <summary>
@@ -48,7 +48,7 @@
        /// </summary>
        [ImporterHeader(Name = "执行方法")]
        [ExporterHeader(DisplayName = "执行方法")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "执行方法")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "执行方法")]
        public string ExecutionMethod { get; set; }
        /// <summary>
@@ -56,7 +56,7 @@
        /// </summary>
        [ImporterHeader(Name = "站台类型")]
        [ExporterHeader(DisplayName = "站台类型")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站台类型")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台类型")]
        public string PlatformType { get; set; }
        /// <summary>
@@ -64,8 +64,8 @@
        /// </summary>
        [ImporterHeader(Name = "对应PLC编号")]
        [ExporterHeader(DisplayName = "对应PLC编号")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "对应PLC编号")]
        public string PLCCode { get; set; }
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "对应PLC编号")]
        public string DeviceCode { get; set; }
        /// <summary>
        /// 站台位置
@@ -90,5 +90,15 @@
        [ExporterHeader(DisplayName = "站台状态")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台状态")]
        public string Status { get; set; } = "Active";
        /// <summary>
        /// 生产产线
        /// </summary>
        [ImporterHeader(Name = "生产产线")]
        [ExporterHeader(DisplayName = "生产产线")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "生产产线")]
        public string ProductionLine { get; set; }
    }
}