Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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;

Expand All @@ -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) {
Expand Down