huangxiaoqiang
12 小时以前 960b33fa24c47a330e51a2c24859d681ae62caeb
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_StationManager.cs
@@ -33,12 +33,20 @@
        public int stationID { get; set; }
        /// <summary>
        /// 站台类型
        /// 站台类型 (1-上料口 2-下料口)
        /// </summary>
        [ImporterHeader(Name = "站台类型")]
        [ExporterHeader(DisplayName = "站台类型")]
        [SugarColumn(IsNullable = false, ColumnDescription = "站台类型")]
        public int stationType { get; set; }
        /// <summary>
        /// 工序类型 1、缓存工序 2、设备工序
        /// </summary>
        [ImporterHeader(Name = "工序类型")]
        [ExporterHeader(DisplayName = "工序类型")]
        [SugarColumn(IsNullable = false, ColumnDescription = "工序类型")]
        public int stationProcessCodeType { get; set; }
        /// <summary>
        /// 所属PLC
@@ -73,12 +81,12 @@
        public string stationChildCode { get; set; }
        /// <summary>
        /// 设备区域
        /// 设备工序
        /// </summary>
        [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 stationProcessCode { get; set; }
        /// <summary>
        /// 坐标地址
@@ -99,11 +107,21 @@
        public string stationStatus { get; set; }
        /// <summary>
        /// 楼层
        /// 站台物料编码
        /// </summary>
        [ImporterHeader(Name = "楼层")]
        [ExporterHeader(DisplayName = "楼层")]
        [SugarColumn(IsNullable = false, Length = 255, ColumnDescription = "楼层")]
        public string stationFloor { get; set; }
        [ImporterHeader(Name = "站台物料编码")]
        [ExporterHeader(DisplayName = "站台物料编码")]
        [SugarColumn(IsNullable = false, Length = 255, ColumnDescription = "站台物料编码")]
        public string stationMaterialCode { get; set; }
        /// <summary>
        /// 直达工序
        /// </summary>
        [ImporterHeader(Name = "直达工序")]
        [ExporterHeader(DisplayName = "直达工序")]
        [SugarColumn(IsNullable = false, Length = 255, ColumnDescription = "直达工序")]
        public string stationNextProcessCode { get; set; }
    }
}