From e46aa927d231af83724683c7286d9db503e24cf7 Mon Sep 17 00:00:00 2001
From: z8018 <1282578289@qq.com>
Date: 星期二, 10 六月 2025 11:46:20 +0800
Subject: [PATCH] 1

---
 项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_ContainerItem.cs |   50 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 49 insertions(+), 1 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_ContainerItem.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_ContainerItem.cs"
index 2c1cefd..d2bcb80 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_ContainerItem.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_ContainerItem.cs"
@@ -1,5 +1,5 @@
 锘�
-锘縰sing System;
+using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
@@ -12,46 +12,94 @@
     [SugarTable]
     public class Dt_ContainerItem : BaseEntity
     {
+        /// <summary>
+        /// 涓婚敭
+        /// </summary>
         [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
         public int Id { get; set; }
 
+        /// <summary>
+        /// 瀹瑰櫒涓昏〃涓婚敭
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "瀹瑰櫒涓昏〃涓婚敭")]
         public int ContainerId { get; set; }
 
+        /// <summary>
+        /// 缂栧彿
+        /// </summary>
         [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "缂栧彿")]
         public string ItemCode { get; set; }
 
+        /// <summary>
+        /// 鍚嶇О
+        /// </summary>
         [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "鍚嶇О")]
         public string ItemName { get; set; }
 
+        /// <summary>
+        /// 闀�
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "闀�")]
         public int ItemLength { get; set; }
 
+        /// <summary>
+        /// 瀹�
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "瀹�")]
         public int ItemWidth { get; set; }
 
+        /// <summary>
+        /// 楂�
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "楂�")]
         public int ItemHeight { get; set; }
 
+        /// <summary>
+        /// X鍧愭爣
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "X鍧愭爣")]
         public int ItemPositionX { get; set; }
 
+        /// <summary>
+        /// Y鍧愭爣
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "Y鍧愭爣")]
         public int ItemPositionY { get; set; }
 
+        /// <summary>
+        /// Z鍧愭爣
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "Z鍧愭爣")]
         public int ItemPositionZ { get; set; }
 
+        /// <summary>
+        /// X鐩稿鍧愭爣
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "X鐩稿鍧愭爣")]
         public int ItemRelaPositionX { get; set; }
 
+        /// <summary>
+        /// Y鐩稿鍧愭爣
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "Y鐩稿鍧愭爣")]
         public int ItemRelaPositionY { get; set; }
 
+        /// <summary>
+        /// Z鐩稿鍧愭爣
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "Z鐩稿鍧愭爣")]
         public int ItemRelaPositionZ { get; set; }
 
+        /// <summary>
+        /// 鐘舵��
+        /// </summary>
         [SugarColumn(IsNullable = false, ColumnDescription = "鐘舵��")]
         public int ItemStatus { get; set; }
+
+        /// <summary>
+        /// 澶囨敞
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "澶囨敞")]
+        public string Remark { get; set; }
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3