完善c端接口

This commit is contained in:
menxipeng
2025-07-21 22:50:24 +08:00
parent 658a1f0e1b
commit 83fdbf2e41
27 changed files with 378 additions and 295 deletions

View File

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

View File

@@ -91,4 +91,8 @@ public class HttpStatus
* 系统警告消息
*/
public static final int WARN = 601;
// 用户过期或未开通VIP
public static final int USER_VIP_EXPIRE = 801;
}