!340 修复yudao-module-system-api/ErrorCodeConstants.java中错误码重复的问题

Merge pull request !340 from 王添翼/master
This commit is contained in:
芋道源码 2022-12-25 03:38:48 +00:00 committed by Gitee
commit 9d5a821610
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -139,6 +139,6 @@ public interface ErrorCodeConstants {
// ========== OAuth2 授权 1002022000 =========
ErrorCode OAUTH2_CODE_NOT_EXISTS = new ErrorCode(1002022000, "code 不存在");
ErrorCode OAUTH2_CODE_EXPIRE = new ErrorCode(1002022000, "code 已过期");
ErrorCode OAUTH2_CODE_EXPIRE = new ErrorCode(1002022001, "code 已过期");
}