From 5b48407be93e85ebf82ccc8ff13e9f4c561195c4 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 16 四月 2021 14:14:37 +0800 Subject: [PATCH] 8906 【主干】【BT2】【后端】线下单笔充值活动逻辑调整(支持三种领奖模式设定;0-向下兼容,1-匹配最高档,2-精确匹配档次) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py index cd8d9f7..4c30592 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -1332,6 +1332,7 @@ ("BYTE", "IsDayReset", 0), ("BYTE", "CTGTypeEffValue", 0), ("BYTE", "IsOfflineAct", 0), + ("BYTE", "AwardRuleType", 0), ("list", "TemplateIDList", 0), ), @@ -4513,6 +4514,7 @@ self.IsDayReset = 0 self.CTGTypeEffValue = 0 self.IsOfflineAct = 0 + self.AwardRuleType = 0 self.TemplateIDList = [] return @@ -4523,6 +4525,7 @@ def GetIsDayReset(self): return self.IsDayReset # 是否每天重置 def GetCTGTypeEffValue(self): return self.CTGTypeEffValue # 充值有效类型值 def GetIsOfflineAct(self): return self.IsOfflineAct # 是否线下活动 + def GetAwardRuleType(self): return self.AwardRuleType # 领奖规则类型 0-向下兼容;1-匹配最高档;2-精确匹配对应档次 def GetTemplateIDList(self): return self.TemplateIDList # 模板ID列表 # 单笔累充模板表 -- Gitblit v1.8.0