PartyHot.php 201 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. use Redis;
  5. /**
  6. * 模型
  7. */
  8. class PartyHot extends Model
  9. {
  10. // 开启自动写入时间戳字段
  11. protected $autoWriteTimestamp = 'int';
  12. }