:new :#2382 【企业微信】增加获取商品图册的接口

This commit is contained in:
Lo_ading
2021-11-14 21:31:29 +08:00
committed by GitHub
parent ef99e3d24f
commit 93779d227a
11 changed files with 298 additions and 6 deletions

View File

@@ -219,6 +219,9 @@ public interface WxCpApiPathConsts {
String GET_GROUP_MSG_TASK = "/cgi-bin/externalcontact/get_groupmsg_task";
String GET_GROUP_MSG_LIST_V2 = "/cgi-bin/externalcontact/get_groupmsg_list_v2";
String GET_PRODUCT_ALBUM = "/cgi-bin/externalcontact/get_product_album";
String GET_PRODUCT_ALBUM_LIST = "/cgi-bin/externalcontact/get_product_album_list";
String GROUP_WELCOME_TEMPLATE_ADD = "/cgi-bin/externalcontact/group_welcome_template/add";
String GROUP_WELCOME_TEMPLATE_EDIT = "/cgi-bin/externalcontact/group_welcome_template/edit";
String GROUP_WELCOME_TEMPLATE_GET = "/cgi-bin/externalcontact/group_welcome_template/get";

View File

@@ -359,4 +359,15 @@ public class WxCpConsts {
*/
public static final String FILE = "file";
}
@UtilityClass
public static class ProductAttachmentType {
/**
* 图片消息.
*/
public static final String IMAGE = "image";
}
}