Files
hyperf_rbac_framework_serve…/app/Model/AdminUserBelongsMenu.php
2025-09-12 15:23:08 +08:00

28 lines
438 B
PHP

<?php
declare(strict_types=1);
namespace App\Model;
/**
*/
class AdminUserBelongsMenu extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'admin_user_belongs_menu';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = [];
}