wangxinhui
15 小时以前 39d468b76e60c05ffcdf749f7ed1d3c443d542f8
ÏîÄ¿´úÂë/WCS/WCSServices/WIDESEAWCS_Model/Models/PackInfo/Dt_StationPackInfo.cs
@@ -16,7 +16,7 @@
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int id { get; set; }
        public int Id { get; set; }
        /// <summary>
        /// ç«™å°ç¼–号
@@ -78,9 +78,27 @@
        public int ExecutingNum { get; set; }
        /// <summary>
        /// æŽ’序
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "排序")]
        public int OrderIndex { get; set; }
        /// <summary>
        /// ç åž›å·²å®Œæˆæ•°é‡
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "码垛已完成数量")]
        public int OverNum { get; set; }
        /// <summary>
        /// é«˜åº¦
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "高度")]
        public int HeightNum { get; set; }
        /// <summary>
        /// æ˜Žç»†
        /// </summary>
        [Navigate(NavigateType.OneToMany, nameof(Dt_StationPackDetail.StationPackId), nameof(Id))]
        public List<Dt_StationPackDetail> stationPackDetails { get; set; }
    }
}