cyzhao 2 年之前
父节点
当前提交
6ca592b7ca

+ 17 - 1
Gameserver/Amfphp/configs/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2022-06-24 10:07:33
+ // 日期: 2022-06-27 17:26:43
 ////////////////////
 
 namespace loyalsoft;
@@ -1786,6 +1786,22 @@ class GameConfig {
         return self::get_hash_item('eHeroAddProperties', $itemid);
     }
     /**
+    * 玩家等级排行奖励表
+    * @return \rank_playerlevel_reward
+    */
+    public static function rank_playerlevel_reward()
+    { 
+        static $a = null; 
+        return self::initValue($a, 'rank_playerlevel_reward');
+    }
+    /**
+    * @return \sm_rank_playerlevel_reward rank_playerlevel_reward item数据 
+    */
+    public static function rank_playerlevel_reward_getItem($itemid)
+    { 
+        return self::get_hash_item('rank_playerlevel_reward', $itemid);
+    }
+    /**
     * 当前版本(时间戳)
     * @return \ver
     */

+ 17 - 1
Gameserver/Amfphp/model/Const/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2022-06-24 10:07:33
+ // 日期: 2022-06-27 17:26:43
 ////////////////////
 
 /**
@@ -1784,6 +1784,22 @@ class GameConfig {
         return self::get_hash_item('eHeroAddProperties', $itemid);
     }
     /**
+    * 玩家等级排行奖励表
+    * @return \rank_playerlevel_reward
+    */
+    public static function rank_playerlevel_reward()
+    { 
+        static $a = null; 
+        return self::initValue($a, 'rank_playerlevel_reward');
+    }
+    /**
+    * @return \sm_rank_playerlevel_reward rank_playerlevel_reward item数据 
+    */
+    public static function rank_playerlevel_reward_getItem($itemid)
+    { 
+        return self::get_hash_item('rank_playerlevel_reward', $itemid);
+    }
+    /**
     * 当前版本(时间戳)
     * @return \ver
     */

+ 42 - 0
Gameserver/Amfphp/model/Const/sm_rank_playerlevel_reward.php

@@ -0,0 +1,42 @@
+<?php
+////////////////////
+ // 由CodeGenerator创建。
+ // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
+ // author: gwang 
+ // 日期: 2022-06-27 14:43:27
+////////////////////
+
+
+/**
+ * Static Model rank_playerlevel_reward 玩家等级排行奖励表
+ */
+class sm_rank_playerlevel_reward
+{
+
+    /**
+    * @var Int32 编号 default(0) 
+    */
+    public $id;
+
+    /**
+    * @var Int32 达成条件(关卡id)  
+    */
+    public $condition;
+
+    /**
+    * @var String 奖励  
+    */
+    public $reward;
+
+    /**
+    * @var String 备注  
+    */
+    public $desc;
+
+    /**
+    * @var DateTime 修改时间 default(CURRENT_TIMESTAMP) 
+    */
+    public $lastupdate;
+
+}
+