| 123456789101112131415161718 |
- <?php
- /**
- * Created by PhpStorm.
- * User: cqingt
- * Date: 2019/3/1
- * Time: 10:32
- */
- namespace app\common\model;
- class GameRecommend extends \think\Model
- {
- protected $pk = 'id';
- protected $table = 'nw_game_recommend';
- protected $autoWriteTimestamp = true;
- protected $dateFormat = false; //时间戳格式不自动转换
- }
|