1
z8018
2025-06-10 e46aa927d231af83724683c7286d9db503e24cf7
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_OrderContainer.cs
@@ -12,24 +12,51 @@
    [SugarTable]
    public class Dt_OrderContainer : BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        /// <summary>
        /// è®¢å•主键
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "订单主键")]
        public int OrderId { get; set; }
        /// <summary>
        /// è®¢å•编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "订单编号")]
        public string OrderNo { get; set; }
        /// <summary>
        /// å®¹å™¨ä¸»é”®
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "容器主键")]
        public int ContainerId { get; set; }
        /// <summary>
        /// å®¹å™¨ç¼–号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "容器编号")]
        public string ContainerCode { get; set; }
        /// <summary>
        /// æœ€å¤§é•¿åº¦
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "最大长度")]
        public int MaxLength { get; set; }
        /// <summary>
        /// æœ€å¤§å®½åº¦
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "最大宽度")]
        public int MaxWidth { get; set; }
        /// <summary>
        /// å¤‡æ³¨
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "备注")]
        public string Remark { get; set; }
    }