* @version : HUOSDK 8.0 */ namespace huo\model\game; use huo\model\common\CommonModel; class GamePaySwitchModel extends CommonModel { protected $name = 'game_pay_switch'; /** * 关联game表 * * @return mixed */ public function game() { return $this->belongsTo('huo\model\game\GameModel', 'app_id')->field('id,name game_name,pay_switch'); } }