HourGameModel.php 562 B

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