mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-06 13:47:47 +08:00
🎨 增加序列化接口支持
This commit is contained in:
parent
ef6a814a75
commit
d6da675d31
@ -5,6 +5,8 @@ import lombok.Builder;
|
|||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 微信接口地址域名部分的自定义设置信息.
|
* 微信接口地址域名部分的自定义设置信息.
|
||||||
*
|
*
|
||||||
@ -15,10 +17,12 @@ import lombok.NoArgsConstructor;
|
|||||||
@Builder
|
@Builder
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class WxMpHostConfig {
|
public class WxMpHostConfig implements Serializable {
|
||||||
public static final String API_DEFAULT_HOST_URL = "https://api.weixin.qq.com";
|
public static final String API_DEFAULT_HOST_URL = "https://api.weixin.qq.com";
|
||||||
public static final String MP_DEFAULT_HOST_URL = "https://mp.weixin.qq.com";
|
public static final String MP_DEFAULT_HOST_URL = "https://mp.weixin.qq.com";
|
||||||
public static final String OPEN_DEFAULT_HOST_URL = "https://open.weixin.qq.com";
|
public static final String OPEN_DEFAULT_HOST_URL = "https://open.weixin.qq.com";
|
||||||
|
private static final long serialVersionUID = 6998547464242356375L;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 对应于:https://api.weixin.qq.com
|
* 对应于:https://api.weixin.qq.com
|
||||||
|
Loading…
Reference in New Issue
Block a user