From 85aebb299ff06de433d25986dc9db7c5ba9fc834 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期四, 19 三月 2026 09:32:35 +0800
Subject: [PATCH] 添加平库货位信息表

---
 代码管理/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationInfo.cs |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationInfo.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationInfo.cs"
new file mode 100644
index 0000000..754cbff
--- /dev/null
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationInfo.cs"
@@ -0,0 +1,61 @@
+锘縰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_StationInfo), "骞冲簱璐т綅淇℃伅")]
+    public class Dt_StationInfo : BaseEntity
+    {
+        /// <summary>
+        /// 涓婚敭
+        /// </summary>
+        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+        public int Id { get; set; }
+
+        /// <summary>
+        /// 绔欏彴缂栧彿
+        /// </summary>
+        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "绔欏彴缂栧彿")]
+        public string StationCode { get; set; }
+
+        /// <summary>
+        /// 绔欏彴鍚嶇О
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "绔欏彴鍚嶇О")]
+        public string StationName { get; set; }
+
+        /// <summary>
+        /// 绔欏彴绫诲瀷 <br/>
+        /// 1锛氬彧鍏� <br/>
+        /// 2锛氬彧鍑� <br/>
+        /// 3锛氬彲鍏ュ彲鍑�
+        /// </summary>
+        [SugarColumn(IsNullable = false, ColumnDescription = "绔欏彴绫诲瀷")]
+        public int StationType {  get; set; }
+
+        /// <summary>
+        /// 鎵�鍦ㄦゼ灞�,AA鏄�1妤硷紝BB鏄�2妤硷紝CC鏄�3妤硷紝DD鏄�4妤硷紝EE鏄�5妤硷紝FF鏄�6妤�
+        /// </summary>
+        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "鎵�鍦ㄦゼ灞�")]
+        public string FloorNumber { get; set; }
+
+        /// <summary>
+        /// 绔欏彴鏄惁鍙敤 <br/>
+        /// 0锛氬彲鐢� <br/>
+        /// 1锛氬崰鐢� <br/>
+        /// </summary>
+        [SugarColumn(IsNullable = false, ColumnDescription = "绔欏彴鏄惁鍙敤")]
+        public int IsOccupied { get; set; }
+
+        /// <summary>
+        /// 澶囨敞
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "澶囨敞")]
+        public string Remark { get; set; }
+    }
+}

--
Gitblit v1.9.3