TagUser.php 250 B

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