From 6cdfe1d568d06bc63bb513ce0ef1df6aac3c7c3d Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Sat, 20 Feb 2021 15:32:12 +0800 Subject: [PATCH] fix --- src/main/java/com/xcong/excoin/common/contants/AppContants.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/common/contants/AppContants.java b/src/main/java/com/xcong/excoin/common/contants/AppContants.java index 9bfbc23..40a7065 100644 --- a/src/main/java/com/xcong/excoin/common/contants/AppContants.java +++ b/src/main/java/com/xcong/excoin/common/contants/AppContants.java @@ -19,6 +19,8 @@ */ public static final String APP_LOGIN_PREFIX = "app_"; + public static final String PC_LOGIN_PREFIX = "pc_"; + /** * token头部 */ @@ -49,6 +51,9 @@ */ public static final BigDecimal INIT_MONEY = BigDecimal.ZERO; + + public static final Integer INIT_SIMULATE_MONEY = 5000; + /** * homeSymbols 接口状态值 币币 */ @@ -69,4 +74,6 @@ */ public static final String UPLOAD_IMAGE_SUFFIX = ".jpg"; + public static final String TIME_OUT = "time_out"; + } -- Gitblit v1.9.1