1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * DayPayModel.php UTF-8
- *
- *
- * @date : 2017/12/18 11:41
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : liguanglong <lgl@huosdk.com>
- * @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');
- }
- }
|