doum
11 小时以前 36f691267e45ca2861bed663fdcf5f2efcefdfce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.doumee.core.jiandaoyun.constants;
 
/**
 * http 相关的常量
 */
public class HttpConstant {
    public static final String HOST = "https://api.jiandaoyun.com/api/";
 
    /**
     * 部门相关的接口前缀
     */
    public static final String DEPT_BASE_PATH = "/corp/department/";
 
    /**
     * 成员相关的接口前缀
     */
    public static final String MEMBER_BASE_PATH = "/corp/user/";
 
    /**
     * 应用相关的接口前缀
     */
    public static final String APP_BASE_PATH = "/app/";
 
 
    /**
     * 企业互联的接口前缀
     */
    public static final String CORP_COOP_BASE_PATH = "/corp/guest/";
 
    /**
     * 角色相关的接口前缀
     */
    public static final String ROLE_BASE_PATH = "/corp/role/";
 
    /**
     * 角色组相关的接口前缀
     */
    public static final String ROLE_GROUP_BASE_PATH = "/corp/role_group/";
 
    /**
     * 表单相关的接口前缀
     */
    public static final String FORM_BASE_PATH = "/app/entry/";
 
    /**
     * 表单相关的接口前缀
     */
    public static final String FORM_DATA_BASE_PATH = "/app/entry/data/";
 
    /**
     * API_KEY
     */
    public static final String API_KEY = "JsmYomhn3dissp9ZJ6QeTpnH2xKoKZgw";
 
    public static final String APP_ID = "APP_ID";
 
    public static final String ENTRY_ID = "ENTRY_ID";
}