* @version : HUOSDK 9.0 */ namespace huoIdentify\model; class GameModel extends \huo\model\game\GameModel { /** * 关联实名认证 */ public function identify() { return $this->hasOne('\huoIdentify\model\IdentifyGameModel', 'app_id', 'id'); } /** * 通过游戏ID获取类型 * * @param int $app_id * * @return mixed|string */ public function getClassifyById($app_id = 0) { $_data = $this->getInfoById($app_id); return get_val($_data, 'classify', ''); } }