From abf3ceabdd98abd0d955b03732e581a43c4e9fb0 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期一, 13 一月 2025 15:01:31 +0800
Subject: [PATCH] 解决冲突

---
 Yw.BLL.Unit.Core/03-localclient/09-dbfirst/UnitDbFirstHelper.cs |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/Yw.BLL.Unit.Core/03-localclient/09-dbfirst/UnitDbFirstHelper.cs b/Yw.BLL.Unit.Core/03-localclient/09-dbfirst/UnitDbFirstHelper.cs
new file mode 100644
index 0000000..c0c1a0f
--- /dev/null
+++ b/Yw.BLL.Unit.Core/03-localclient/09-dbfirst/UnitDbFirstHelper.cs
@@ -0,0 +1,27 @@
+锘縩amespace Yw.CAL.LocalClient
+{
+    /// <summary>
+    /// 
+    /// </summary>
+    public class UnitDbFirstHelper : IUnitDbFirstHelper
+    {
+
+        /// <summary>
+        /// 
+        /// </summary>
+        public async Task<bool> Initial()
+        {
+            return await Task.Run(() =>
+            {
+                var bol = Yw.Service.Unit.DbFirstHelper.Initial(out string Msg);
+                if (!bol)
+                {
+                    throw YOops.Oh(eResultCode.Alert, InternalErrorCodes.L001, Msg);
+                }
+                return bol;
+            });
+        }
+
+
+    }
+}

--
Gitblit v1.9.3