From 960b33fa24c47a330e51a2c24859d681ae62caeb Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期四, 16 四月 2026 10:09:49 +0800
Subject: [PATCH] 重构任务与库存模型,增强日志管理与区域接口
---
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtStockInfo.cs | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 52 insertions(+), 8 deletions(-)
diff --git a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtStockInfo.cs b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtStockInfo.cs
index 4d1a0c8..5eb7d9a 100644
--- a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtStockInfo.cs
+++ b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtStockInfo.cs
@@ -27,6 +27,12 @@
public string PalletCode { get; set; }
/// <summary>
+ /// 璐т綅ID
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "璐т綅ID")]
+ public string LocationId { get; set; }
+
+ /// <summary>
/// 璐т綅缂栫爜
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "璐т綅缂栫爜")]
@@ -36,7 +42,7 @@
/// 鏄惁鏁村嚭
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "鏄惁鏁村嚭")]
- public bool IsFullExit { get; set; } = true;
+ public bool IsFull { get; set; } = true;
/// <summary>
/// 鐘舵��
@@ -45,22 +51,60 @@
public int StockStatus { get; set; }
/// <summary>
- /// 鍗曟嵁缂栧彿
+ /// 鐗╂枡鍚嶇О
/// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "鍗曟嵁缂栧彿")]
- public string OrderNo { get; set; }
+ [SugarColumn(IsNullable = true, ColumnDescription = "鐗╂枡鍚嶇О")]
+ public string MaterielName { get; set; }
/// <summary>
- /// 鍗曟嵁绫诲瀷
+ /// 鍑哄簱鏃堕棿
/// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "鍗曟嵁绫诲瀷")]
- public string OrderType { get; set; }
+ [SugarColumn(IsNullable = true, ColumnDescription = "鍑哄簱鏃堕棿")]
+ public DateTime OutboundTime { get; set; }
+
+ /// <summary>
+ /// 宸ヨ壓寮�濮嬫椂闂�
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "宸ヨ壓寮�濮嬫椂闂�")]
+ public string LinedProcessFeedbackTime { get; set; }
+
+ /// <summary>
+ /// 宸ヨ壓鏃堕暱
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "宸ヨ壓鏃堕暱")]
+ public string SpecialParameterDuration { get; set; }
+
+ /// <summary>
+ /// 浜х嚎
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "浜х嚎")]
+ public string ProductionLine { get; set; }
+
+ /// <summary>
+ /// 搴撳尯ID
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "搴撳尯ID")]
+ public string AreaCode { get; set; }
+
+ /// <summary>
+ /// 褰撳墠宸ュ簭
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "褰撳墠宸ュ簭")]
+ public string ProcessCode { get; set; }
+
+ /// <summary>
+ /// 涓嬩竴宸ュ簭
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "涓嬩竴宸ュ簭")]
+ public string NextProcessCode { get; set; }
+
/// <summary>
/// 澶囨敞
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "澶囨敞")]
public string Remark { get; set; }
+
/// <summary>
/// 搴撳瓨鏄庣粏
@@ -73,7 +117,7 @@
/// 璐т綅鏁版嵁
/// </summary>
[SugarColumn(ColumnName = "LocationInfo")]
- [Navigate(NavigateType.OneToOne, nameof(LocationCode), nameof(DtLocationInfo.LocationCode))]
+ [Navigate(NavigateType.OneToOne, nameof(LocationId), nameof(DtLocationInfo.Id))]
public DtLocationInfo? LocationInfo { get; set; }
}
}
\ No newline at end of file
--
Gitblit v1.9.3