
com.binarywang.spring.starter.wxjava.channel.properties.WxChannelSingleProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wx-java-channel-multi-spring-boot-starter Show documentation
Show all versions of wx-java-channel-multi-spring-boot-starter Show documentation
微信视频号开发的 Spring Boot Starter::支持多账号配置
The newest version!
package com.binarywang.spring.starter.wxjava.channel.properties;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* 微信视频号相关配置属性
*
* @author Winnie
* @date 2024/9/13
*/
@Data
@NoArgsConstructor
public class WxChannelSingleProperties implements Serializable {
private static final long serialVersionUID = 5306630351265124825L;
/**
* 设置微信视频号的 appid.
*/
private String appId;
/**
* 设置微信视频号的 secret.
*/
private String secret;
/**
* 设置微信视频号的 token.
*/
private String token;
/**
* 设置微信视频号的 EncodingAESKey.
*/
private String aesKey;
/**
* 是否使用稳定版 Access Token
*/
private boolean useStableAccessToken = false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy