AuthWeChatEnterpriseWebScope.java 568 字节
Newer Older
G
guanhua.li 已提交
1 2 3 4 5 6 7 8
package me.zhyd.oauth.enums.scope;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * 企业自建应用授权范围
 *
智布道's avatar
智布道 已提交
9
 * @author liguanhua (347826496(a)qq.com)
G
guanhua.li 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * @since 1.15.9
 */
@Getter
@AllArgsConstructor
public enum AuthWeChatEnterpriseWebScope implements AuthScope {
    /**
     * {@code scope} 含义,以{@code description} 为准
     */
    SNSAPI_BASE("snsapi_base", "应用授权作用域。企业自建应用固定填写:snsapi_base", true);

    private String scope;
    private String description;
    private boolean isDefault;

}