|
@@ -3,7 +3,7 @@
|
|
|
// 由CodeGenerator创建。
|
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
|
// author: gwang
|
|
|
- // 日期: 2021-04-30 13:05:01
|
|
|
+ // 日期: 2021-05-08 16:14:32
|
|
|
////////////////////
|
|
|
|
|
|
/**
|
|
@@ -470,6 +470,15 @@ class GameConfig {
|
|
|
return self::get_hash_item('task_daily', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
+ * 神庙定期活动时间
|
|
|
+ * @return \shenmiaoActiveTs
|
|
|
+ */
|
|
|
+ public static function shenmiaoActiveTs()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'shenmiaoActiveTs');
|
|
|
+ }
|
|
|
+ /**
|
|
|
* 英雄的升级——成长可消耗的道具表
|
|
|
* @return \hero_levelexp_costitem
|
|
|
*/
|
|
@@ -502,6 +511,22 @@ class GameConfig {
|
|
|
return self::get_hash_item('yanlingLeve', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
+ * 神庙
|
|
|
+ * @return \shenmiao
|
|
|
+ */
|
|
|
+ public static function shenmiao()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'shenmiao');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_shenmiao shenmiao item数据
|
|
|
+ */
|
|
|
+ public static function shenmiao_getItem($itemid)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('shenmiao', $itemid);
|
|
|
+ }
|
|
|
+ /**
|
|
|
* 圣哲学院表
|
|
|
* @return \college
|
|
|
*/
|