From a9bba690fdead98f549d000ec29aa0cd6887cd22 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期二, 28 四月 2026 14:25:38 +0800
Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/KuKa/BeiJingBeiQiAGV

---
 项目代码/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs |   86 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 86 insertions(+), 0 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs"
new file mode 100644
index 0000000..211ab60
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs"
@@ -0,0 +1,86 @@
+锘縰sing SqlSugar;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using WIDESEAWCS_Core.DB.Models;
+
+namespace WIDESEAWCS_Model.Models
+{
+    [SugarTable(nameof(Dt_MaterialInfo), "鐗╂枡淇℃伅缁勭洏琛�")]
+    public class Dt_MaterialInfo : BaseEntity
+    {
+        /// <summary>
+        /// 涓婚敭
+        /// </summary>
+        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+        public int Id { get; set; }
+
+        /// <summary>
+        /// 鐗╂枡鍚嶇О 闆朵欢鍙�
+        /// </summary>
+        [SugarColumn(Length = 100, ColumnDescription = "鐗╂枡鍚嶇О")]
+        public string MaterialName { get; set; }
+
+        /// <summary>
+        /// 瀹瑰櫒缂栧彿
+        /// </summary>
+        [SugarColumn(Length = 100, ColumnDescription = "瀹瑰櫒缂栧彿")]
+        public string ContainerCode { get; set; }
+
+        /// <summary>
+        /// 瀹瑰櫒褰撳墠瀵瑰簲浣嶇疆
+        /// </summary>
+        [SugarColumn(Length = 100, ColumnDescription = "瀹瑰櫒褰撳墠瀵瑰簲浣嶇疆")]
+        public string Position { get; set; }
+
+        /// <summary>
+        /// 瀹瑰櫒鍑哄満浣嶇疆
+        /// </summary>
+        [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "瀹瑰櫒鍑哄満浣嶇疆")]
+        public string EndPosition { get; set; }
+
+        /// <summary>
+        /// 鏄惁鏂板澧炲鍣�
+        /// </summary>
+        [SugarColumn(ColumnDescription = "鏄惁灞炰簬鏂板瀹瑰櫒", DefaultValue = "0")]
+        public bool IsNew { get; set; }
+
+        /// <summary>
+        /// 瀹瑰櫒鏄惁缁戝畾
+        /// </summary>
+        [SugarColumn(ColumnDescription = "瀹瑰櫒鏄惁缁戝畾", DefaultValue = "1")]
+        public bool IsBind { get; set; } = true;
+
+        /// <summary>
+        /// 杞﹀瀷
+        /// </summary>
+        [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "杞﹀瀷")]
+        public string Carmodel { get; set; }
+
+        /// <summary>
+        /// 鍖哄煙
+        /// </summary>
+        [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "鍖哄煙")]
+        public string Region { get; set; }
+
+        /// <summary>
+        /// 澶囩敤瀛楁1
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "澶囩敤瀛楁1")]
+        public string? location_bak_1 { get; set; }
+
+        /// <summary>
+        /// 澶囩敤瀛楁2
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "澶囩敤瀛楁2")]
+        public string? location_bak_2 { get; set; }
+
+        /// <summary>
+        /// 澶囩敤瀛楁3
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "澶囩敤瀛楁3")]
+        public string? location_bak_3 { get; set; }
+    }
+}

--
Gitblit v1.9.3