IndustryTag.php 365 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. /**
  5. * IndustryTag
  6. */
  7. class IndustryTag extends Model
  8. {
  9. // 表名
  10. protected $name = 'industry_tag';
  11. // 自动写入时间戳字段
  12. protected $autoWriteTimestamp = true;
  13. public function admin()
  14. {
  15. return $this->belongsTo(\app\admin\model\Admin::class, 'admin_id', 'id');
  16. }
  17. }