🆕 #1793 企业微信添加应用管理的设置工作台自定义展示模块

Co-authored-by: sysong <sysong@chutianyun.gov.cn>
This commit is contained in:
amhere
2020-09-30 12:52:52 +08:00
committed by GitHub
parent cd0c63fde6
commit 8428270e67
10 changed files with 421 additions and 0 deletions

View File

@@ -54,6 +54,13 @@ public final class WxCpApiPathConsts {
public static final String AGENT_LIST = "/cgi-bin/agent/list";
}
@UtilityClass
public static class WorkBench {
public static final String WORKBENCH_TEMPLATE_SET = "/cgi-bin/agent/set_workbench_template";
public static final String WORKBENCH_TEMPLATE_GET = "/cgi-bin/agent/get_workbench_template";
public static final String WORKBENCH_DATA_SET = "/cgi-bin/agent/set_workbench_data";
}
@UtilityClass
public static class OAuth2 {
public static final String GET_USER_INFO = "/cgi-bin/user/getuserinfo?code=%s&agentid=%d";

View File

@@ -314,4 +314,23 @@ public class WxCpConsts {
*/
public static final String MARKDOWN = "markdown";
}
public static class WorkBenchType {
/*
* 关键数据型
* */
public static final String KEYDATA = "keydata";
/*
* 图片型
* */
public static final String IMAGE = "image";
/*
* 列表型
* */
public static final String LIST = "list";
/*
* webview型
* */
public static final String WEBVIEW = "webview";
}
}