From 2d381e3822a5c2d12632bac45d44deb0b41729cf Mon Sep 17 00:00:00 2001
From: wanghc <2466022993@qq.com>
Date: Tue, 27 Jun 2023 13:28:24 +0800
Subject: [PATCH] 日志记录位置修改
---
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/ResponseVo.java | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/ResponseVo.java b/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/ResponseVo.java
index 2ddf3d4..43cea10 100644
--- a/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/ResponseVo.java
+++ b/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/ResponseVo.java
@@ -28,6 +28,10 @@
return new ResponseVo(body);
}
+ public static ResponseVo ok() {
+ return new ResponseVo();
+ }
+
public static ResponseVo fail(int errorCode, String errMsg) {
return new ResponseVo(errorCode, errMsg, null);
}
--
Gitblit v1.8.0