GuideCollect.php 303 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class GuideCollect extends Model
  5. {
  6. // 表名
  7. protected $table = 'guide_collect';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $updateTime = 'updatetime';
  12. }