mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🎨 add serialVersionUID for some class
This commit is contained in:
parent
2c4b5ea128
commit
5c2a36c538
@ -18,6 +18,8 @@ import java.util.concurrent.locks.ReentrantLock;
|
||||
* @author libo
|
||||
*/
|
||||
public class WxCpCorpGroupDefaultConfigImpl implements WxCpCorpGroupConfigStorage, Serializable {
|
||||
private static final long serialVersionUID = -8392908346536154435L;
|
||||
|
||||
private final transient Map<String, Lock> corpAccessTokenLocker = new ConcurrentHashMap<>();
|
||||
|
||||
private final Map<String, String> corpAccessTokenMap = new HashMap<>();
|
||||
|
@ -23,6 +23,8 @@ import java.util.concurrent.locks.Lock;
|
||||
*/
|
||||
@Builder
|
||||
public class WxCpCorpGroupRedissonConfigImpl implements WxCpCorpGroupConfigStorage, Serializable {
|
||||
private static final long serialVersionUID = 1269450173683931930L;
|
||||
|
||||
private final transient Map<String, Lock> corpAccessTokenLocker = new ConcurrentHashMap<>();
|
||||
|
||||
/**
|
||||
|
@ -212,6 +212,11 @@ public class WxCpTpRedissonConfigImpl implements WxCpTpConfigStorage, Serializab
|
||||
return corpSecret;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setProviderSecret(String providerSecret) {
|
||||
this.providerSecret = providerSecret;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getProviderSecret() {
|
||||
return providerSecret;
|
||||
|
Loading…
Reference in New Issue
Block a user