GameGroup.php 441 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace app\v1\model\center;
  3. use plugin\saiadmin\basic\BaseNormalModel;
  4. /**
  5. * 游戏分组模型
  6. */
  7. class GameGroup extends BaseNormalModel
  8. {
  9. /**
  10. * 数据表主键
  11. * @var string
  12. */
  13. protected $pk = 'id';
  14. /**
  15. * 数据库表名称
  16. * @var string
  17. */
  18. protected $table = 'game_group';
  19. /**
  20. * 数据库连接
  21. * @var string
  22. */
  23. protected $connection = 'db_center';
  24. }