mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
新增卡券的客服消息类型
1. WxCardBuilder用于构建卡券的客服消息; 2. WxMpCustomMessage新作cardId字段及卡券builder; 3. CustomMessageGsonAdapter处理cardId序列化名字; 4. WxConsts新作WXCARD卡券类型。
This commit is contained in:
@@ -75,6 +75,12 @@ public class WxMpCustomMessageGsonAdapter implements JsonSerializer<WxMpCustomMe
|
||||
newsJsonObject.add("articles", articleJsonArray);
|
||||
messageJson.add("news", newsJsonObject);
|
||||
}
|
||||
|
||||
if (WxConsts.CUSTOM_MSG_WXCARD.equals(message.getMsgType())) {
|
||||
JsonObject wxcard = new JsonObject();
|
||||
wxcard.addProperty("card_id", message.getCardId());
|
||||
messageJson.add("wxcard", wxcard);
|
||||
}
|
||||
|
||||
if (StringUtils.isNotBlank(message.getKfAccount())){
|
||||
JsonObject newsJsonObject = new JsonObject();
|
||||
|
||||
Reference in New Issue
Block a user