diff --git a/library/src/resp/response.rs b/library/src/resp/response.rs index 2331b02..5e21a13 100644 --- a/library/src/resp/response.rs +++ b/library/src/resp/response.rs @@ -103,7 +103,7 @@ impl IntoResponse for ResErr { let code = 80000; match msg { Some(v) => Status::<()>::Err(code, v), - None => Status::<()>::Err(code, String::from("社交服务异常")), + None => Status::<()>::Err(code, String::from("社交业务异常")), } } };