mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-23 22:11:40 +08:00
🐛 【公众号】 短key解析接口返回结果结构修复
This commit is contained in:
parent
87c1952eef
commit
1652ae2f79
@ -1,5 +1,6 @@
|
||||
package me.chanjar.weixin.mp.bean.result;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
|
||||
@ -18,14 +19,17 @@ public class WxMpShortKeyResult implements Serializable {
|
||||
/**
|
||||
* 长信息
|
||||
*/
|
||||
@SerializedName("long_data")
|
||||
protected String longData;
|
||||
/**
|
||||
* 创建的时间戳
|
||||
*/
|
||||
@SerializedName("create_time")
|
||||
protected long createTime;
|
||||
/**
|
||||
* 剩余的过期秒数
|
||||
*/
|
||||
@SerializedName("expire_seconds")
|
||||
protected long expireSeconds;
|
||||
|
||||
public static WxMpShortKeyResult fromJson(String json) {
|
||||
|
Loading…
Reference in New Issue
Block a user