#615 公众号客服消息添加 "发送小程序卡片" 类型

This commit is contained in:
Boris
2018-06-06 11:03:48 +08:00
committed by Binary Wang
parent f704b1a538
commit 96e7310143
5 changed files with 128 additions and 16 deletions

View File

@@ -30,6 +30,8 @@ public class WxMpKefuMessage implements Serializable {
private String kfAccount;
private String cardId;
private String mpNewsMediaId;
private String miniProgramAppId;
private String miniProgramPagePath;
private List<WxArticle> articles = new ArrayList<>();
/**
@@ -88,6 +90,13 @@ public class WxMpKefuMessage implements Serializable {
return new WxCardBuilder();
}
/**
* 小程序卡片
*/
public static MiniProgramPageBuilder MINIPROGRAMPAGE() {
return new MiniProgramPageBuilder();
}
/**
* <pre>
* 请使用
@@ -99,6 +108,7 @@ public class WxMpKefuMessage implements Serializable {
* {@link WxConsts.KefuMsgType#NEWS}
* {@link WxConsts.KefuMsgType#MPNEWS}
* {@link WxConsts.KefuMsgType#WXCARD}
* {@link WxConsts.KefuMsgType#MINIPROGRAMPAGE}
* </pre>
*
*/