From 33f55e3be906cbc0390e1ae7a20d6561dfc06140 Mon Sep 17 00:00:00 2001
From: yanjinhui <3306209981@qq.com>
Date: 星期四, 19 三月 2026 10:10:22 +0800
Subject: [PATCH] 添加平库前端页面
---
代码管理/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/StationInfoService.cs | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/StationInfoService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/StationInfoService.cs"
new file mode 100644
index 0000000..8566b4e
--- /dev/null
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_BasicInfoService/StationInfoService.cs"
@@ -0,0 +1,21 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using WIDESEAWCS_Core.BaseRepository;
+using WIDESEAWCS_Core.BaseServices;
+using WIDESEAWCS_IBasicInfoService;
+using WIDESEAWCS_Model.Models;
+
+namespace WIDESEAWCS_BasicInfoService
+{
+ public class StationInfoService : ServiceBase<Dt_StationInfo, IRepository<Dt_StationInfo>>, IStationInfoService
+ {
+ public StationInfoService(IRepository<Dt_StationInfo> BaseDal) : base(BaseDal)
+ {
+ }
+
+ public IRepository<Dt_StationInfo> Repository => BaseDal;
+ }
+}
--
Gitblit v1.9.3