GameRecommend.php 351 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: cqingt
  5. * Date: 2019/3/1
  6. * Time: 10:32
  7. */
  8. namespace app\common\model;
  9. class GameRecommend extends \think\Model
  10. {
  11. protected $pk = 'id';
  12. protected $table = 'nw_game_recommend';
  13. protected $autoWriteTimestamp = true;
  14. protected $dateFormat = false; //时间戳格式不自动转换
  15. }