GameHome.php 389 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\model;
  3. use think\Cache;
  4. use think\Db;
  5. use think\Config;
  6. /**
  7. * 游戏表
  8. * @author Administrator
  9. */
  10. class GameHome extends \think\Model
  11. {
  12. protected $pk = 'id';
  13. protected $table = 'cy_game';
  14. protected $dateFormat = false; //时间戳格式不自动转换
  15. protected $connection = 'database_slave'; //官网使用从库
  16. }