<?php namespace app\common\model; use think\Model; /** * 标签模型 */ class Tag Extends Model { // 表名 protected $name = 'tag'; // 开启自动写入时间戳字段 protected $autoWriteTimestamp = 'int'; }