From 9d8b4d39838e7d8479c32aa04a1cefda6d571fee Mon Sep 17 00:00:00 2001 From: wyw <571921741@qq.com> Date: Tue, 16 Jul 2024 15:36:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A3=80=E6=9F=A5=E6=B1=87=E6=80=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/Api/BSSafeCheckController.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSSafeCheckController.cs b/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSSafeCheckController.cs index 4c8a294..4f51ca2 100644 --- a/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSSafeCheckController.cs +++ b/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSSafeCheckController.cs @@ -7548,7 +7548,7 @@ namespace APT.BS.WebApi.Controllers.Api var listAre = GetEntities(e => e.SAFE_CHECK_ID == safecheck.ID, null, "Nav_RiskArea"); var listProjer = GetEntities(e => e.SAFE_CHECK_ID == safecheck.ID, null, "Nav_CheckProject"); - var listCategory = GetEntities(e => e.SAFE_CHECK_ID == safecheck.ID, null, "Nav_CheckProjectCategory"); + //var listCategory = GetEntities(e => e.SAFE_CHECK_ID == safecheck.ID, null, "Nav_CheckProjectCategory"); var listFiles = GetEntities(e => e.SAFE_CHECK_ID == safecheck.ID, null, "Nav_ImgFile.Nav_File"); if (listAre != null && listAre.Any()) { @@ -7558,10 +7558,10 @@ namespace APT.BS.WebApi.Controllers.Api { safecheck.Nav_ListCheckProject = listProjer.ToList(); } - if (listCategory != null && listCategory.Any()) - { - safecheck.Nav_ListCheckProjectCategory = listCategory.ToList(); - } + //if (listCategory != null && listCategory.Any()) + //{ + // safecheck.Nav_ListCheckProjectCategory = listCategory.ToList(); + //} if (listFiles != null && listFiles.Any()) { safecheck.Nav_Files = listFiles.ToList();