mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-27 11:53:48 +08:00
🎨 #3005【小程序/公众号】提供更新access_token的消费接口
This commit is contained in:
@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user