From edb3d6cded4db1c8a2886f6bdc39c2fe4c69b67a Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期三, 29 五月 2024 10:28:01 +0800 Subject: [PATCH] 优化升级,去除痕迹 --- Yw.Application.Bimface.Core/02-bimface-file-label/BimfaceFileLabel_Controller.cs | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Yw.Application.Bimface.Core/02-bimface-file-label/BimfaceFileLabel_Controller.cs b/Yw.Application.Bimface.Core/02-bimface-file-label/BimfaceFileLabel_Controller.cs index 217a382..2f8ccb8 100644 --- a/Yw.Application.Bimface.Core/02-bimface-file-label/BimfaceFileLabel_Controller.cs +++ b/Yw.Application.Bimface.Core/02-bimface-file-label/BimfaceFileLabel_Controller.cs @@ -7,7 +7,7 @@ [ApiDescriptionSettings("Bimface", Name = "Bimface鏂囦欢鏍囩", Order = 90000)] public class BimfaceFileLabel_Controller : IDynamicApiController { - private readonly Service.BimfaceFileLabel _service = new(); + private readonly Yw.Service.BimfaceFileLabel _service = new(); #region Query @@ -32,7 +32,9 @@ { var model = _service.GetByID(input.ID); if (model == null) + { return default; + } return new BimfaceFileLabelDto(model); } -- Gitblit v1.9.3