From 40df5d91f800bb8b7be2638c13b4f9292d461221 Mon Sep 17 00:00:00 2001
From: Rodney Chen <rodney.chen@hotmail.com>
Date: 星期一, 10 三月 2025 18:13:50 +0800
Subject: [PATCH] 增加送货单清点事务

---
 Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs b/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
index 162a5cb..9ba6667 100644
--- a/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
+++ b/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
@@ -70,14 +70,19 @@
     public class RePrintLabelBase
     {
         public string BatchNo { get; set; }
-        public decimal BatchQty { get; set; }
+        public double BatchQty { get; set; }
         public List<RePrintLabelEntity> SnList { get; set; }=new List<RePrintLabelEntity>();
+    }
+
+    public class PrintSemiProdLabelEntity: RePrintLabelBase
+    {
+        
     }
 
     public class RePrintLabelEntity
     {
         public string ID { get; set; }
         public string SN { get; set; }
-        public decimal Qty { get; set; }
+        public double Qty { get; set; }
     }
 }

--
Gitblit v1.9.3