From 8d50f77ff706e213955e3c8dd2029dc10e9f9b63 Mon Sep 17 00:00:00 2001
From: Rodney Chen <rodney.chen@hotmail.com>
Date: 星期四, 20 三月 2025 21:29:05 +0800
Subject: [PATCH] 优化清点逻辑,支持扫箱条码,增加退货的数量处理 更新实体

---
 Tiger.Model.Net/Entitys/ImportEntity.cs |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/Tiger.Model.Net/Entitys/ImportEntity.cs b/Tiger.Model.Net/Entitys/ImportEntity.cs
index 27481fe..7e9d82d 100644
--- a/Tiger.Model.Net/Entitys/ImportEntity.cs
+++ b/Tiger.Model.Net/Entitys/ImportEntity.cs
@@ -12,4 +12,21 @@
         public string DataTableStr { get; set; }
         public string[] PARAMS { get; set; }
     }
+
+    public class BaseImportInput
+    {
+        public string typeFullName { get; set; }
+    }
+
+    public class ImportInput : BaseImportInput
+    {
+        public string EntityJson { get; set; }
+    }
+
+    public class ImportValidateInput: BaseImportInput
+    {
+        public string EntityJson { get; set; }
+        public string CheckJson { get; set; }
+        public string where { get; set; }
+    }
 }

--
Gitblit v1.9.3