|
@@ -123,7 +123,7 @@ public class CommonResult<T> implements Serializable{
|
|
|
|
|
|
// 构建失败
|
|
|
public static <T> CommonResult<T> error() {
|
|
|
- return new CommonResult<>(CODE_ERROR, "服务器异常", null);
|
|
|
+ return new CommonResult<>(CODE_ERROR, "抱歉,系统遇到了问题,请稍后再试或联系技术支持", null);
|
|
|
}
|
|
|
public static <T> CommonResult<T> error(String msg) {
|
|
|
return new CommonResult<>(CODE_ERROR, msg, null);
|