1
z8018
2025-04-16 1f361850d35ba47225951efbc49d592eea685cf8
ÏîÄ¿´úÂë/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,67 @@
    [SugarTable]
    public class Dt_Container : BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "编号")]
        /// <summary>
        /// ç¼–号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "编码")]
        public string ContainerCode { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "长")]
        public int ContainerLength { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "编号")]
        public int ContainerNo { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "宽")]
        public int ContainerWidth { get; set; }
        /// <summary>
        /// ç±»åž‹
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "类型")]
        public int ContainerType { 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; }
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "设备编号")]
        public string DeviceCode { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "是否启用")]
        public bool ContainerEnable { 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))]