From 7f5953fc973d65cc5d2bd496dda344fe1c6a97c8 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 02 Jul 2020 17:57:31 +0800 Subject: [PATCH] 20200702 代码提交 --- src/main/java/com/xcong/excoin/common/contants/AppContants.java | 27 ++++++++++++++++++++++++++- 1 files changed, 26 insertions(+), 1 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 0ad9052..732ae93 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头部 */ @@ -47,6 +49,29 @@ /** * 初始化金额 */ - public static final BigDecimal INIT_MONEY = new BigDecimal(0.000000); + public static final BigDecimal INIT_MONEY = BigDecimal.ZERO; + + + public static final Integer INIT_SIMULATE_MONEY = 5000; + + /** + * homeSymbols 接口状态值 币币 + */ + public static final int HOME_SYMBOLS_COIN = 1; + + /** + * homeSymbols 接口状态值 合约 + */ + public static final int HOME_SYMBOLS_CONTRACT = 2; + + /** + * 验证码前缀 手机 + */ + public static final String VERIFY_CODE_PREFIX = "CODE_SMS_"; + + /** + * 图片后缀 + */ + public static final String UPLOAD_IMAGE_SUFFIX = ".jpg"; } -- Gitblit v1.9.1