zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package cn.autoform.bean.system;
Z 2
3 import cn.autoform.web.client.conster.BaseConst;
4
5 public interface PrivateRestConst extends BaseConst{
6     
7     String TOKEN         = "token";
8     
9     String TENANT_ID     = "tenantId";
10     String TENANT_NAME  = "tenantName";
11     String COMPANY_NAME = "companyName";
12     String COMPANY_ID    = "companyId";
13     String SERVICE_ID = "serviceId";
14     String SERVER_NAME = "serverName";
15     String APP_ID        = "appId";
16     String APP_KEY      ="appKey";
17     String OPEN_ID        = "openId";
18     String USER_NAME = "userName";
19     String LIVEMODE        = "livemode";
20     
21     /**
22      * 权限系统对应appKey
23      */
24     String POWER_APPKEY = "powerAppKey";
25     
26     /**
27      * 权限系统对应securityKey
28      */
29     String POWER_SECURITYKEY = "powerSecurityKey";
30     /**
31      * 业务系统接入id
32      */
33     String ACCESS_ID="accessId";
34     /**
35      * 业务系统安全验证key
36      */
37     String SECURITY_KEY="securityKey";
38 }