From 733c975cd8647f6d006736f1863bad731e32e6fb Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期日, 26 十月 2025 17:15:52 +0800
Subject: [PATCH] 上传最新代码,ERP接口,MES接口优化,WMS业务优化等

---
 项目代码/WMS/WMSServices/WIDESEA_Model/Models/Basic/Dt_CustomerInfo.cs |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 53 insertions(+), 0 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_Model/Models/Basic/Dt_CustomerInfo.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_Model/Models/Basic/Dt_CustomerInfo.cs"
new file mode 100644
index 0000000..ae23e8f
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_Model/Models/Basic/Dt_CustomerInfo.cs"
@@ -0,0 +1,53 @@
+锘縰sing SqlSugar;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using WIDESEA_Core.DB.Models;
+
+namespace WIDESEA_Model.Models
+{
+    /// <summary>
+    /// 瀹㈡埛淇℃伅
+    /// </summary>
+    [SugarTable(nameof(Dt_CustomerInfo), "瀹㈡埛淇℃伅")]
+    public class Dt_CustomerInfo : BaseEntity
+    {
+        /// <summary>
+        /// 涓婚敭
+        /// </summary>
+        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+        public int Id { get; set; }
+
+        /// <summary>
+        /// 瀹㈡埛缂栫爜
+        /// </summary>
+        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "瀹㈡埛缂栫爜")]
+        public string CustomerCode { get; set; }
+
+        /// <summary>
+        /// 瀹㈡埛鍏ㄧО
+        /// </summary>
+        [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "瀹㈡埛鍏ㄧО")]
+        public string CustomerName { get; set; }
+
+        /// <summary>
+        /// 瀹㈡埛绠�绉�
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "瀹㈡埛绠�绉�")]
+        public string ShortName { get; set; }
+
+        /// <summary>
+        /// 鐘舵��
+        /// </summary>
+        [SugarColumn(IsNullable = false, ColumnDescription = "鐘舵��")]
+        public int Status { get; set; }
+
+        /// <summary>
+        /// 鍑哄簱瑙勫垯
+        /// </summary>
+        [SugarColumn(IsNullable = false, ColumnDescription = "鍑哄簱瑙勫垯")]
+        public int OutRule { get; set; }
+    }
+}

--
Gitblit v1.9.3