From 12e75356b0730fc756d04f52d3471bea1b9e45db Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Tue, 27 Jun 2023 13:41:43 +0800 Subject: [PATCH] update --- .../com/jsowell/thirdparty/amap/common/AMapCommonResult.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/common/AMapCommonResult.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/common/AMapCommonResult.java index 6fc83dafa..08397f8c9 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/common/AMapCommonResult.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/amap/common/AMapCommonResult.java @@ -25,7 +25,7 @@ public class AMapCommonResult { public AMapCommonResult successResponse(Object responseData) { AMapResponse response = new AMapResponse(); response.setCode("1000"); - response.setMsg("请求成功"); + response.setMsg("请求成功!"); response.setData(responseData); return new AMapCommonResult(response); }