1234567891011121314151617 |
- <?php
- namespace App\Services;
- use App\Models\AgentRealAuthRecord;
- use Slowlyo\OwlAdmin\Services\AdminService;
- /**
- * 代理商实名认证记录
- *
- * @method AgentRealAuthRecord getModel()
- * @method AgentRealAuthRecord|\Illuminate\Database\Query\Builder query()
- */
- class AgentRealAuthRecordService extends AdminService
- {
- protected string $modelName = AgentRealAuthRecord::class;
- }
|