game2006api/webapp/mt/Bigwheel.php
aozhiwei d654bd893c 1
2024-08-01 12:03:21 +08:00

25 lines
389 B
PHP

<?php
namespace mt;
use phpcommon;
class Bigwheel
{
public static function get($id)
{
return getXVal(self::getMetaList(), $id);
}
protected static function getMetaList()
{
if (!self::$metaList) {
self::$metaList = getMetaTable('Bigwheel@Bigwheel.php');
}
return self::$metaList;
}
protected static $metaList;
}