From 7d6425827901a98ff9f47b25718542bd81dbbfac Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 08 三月 2021 14:43:41 +0800 Subject: [PATCH] 8807 【BT2】【后端】Part1 14、投资返利送充值券(增加登录投资9、等级投资10、boss投资11;优化永久投资、周卡投资逻辑 同步主干); --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 33 +++++++++++++-------------------- 1 files changed, 13 insertions(+), 20 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 3b06f95..c1f67b0 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -3910,11 +3910,11 @@ Def_PDict_FamilyActivityFinishCnt = "FamilyActivityFinishCnt%s" # 已完成次数 Def_PDict_FamilyActivityAwardRecord = "FamilyActivityAwardRecord" # 活跃度奖励领取记录,按二进制位标识 -# 投资理财 Def_PDictType_GoldInvest -Def_PDict_GoldInvest_Time = "Invest_Time_%s" # 投资时的时间,参数为投资类型 -Def_PDict_GoldInvest_Gold = "Invest_Gold_%s" # 投资的额度,参数为投资类型 -Def_PDict_GoldInvest_AwardData = "Invest_AwardData_%s" # 投资时的数据,参数为投资类型 -Def_PDict_GoldInvest_GotRewardValue = "Invest_GotRewardValue_%s_%s" # 等级回报已领取数值,参数为投资类型 索引 +# 投资理财 +Def_PDict_InvestTime = "InvestTime_%s" # 投资时的时间,参数为投资类型 +Def_PDict_InvestProgress = "InvestProgress_%s_%s" # 投资可领奖进度值,参数为(投资类型, key编号) +Def_PDict_InvestReward = "InvestReward_%s_%s" # 投资领奖记录,参数为(投资类型, key编号) +Def_PDict_InvestKeyCount = 3 # key编号数 # 成就 Def_PDictType_Success Def_PDict_Success_AwardRecord = "Succ_AwardRecord_%s" # 成就领奖记录,参数(key编号),按索引位存储0-未领,1-已领 @@ -5284,22 +5284,15 @@ } -# 投资理财类型 -GoldInvestTypeList = ( -GoldInvestType_Month, # 旧月卡投资1(已废弃) -GoldInvestType_VIP, # vip投资2 -GoldInvestType_Gold, # 仙玉投资3 -GoldInvestType_Gold2, # 仙玉投资4 -GoldInvestType_Gold3, # 仙玉投资5 -GoldInvestType_Week, # 周卡投资6(已废弃) -GoldInvestType_NewMonth, # 至尊月卡投资7 -GoldInvestType_Month1, # 新30元月卡投资8 -) = range(1,8+1) +# 投资理财类型,和前端对应,从7开始 +InvestTypeList = ( +InvestType_NewMonth, # 至尊月卡投资7 +InvestType_Month1, # 新30元月卡投资8 +InvestType_Login, # 登录 9 +InvestType_LV, # 等级 10 +InvestType_Boss, # Boss 11 +) = range(7, 7 + 5) -#可以循环投资的类型 -CanRepeatInvestType = [GoldInvestType_Week, GoldInvestType_Month, GoldInvestType_VIP, GoldInvestType_NewMonth, GoldInvestType_Month1] -#仙玉投资类型 -InvestGoldTypeList = [GoldInvestType_Gold, GoldInvestType_Gold2, GoldInvestType_Gold3] #前端特殊新手引导存储标记 GuideState_BZZDShow = 202 -- Gitblit v1.8.0