代码下载接口

This commit is contained in:
2025-05-13 13:16:59 +08:00
parent 636fc411d2
commit a764794a5f
8 changed files with 206 additions and 183 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use App\BaseApp\BaseModel;
use Illuminate\Database\Eloquent\Relations\HasOne;
class CodeGenerationModel extends BaseModel
{
protected $table = 'code_generation';
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $guarded = [];
}