lixiaojun
2025-01-20 6e1306ab578ed1ad79fc33b0bb7e496b897bf4a4
BLL/HStation.BLL.Assets.Core/02-httpclient/18-Hydrant/AssetsHydrantMain.cs
@@ -9,12 +9,16 @@
    {
        protected override string Prefix
        {
            get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/AssetsHydrantMain"; }
            get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/Assets/Hydrant/Main"; }
        }
        public Task<List<AssetsHydrantMainDto>> GetBySeriesID(long ID)
        public async Task<List<AssetsHydrantMainDto>> GetBySeriesID(long ID)
        {
            throw new NotImplementedException();
            var paras = new List<(string Name, object Value)>()
            {
                ("SeriesID",ID)
            };
            return await GetUrl("GetBySeriesID@V1.0").Get<List<AssetsHydrantMainDto>>(paras);
        }
        /// <summary>