From b6a40a2d8fdcffb3accfc7e424c0726a87a59ddf Mon Sep 17 00:00:00 2001
From: heshaofeng <heshaofeng@hnkhzn.com>
Date: 星期五, 05 十二月 2025 21:20:59 +0800
Subject: [PATCH] 提交

---
 项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/StockDetailByMateriel.cs |   74 +++++++++++++++++++++++++++++++++++++
 1 files changed, 74 insertions(+), 0 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/StockDetailByMateriel.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/StockDetailByMateriel.cs"
new file mode 100644
index 0000000..3e31cd2
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_Model/Models/Stock/StockDetailByMateriel.cs"
@@ -0,0 +1,74 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace WIDESEA_Model.Models
+{
+    public class StockDetailByMateriel
+    {
+        public int Id { get; set; }
+
+
+        public int StockId { get; set; }
+
+
+        public string MaterielCode { get; set; }
+
+
+        public string MaterielName { get; set; }
+
+
+        public string OrderNo { get; set; }
+
+
+        public string BatchNo { get; set; }
+
+
+        public string ProductionDate { get; set; }
+
+
+        public string EffectiveDate { get; set; }
+
+
+        public string SerialNumber { get; set; }
+
+
+        public decimal StockQuantity { get; set; }
+
+
+        public decimal OutboundQuantity { get; set; }
+
+
+        public int Status { get; set; }
+
+
+        public string Unit { get; set; }
+
+        public string InboundOrderRowNo { get; set; }
+
+
+        public string? SupplyCode { get; set; }
+
+        public string FactoryArea { get; set; }
+
+        public string? WarehouseCode { get; set; }
+
+
+        public string? Barcode { get; set; }
+
+
+
+        public string? BusinessType { get; set; }
+
+
+        public decimal BarcodeQty { get; set; }
+
+        public string BarcodeUnit { get; set; }
+
+        public DateTime? ValidDate { get; set; }
+
+        public string Remark { get; set; }
+    }
+}

--
Gitblit v1.9.3