CrudLog.php 359 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. /**
  5. * Log
  6. */
  7. class CrudLog extends Model
  8. {
  9. // 表名
  10. protected $name = 'crud_log';
  11. // 自动写入时间戳字段
  12. protected $autoWriteTimestamp = true;
  13. protected $updateTime = false;
  14. protected $type = [
  15. 'table' => 'array',
  16. 'fields' => 'array',
  17. ];
  18. }