From c4c88b0ec16be3240d691ad4fd3cf01b35a12e02 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期六, 24 五月 2025 11:02:57 +0800
Subject: [PATCH] 排班功能模块,其中查询条件用户列表查询中,不应该查出超级管理员
---
pms-parent/pms-common/src/main/java/com/dy/common/webUtil/BaseResponseUtils.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pms-parent/pms-common/src/main/java/com/dy/common/webUtil/BaseResponseUtils.java b/pms-parent/pms-common/src/main/java/com/dy/common/webUtil/BaseResponseUtils.java
index 64d0dda..245bb9f 100644
--- a/pms-parent/pms-common/src/main/java/com/dy/common/webUtil/BaseResponseUtils.java
+++ b/pms-parent/pms-common/src/main/java/com/dy/common/webUtil/BaseResponseUtils.java
@@ -21,11 +21,11 @@
}
public static BaseResponse buildToLogin(){
- return buildResult(ResultCodeMsg.RsCode.TOLOGIN_CODE, ResultCodeMsg.RsMsg.TOLOGIN_MESSAGE, null);
+ return buildResult(ResultCodeMsg.RsCode.TOLOGIN_CODE, ResultCodeMsg.RsMsg.TOLOGIN_MESSAGE, ResultCodeMsg.RsMsg.TOLOGIN_MESSAGE);
}
public static BaseResponse buildNoPower(){
- return buildResult(ResultCodeMsg.RsCode.NOPOWER_CODE, ResultCodeMsg.RsMsg.NOPOWER_MESSAGE, null);
+ return buildResult(ResultCodeMsg.RsCode.NOPOWER_CODE, ResultCodeMsg.RsMsg.NOPOWER_MESSAGE, ResultCodeMsg.RsMsg.NOPOWER_MESSAGE);
}
public static BaseResponse buildException(String message){
--
Gitblit v1.8.0