dengzedong
2024-12-31 f1fe397df175a7ee809ea28530419116af84af28
iailab-module-system/iailab-module-system-api/src/main/java/com/iailab/module/system/enums/oauth2/OAuth2GrantTypeEnum.java
@@ -22,7 +22,7 @@
    private final String grantType;
    public static OAuth2GrantTypeEnum getByGranType(String grantType) {
    public static OAuth2GrantTypeEnum getByGrantType(String grantType) {
        return ArrayUtil.firstMatch(o -> o.getGrantType().equals(grantType), values());
    }