12345678910111213141516171819202122232425262728 |
- <?php
- namespace huo\model\game;
- use huo\model\common\CommonModel;
- class GamePaySwitchModel extends CommonModel {
- protected $name = 'game_pay_switch';
-
- public function game() {
- return $this->belongsTo('huo\model\game\GameModel', 'app_id')->field('id,name game_name,pay_switch');
- }
- }
|