This commit is contained in:
2024-11-28 13:45:20 +08:00
parent 4900a6d636
commit 47f178511b
12 changed files with 292 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace plugin\inspection\model;
use think\admin\Model;
class InspectionStaffToken extends Model
{
public function staff()
{
return $this->belongsTo(InspectionStaff::class, 'id', 'staff_id');
}
}