123456789101112131415161718192021222324 |
- <?php
- /**
- * HourGameModel.php UTF-8
- * 每日游戏时表数据
- *
- * @date : 2019/12/11 11:00
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : dengcongshuai <dcs@huosdk.com>
- * @version : HUOSDK 8.0
- */
- namespace huomp\model\hour;
- use huo\model\data\DayBaseModel;
- use huo\model\game\GameModel;
- class HourGameModel extends DayBaseModel {
- protected $name = 'hour_game';
- public function game() {
- return $this->belongsTo(GameModel::className(), 'app_id', 'id')->field('id,name');
- }
- }
|