From 9e4d2ea113f6d5631f78aa85bbe39481fd701b72 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期四, 27 二月 2025 10:47:39 +0800
Subject: [PATCH] 雅达-扩展和改进半成品入库和打印标签功能

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

diff --git a/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs b/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
index 95f9041..17fa3c4 100644
--- a/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
+++ b/Tiger.Model.Net/Entitys/WMS/Api/Input_Entitys.cs
@@ -66,4 +66,23 @@
     {
         public bool IsItemCodeList { get; set; }
     }
+
+    public class RePrintLabelBase
+    {
+        public string BatchNo { get; set; }
+        public decimal 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; }
+    }
 }

--
Gitblit v1.9.3