Application/HStation.Application.Xhs.Core/01-project/XhsProject_StdController.cs
@@ -26,5 +26,16 @@ }, Yw.Service.ConfigHelper.CacheLevel1); return vm_list; } /// <summary> /// 通过 ID 获取 /// </summary> [Route("GetByID@V1.0")] [HttpGet] public XhsProjectStdDto GetByID([FromQuery][Required] IDInput input) { var model = new Service.XhsProject().GetByID(input.ID); return model == null ? null : new XhsProjectStdDto(model); } } }