AI代码生成工具

This commit is contained in:
李琦
2026-08-10 15:51:00 +08:00
parent d0018a0173
commit bd226c260f
31 changed files with 5468 additions and 31 deletions

View File

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