All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.healthy.common.security.properties.WeixinProperties Maven / Gradle / Ivy

There is a newer version: 1.2.1.RELEASE
Show newest version
package com.healthy.common.security.properties;

import lombok.Data;

/**
 * 微信登录相关配置项
 */
@Data
public class WeixinProperties {

    /**
     * Application id.
     */
    private String appId;

    /**
     * Application secret.
     */
    private String appSecret;

    /**
     * 第三方id,用来决定发起第三方登录的url,默认是 weixin。
     */
    private String providerId = "weixin";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy