GameVipPrice.php 375 B

12345678910111213141516171819
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 游戏扩展表
  5. * @author Administrator
  6. */
  7. class GameVipPrice extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'cy_game_vip_price';
  11. protected $dateFormat = false; //时间戳格式不自动转换
  12. public function game()
  13. {
  14. return $this->belongsTo('Game', 'gameid', 'id');
  15. }
  16. }