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