From 4c483d22f521776536012c24e82fcbb4ec4643fd Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期一, 17 二月 2025 21:24:34 +0800
Subject: [PATCH] 报表提交

---
 BLL/HStation.BLL.Assets.Core/02-httpclient/15-Tank/AssetsTankMain.cs |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/BLL/HStation.BLL.Assets.Core/02-httpclient/15-Tank/AssetsTankMain.cs b/BLL/HStation.BLL.Assets.Core/02-httpclient/15-Tank/AssetsTankMain.cs
index ead2a30..342ad38 100644
--- a/BLL/HStation.BLL.Assets.Core/02-httpclient/15-Tank/AssetsTankMain.cs
+++ b/BLL/HStation.BLL.Assets.Core/02-httpclient/15-Tank/AssetsTankMain.cs
@@ -9,12 +9,16 @@
     {
         protected override string Prefix
         {
-            get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/AssetsTankMain"; }
+            get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/Assets/Tank/Main"; }
         }
 
-        public Task<List<AssetsTankMainDto>> GetBySeriesID(long ID)
+        public async Task<List<AssetsTankMainDto>> GetBySeriesID(long ID)
         {
-            throw new NotImplementedException();
+            var paras = new List<(string Name, object Value)>()
+            {
+                ("SeriesID",ID)
+            };
+            return await GetUrl("GetBySeriesID@V1.0").Get<List<AssetsTankMainDto>>(paras);
         }
 
         /// <summary>

--
Gitblit v1.9.3