zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package cn.autoform.bean.system;
 
import cn.autoform.web.client.conster.BaseConst;
 
public interface PrivateRestConst extends BaseConst{
    
    String TOKEN         = "token";
    
    String TENANT_ID     = "tenantId";
    String TENANT_NAME  = "tenantName";
    String COMPANY_NAME = "companyName";
    String COMPANY_ID    = "companyId";
    String SERVICE_ID = "serviceId";
    String SERVER_NAME = "serverName";
    String APP_ID        = "appId";
    String APP_KEY      ="appKey";
    String OPEN_ID        = "openId";
    String USER_NAME = "userName";
    String LIVEMODE        = "livemode";
    
    /**
     * 权限系统对应appKey
     */
    String POWER_APPKEY = "powerAppKey";
    
    /**
     * 权限系统对应securityKey
     */
    String POWER_SECURITYKEY = "powerSecurityKey";
    /**
     * 业务系统接入id
     */
    String ACCESS_ID="accessId";
    /**
     * 业务系统安全验证key
     */
    String SECURITY_KEY="securityKey";
}