完善c端接口
This commit is contained in:
@@ -20,15 +20,41 @@ public class AliKeyConfig implements InitializingBean {
|
||||
@Value("${ali.accessKeySecret}")
|
||||
public String accessKeySecret;
|
||||
|
||||
@Value("${umApp.appAliKey}")
|
||||
public String umAppAliKey;
|
||||
|
||||
@Value("${umApp.appAliSecret}")
|
||||
public String umAppAliSecret;
|
||||
|
||||
|
||||
@Value("${umApp.androidKey}")
|
||||
public String umAppAndroidKey;
|
||||
|
||||
@Value("${umApp.IOSKey}")
|
||||
public String umAppIOSKey;
|
||||
|
||||
|
||||
// 终端ID
|
||||
public static String ACCESS_KEY_ID;
|
||||
|
||||
public static String ACCESS_KEY_SECRET;
|
||||
|
||||
public static String UMApp_Android_Key;
|
||||
|
||||
public static String UMApp_IOS_Key;
|
||||
|
||||
public static String UMApp_AliKey;
|
||||
|
||||
public static String UMApp_AliSecret;
|
||||
|
||||
@Override
|
||||
public void afterPropertiesSet() {
|
||||
ACCESS_KEY_ID = this.accessKeyId;
|
||||
ACCESS_KEY_SECRET = this.accessKeySecret;
|
||||
UMApp_Android_Key = this.umAppAndroidKey;
|
||||
UMApp_IOS_Key = this.umAppIOSKey;
|
||||
UMApp_AliKey = this.umAppAliKey;
|
||||
UMApp_AliSecret = this.umAppAliSecret;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -91,4 +91,8 @@ public class HttpStatus
|
||||
* 系统警告消息
|
||||
*/
|
||||
public static final int WARN = 601;
|
||||
|
||||
|
||||
// 用户过期或未开通VIP
|
||||
public static final int USER_VIP_EXPIRE = 801;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user