From e32ac074e0cdc07b7551155e2e1c24684857f2b7 Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: 星期三, 03 十二月 2025 15:12:19 +0800
Subject: [PATCH] 修改内审
---
multi-system/src/main/java/com/gkhy/exam/system/service/impl/InformationPlatformServiceImpl.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InformationPlatformServiceImpl.java b/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InformationPlatformServiceImpl.java
index a28fe7b..e85eaef 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InformationPlatformServiceImpl.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/service/impl/InformationPlatformServiceImpl.java
@@ -25,11 +25,11 @@
@Override
public List<InformationPlatform> getInformationPlatforms(Long companyId) {
- if (companyId == null) {
- companyId = SecurityUtils.getCompanyId();
- }
+
LambdaQueryWrapper<InformationPlatform> queryWrapper = new LambdaQueryWrapper<>();
- queryWrapper.eq(InformationPlatform::getCompanyId, companyId);
+ if (companyId != null){
+ queryWrapper.eq(InformationPlatform::getCompanyId, companyId);
+ }
queryWrapper.eq(InformationPlatform::getDelFlag, UserConstant.ENABLE);
queryWrapper.orderByDesc(InformationPlatform::getCreateTime);
--
Gitblit v1.9.2