🎨 #2155 【企业微信】发送新客户欢迎语接口增加对视频类型的支持,同时修复结构不正确的问题

This commit is contained in:
pg
2021-06-21 11:58:13 +08:00
committed by GitHub
parent 8e0a6a3d40
commit 566e5f31c7
5 changed files with 135 additions and 9 deletions

View File

@@ -334,4 +334,24 @@ public class WxCpConsts {
* */
public static final String WEBVIEW = "webview";
}
@UtilityClass
public static class WelcomeMsgType {
/**
* 图片消息.
*/
public static final String IMAGE = "image";
/**
* 图文消息.
*/
public static final String LINK = "link";
/**
* 视频消息.
*/
public static final String VIDEO = "video";
/**
* 小程序消息.
*/
public static final String MINIPROGRAM = "miniprogram";
}
}