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); }