1234567891011121314151617181920212223242526272829 |
- <?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;
- class DayGameModel extends DayBaseModel {
- #protected $name = 'day_game';
- protected $table = 'dw_day_game';
- // public function game() {
- // return $this->hasOne('huo\model\game\GameModel', 'id', 'app_id')->setEagerlyType(0);
- // }
- /**
- * 关联game游戏表
- */
- public function game() {
- return $this->belongsTo('huo\model\game\GameModel', 'app_id')
- ->field('id,name,classify,icon');
- }
- }
|