v1.0 : 应用拦截版本改为1.0.0

This commit is contained in:
fbc
2022-09-28 16:38:15 +08:00
parent 1d3cef3e21
commit d76d74bb48
7 changed files with 14 additions and 14 deletions

View File

@@ -138,7 +138,7 @@ public class Constant {
/**
* 可使用的最低app版本
*/
public static final String LOWEST_VERSION_FOR_USE = "1.5";
public static final String LOWEST_VERSION_FOR_USE = "1.0";
public static class ExchangeDiamondGold {
@@ -4132,7 +4132,7 @@ public class Constant {
}
// 塔罗活动限制版本
public final static String LUCKY_TAROT_LIMIT_APP_VERSION = "2.1.5";
public final static String LUCKY_TAROT_LIMIT_APP_VERSION = "1.0.0";
/**
* 房间玩法类型
@@ -4384,7 +4384,7 @@ public class Constant {
}
public static class BigGooseConstant {
public static final String big_goose_appver = "4.0.0";//appversion
public static final String big_goose_appver = "1.0.0";//appversion
//推荐位非置顶麦上人数要求
public static final Integer home_not_top_default_mic_num = 3;//appversion
//热门房间麦上人数要求
@@ -5248,7 +5248,7 @@ public class Constant {
/**
* 敏感信息des加密的客户端版本号
*/
public final static String ENCRYPT_SENSITIVE_INFO_APP_VERSION = "4.4.0";
public final static String ENCRYPT_SENSITIVE_INFO_APP_VERSION = "1.0.0";
/**
@@ -5421,7 +5421,7 @@ public class Constant {
public static final Byte RECEIVE_GIFT = 2;
}
/** 幸运礼物单独面板展示开始版本 **/
public static final String LUCKY_BAG_GIFT_SINGLE_SHOW_VERSION = "4.7.0";
public static final String LUCKY_BAG_GIFT_SINGLE_SHOW_VERSION = "1.0.0";
public static class NewUserStart {

View File

@@ -38,7 +38,7 @@ public class SwaggerAutoConfiguration {
.apis(RequestHandlerSelectors.basePackage("com.accompany"))
.paths(path -> !StringUtils.contains(path, "/internal/"))
.build()
.apiInfo(new ApiInfoBuilder().title("平台接口").description("平台业务接口").build())
.apiInfo(new ApiInfoBuilder().title("peko接口").description("peko业务接口").build())
.enable(!onlineEnv);
}