Files
nl-admin-api/app/Models/ai/AiGenerationModel.php

16 lines
243 B
PHP
Raw Normal View History

2026-08-10 15:51:00 +08:00
<?php
namespace App\Models\ai;
use App\BaseApp\BaseModel;
/**
* AI 生成历史表模型(仅表名与字段约定)
*/
class AiGenerationModel extends BaseModel
{
protected $table = 'ai_generation';
protected $guarded = [];
}