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

33 lines
741 B
PHP

<?php
declare(strict_types=1);
namespace App\Model;
/**
* @property int $id
* @property int $admin_user_id
* @property int $admin_role_id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class AdminUserBelongsRole extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'admin_user_belongs_role';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['id' => 'integer', 'admin_user_id' => 'integer', 'admin_role_id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
}