🎨 #3005【小程序/公众号】提供更新access_token的消费接口

This commit is contained in:
FreeOfYou
2023-05-11 20:18:41 +08:00
committed by GitHub
parent 077f828019
commit 899ea653be
6 changed files with 108 additions and 8 deletions

View File

@ -0,0 +1,19 @@
package me.chanjar.weixin.common.bean;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
/**
* token
*
* @author cn
*/
@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class WxAccessTokenEntity extends WxAccessToken {
private String appid;
}