2025-03-15 18:38:04 +08:00
|
|
|
package com.ruoyi.common.constants;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 配置键值常量
|
|
|
|
* @author wjh
|
|
|
|
* 2025/3/13
|
|
|
|
*/
|
|
|
|
public class ConfigKeys {
|
2025-04-07 16:20:50 +08:00
|
|
|
// 用户默认服务费类型
|
|
|
|
public static final String USER_DEFAULT_WITHDRAW_SERVICE_TYPE = "user.default.withdraw.service.type";
|
|
|
|
// 用户默认服务费值
|
|
|
|
public static final String USER_DEFAULT_WITHDRAW_SERVICE_VALUE = "user.default.withdraw.service.value";
|
2025-04-08 08:46:02 +08:00
|
|
|
// 最低提现金额
|
|
|
|
public static final String WITHDRAW_MIN_AMOUNT = "withdraw.min.amount";
|
|
|
|
// 最高提现金额
|
|
|
|
public static final String WITHDRAW_MAX_AMOUNT = "withdraw.max.amount";
|
2025-03-15 18:38:04 +08:00
|
|
|
}
|