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

17 lines
242 B
PHP
Raw Normal View History

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