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