Files
nl-admin-api/app/Models/ai/AiModelModel.php
2026-08-10 15:51:00 +08:00

16 lines
253 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Models\ai;
use App\BaseApp\BaseModel;
/**
* AI 模型表模型(仅表名与字段约定,查询逻辑放 Service
*/
class AiModelModel extends BaseModel
{
protected $table = 'ai_model';
protected $guarded = [];
}