AuthWeChatEnterpriseWebScope.java 565 字节
Newer Older
G
guanhua.li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package me.zhyd.oauth.enums.scope;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * 企业自建应用授权范围
 *
 * @author liguanhua(347826496@qq.com)
 * @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;

}