* @version : HUOSDK 8.0 */ namespace huo\model\data; use huo\model\common\CommonModel; class DayAgentGameCountryVipModel extends CommonModel { protected $name = 'day_agent_game_country_vip'; public function game(){ return $this->hasOne('huo\model\game\GameModel', 'id', 'app_id'); } public function country(){ return $this->hasOne('huo\model\district\CountryConfModel', 'mobile_prefix', 'mobile_prefix'); } public function agent(){ return $this->hasOne('huo\model\user\UserModel', 'id', 'agent_id'); } }