From ad684e5f7248967f03c7a20f0ce2f7cfce2e017b Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <1247017146@qq.com>
Date: 星期一, 07 四月 2025 14:29:49 +0800
Subject: [PATCH] 11

---
 Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs |   10 ++++++++++
 Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs   |   15 +++++++++++++++
 2 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs
new file mode 100644
index 0000000..59951ad
--- /dev/null
+++ b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs
@@ -0,0 +1,10 @@
+锘縰sing WIDESEAWCS_Core.BaseServices;
+using WIDESEAWCS_Model.Models;
+
+namespace WIDESEAWCS_IProcessService
+{
+    public interface IPlatFormService : IService<Platform>
+    {
+
+    }
+}
diff --git a/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs
new file mode 100644
index 0000000..065293a
--- /dev/null
+++ b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs
@@ -0,0 +1,15 @@
+锘縰sing WIDESEAWCS_Core.BaseServices;
+using WIDESEAWCS_IProcessRepository;
+using WIDESEAWCS_IProcessService;
+using WIDESEAWCS_Model.Models;
+
+namespace WIDESEAWCS_ProcessService
+{
+    public partial class PlatFormService:ServiceBase<Platform,IPlatFormRepository>,IPlatFormService
+    {
+        public PlatFormService(IPlatFormRepository BaseDal) : base(BaseDal)
+        {
+
+        }
+    }
+}

--
Gitblit v1.9.3