1234567891011121314151617181920212223 |
- <?php
- namespace app\admin\model;
- use think\Model;
- /**
- * IndustryTag
- */
- class IndustryTag extends Model
- {
- // 表名
- protected $name = 'industry_tag';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = true;
- public function admin()
- {
- return $this->belongsTo(\app\admin\model\Admin::class, 'admin_id', 'id');
- }
- }
|