|
@@ -3,7 +3,7 @@
|
|
// 由CodeGenerator创建。
|
|
// 由CodeGenerator创建。
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
// author: gwang
|
|
// author: gwang
|
|
- // 日期: 2024-10-10 10:09:20
|
|
|
|
|
|
+ // 日期: 2024-10-16 12:02:32
|
|
////////////////////
|
|
////////////////////
|
|
|
|
|
|
namespace loyalsoft;
|
|
namespace loyalsoft;
|
|
@@ -927,6 +927,38 @@ class GameConfig {
|
|
return self::get_hash_item('activity_promopackinfo_type', $key);
|
|
return self::get_hash_item('activity_promopackinfo_type', $key);
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
|
|
+ * 战令表
|
|
|
|
+ * @return \activity_battlepass
|
|
|
|
+ */
|
|
|
|
+ public static function activity_battlepass()
|
|
|
|
+ {
|
|
|
|
+ static $a = null;
|
|
|
|
+ return self::initValue($a, 'activity_battlepass');
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * @return \sm_activity_battlepass activity_battlepass item数据
|
|
|
|
+ */
|
|
|
|
+ public static function activity_battlepass_getItem($itemid)
|
|
|
|
+ {
|
|
|
|
+ return self::get_hash_item('activity_battlepass', $itemid);
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * 战令类型区别
|
|
|
|
+ * @return \activity_battlepass_type
|
|
|
|
+ */
|
|
|
|
+ public static function activity_battlepass_type()
|
|
|
|
+ {
|
|
|
|
+ static $a = null;
|
|
|
|
+ return self::initValue($a, 'activity_battlepass_type');
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * @return \sm_activity_battlepass_type activity_battlepass_type itemArray
|
|
|
|
+ */
|
|
|
|
+ public static function activity_battlepass_type_getItemArray($key)
|
|
|
|
+ {
|
|
|
|
+ return self::get_hash_item('activity_battlepass_type', $key);
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
* 当前版本(时间戳)
|
|
* 当前版本(时间戳)
|
|
* @return \ver
|
|
* @return \ver
|
|
*/
|
|
*/
|