12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * GamePaySwitchModel.php UTF-8
- * 支付切换规则
- *
- * @date : 2018/6/6 22:06
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : chenbingling <cbl@huosdk.com>
- * @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');
- }
- }
|