Tag.php 235 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 标签模型
  6. */
  7. class Tag Extends Model
  8. {
  9. // 表名
  10. protected $name = 'tag';
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'int';
  13. }