| 12345678910111213141516171819 |
- <?php
- namespace app\common\model;
- /**
- * 游戏扩展表
- * @author Administrator
- */
- class GameVipPrice extends \think\Model
- {
- protected $pk = 'id';
- protected $table = 'cy_game_vip_price';
- protected $dateFormat = false; //时间戳格式不自动转换
- public function game()
- {
- return $this->belongsTo('Game', 'gameid', 'id');
- }
- }
|