game2005api/webapp/mt/Shop.php
aozhiwei 404cc97468 1
2021-11-30 17:48:23 +08:00

25 lines
378 B
PHP

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