fix: 修复兼容旧版。

main
NorthLan 2 years ago
parent 7eddb6853b
commit 93ecc6b393

@ -73,6 +73,14 @@ Integral:
GiftRatio: 0.5
ReturnRatio: 0.8
WelfareRatio: 0.3
# RMB到弹币的转换
RMBToIntegral: 100
# 平台礼物到RMB的转换
GiftToRMB:
bilibili: 0.001
# 平台免费礼物到弹币的转换
FreeToIntegral:
bilibili: 0.00025
GiftPackMap:
- PackType: starter
PackName: 新手礼包

@ -79,7 +79,7 @@ type (
Coin struct {
RMBToCoin float64 // RMB到弹币的转换
GiftToRMB map[string]float64 // 平台礼物到RMB的转换
FreeToIntegral map[string]float64 // 平台免费礼物到弹币的转换
FreeToCoin map[string]float64 // 平台免费礼物到弹币的转换
}
Integral struct {
// CheckIn 签到
@ -103,6 +103,9 @@ type (
ReturnRatio float64 // 回收积分比例
WelfareRatio float64 // 福利池从奖金扣除比例
}
RMBToIntegral float64 // RMB到弹币的转换
GiftToRMB map[string]float64 // 平台礼物到RMB的转换
FreeToIntegral map[string]float64 // 平台免费礼物到弹币的转换
}
// GiftPack 礼包配置
GiftPackMap []GiftPack

Loading…
Cancel
Save