| 123456789101112131415161718192021 |
- <?php
- namespace app\common\model;
- use think\Cache;
- use think\Db;
- use think\Config;
- /**
- * 游戏表
- * @author Administrator
- */
- class GameHome extends \think\Model
- {
- protected $pk = 'id';
- protected $table = 'cy_game';
- protected $dateFormat = false; //时间戳格式不自动转换
- protected $connection = 'database_slave'; //官网使用从库
- }
|