From b698a2085fd090e90abedb1e91266ec496574b29 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期四, 16 四月 2026 23:31:35 +0800
Subject: [PATCH] 1
---
Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_SplitTemp.cs | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_SplitTemp.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_SplitTemp.cs
new file mode 100644
index 0000000..26eab06
--- /dev/null
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/Dt_SplitTemp.cs
@@ -0,0 +1,36 @@
+using SqlSugar;
+using WIDESEA_Core.DB.Models;
+
+namespace WIDESEA_Model.Models
+{
+ /// <summary>
+ /// 鎷嗙洏涓存椂琛� - 鐢ㄤ簬鏆傚瓨鎷嗙洏浠诲姟鐢佃姱鍒楄〃锛屼緵鎵归噺纭鏃朵娇鐢�
+ /// </summary>
+ [SugarTable(nameof(Dt_SplitTemp), "鎷嗙洏涓存椂琛�")]
+ public class Dt_SplitTemp
+ {
+ /// <summary>
+ /// 涓婚敭
+ /// </summary>
+ [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+ public int Id { get; set; }
+
+ /// <summary>
+ /// 鎵樼洏鍙�
+ /// </summary>
+ [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "鎵樼洏鍙�")]
+ public string PalletCode { get; set; }
+
+ /// <summary>
+ /// 鐢佃姱鏉$爜鍒楄〃锛圝SON鏍煎紡锛�
+ /// </summary>
+ [SugarColumn(IsNullable = false, Length = -1, ColumnDescription = "鐢佃姱鏉$爜鍒楄〃JSON")]
+ public string SfcList { get; set; }
+
+ /// <summary>
+ /// 鍒涘缓鏃堕棿
+ /// </summary>
+ [SugarColumn(IsNullable = false, ColumnDescription = "鍒涘缓鏃堕棿")]
+ public DateTime CreateTime { get; set; } = DateTime.Now;
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.3