| | |
| | | package cc.mrbird.febs.common.contants;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.LinkedHashMap;
|
| | | import java.util.LinkedList;
|
| | |
|
| | | public class AppContants {
|
| | |
| | | * 初始化金额
|
| | | */
|
| | | public static final BigDecimal INIT_MONEY = BigDecimal.ZERO;
|
| | |
|
| | | /**
|
| | | * 游客初始化金额
|
| | | */
|
| | | public static final BigDecimal TOURIST_INIT_MONEY = new BigDecimal("5100");
|
| | |
|
| | |
|
| | | public static final Integer INIT_SIMULATE_MONEY = 5000;
|
| | |
| | | public static final BigDecimal NFT_ACTIVE_PRICE = new BigDecimal("10");
|
| | |
|
| | | public static final String REDIS_KEY_TFC_NEW_PRICE = "TFC_NEW_PRICE";
|
| | |
|
| | | public static final String MEMBER_TRANSFER_CODE = "123456";
|
| | | public static final String MEMBER_LOGIN_CODE = "123456";
|
| | | public static final BigDecimal ONHOOK_BASIC_AMOUNT = new BigDecimal(51);
|
| | |
|
| | |
|
| | | }
|