1
z8018
2025-04-05 f94288b728f81b20c29e626526c584c11a7894a3
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_Container.cs
@@ -1,5 +1,5 @@

using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -12,37 +12,58 @@
    [SugarTable]
    public class Dt_Container : BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        /// <summary>
        /// ç¼–号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "编号")]
        public string ContainerCode { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "长")]
        public int ContainerLength { get; set; }
        /// <summary>
        /// ç±»åž‹
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "类型")]
        public int ContainerType { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "宽")]
        public int ContainerWidth { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "高")]
        public int ContainerHeight { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "X坐标")]
        public int ContainerPositionX { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "Y坐标")]
        public int ContainerPositionY { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "Z坐标")]
        public int ContainerPositionZ { get; set; }
        /// <summary>
        /// çŠ¶æ€
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "状态")]
        public int ContainerStatus { get; set; }
        /// <summary>
        /// é•¿
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "长")]
        public int ContainerLength { get; set; }
        /// <summary>
        /// å®½
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "宽")]
        public int ContainerWidth { get; set; }
        /// <summary>
        /// é«˜
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "高")]
        public int ContainerHeight { get; set; }
        /// <summary>
        /// æŽ’序
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "排序")]
        public int ContainerSort { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "备注")]
        /// <summary>
        /// å¤‡æ³¨
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        public string ContainerRemark { get; set; }
        [Navigate(NavigateType.OneToMany, nameof(Dt_ContainerItem.ContainerId), nameof(Id))]