diff --git a/platform-common/src/main/java/com/lyms/platform/common/constants/ErrorCodeConstants.java b/platform-common/src/main/java/com/lyms/platform/common/constants/ErrorCodeConstants.java index 3effd62..017752a 100644 --- a/platform-common/src/main/java/com/lyms/platform/common/constants/ErrorCodeConstants.java +++ b/platform-common/src/main/java/com/lyms/platform/common/constants/ErrorCodeConstants.java @@ -3,6 +3,7 @@ package com.lyms.platform.common.constants; public class ErrorCodeConstants { // 成功 public static final int SUCCESS = 0; + public static final String SUCCESS_DESCRIPTION = "成功"; // 发送验证码失败 public static final int VERIFY_CODE_FAIL = 4001; @@ -33,6 +34,7 @@ public class ErrorCodeConstants { // 系统异常 public static final int SYSTEM_ERROR = 4099; + public static final String SYSTEM_ERROR_DESCRIPTION = "系统异常"; public static final int BUSINESS_ERROR = 4098;