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