Files
spa-api/app/Models/ProjectFrameworksRelationModal.php

17 lines
252 B
PHP
Raw Normal View History

2025-04-28 16:15:09 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 项目框架关联表
*/
class ProjectFrameworksRelationModal extends Model
{
//
protected $table = 'project_frameworks_relations';
protected $guarded = [];
}