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";
|
}
|