game2006api/webapp/mt/PayMethod.php
songliang d00e49a3e1 ...
2023-06-15 14:00:43 +08:00

22 lines
366 B
PHP

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