-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 微信开放平台:1. WxOpenInRedisConfigStorage 支持 JedisPool/JedisSentinelPool 等 Pool<Jedis> 的子类;2. WxOpenInRedisConfigStorage 增加 keyPrefix 以支持可配置的前缀; * 微信开放平台:增加小程序代码模板库管理
- Loading branch information
1 parent
3481cca
commit 75c038d
Showing
3 changed files
with
133 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/WxOpenMaCodeTemplate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package me.chanjar.weixin.open.bean; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Data; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* @author <a href="https://github.com/charmingoh">Charming</a> | ||
* @since 2018-04-26 17:10 | ||
*/ | ||
@Data | ||
public class WxOpenMaCodeTemplate implements Serializable { | ||
private static final long serialVersionUID = -3278116984473619010L; | ||
/** | ||
* 草稿id | ||
*/ | ||
@SerializedName(value = "draftId", alternate = "draft_id") | ||
private Long draftId; | ||
/** | ||
* 模版id | ||
*/ | ||
@SerializedName(value = "templateId", alternate = "template_id") | ||
private Long templateId; | ||
/** | ||
* 模版版本号,开发者自定义字段 | ||
*/ | ||
@SerializedName(value = "userVersion", alternate = "user_version") | ||
private String userVersion; | ||
/** | ||
* 模版描述 开发者自定义字段 | ||
*/ | ||
@SerializedName(value = "userDesc", alternate = "user_desc") | ||
private String userDesc; | ||
/** | ||
* 开发者上传草稿时间 / 被添加为模版的时间 | ||
*/ | ||
@SerializedName(value = "createTime", alternate = "create_time") | ||
private Long createTime; | ||
} |