duheng
2024-08-21 6c88a90d2330a27c0052a22538f6ebd6200faae7
BLL/HStation.BLL.Xhs.Core/02-httpclient/01-project/XhsProjectStd.cs
@@ -20,6 +20,17 @@
            return await GetUrl("GetAll@V1.0").Get<List<XhsProjectStdDto>>();
        }
        /// <summary>
        ///
        /// </summary>
        public async Task<XhsProjectStdDto> GetByID(long ID)
        {
            var paras = new List<(string Name, object Value)>()
            {
                (nameof(ID),ID)
            };
            return await GetUrl("GetByID@V1.0").Get<XhsProjectStdDto>(paras);
        }