CustomUrlCollect.php 366 B

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