Files
dafuweng/addons/webman/model/AdminRoleDepartment.php
2026-03-02 13:44:38 +08:00

15 lines
319 B
PHP

<?php
namespace addons\webman\model;
use Illuminate\Database\Eloquent\Model;
class AdminRoleDepartment extends Model
{
public function __construct(array $attributes = [])
{
parent::__construct($attributes);
$this->setTable(plugin()->webman->config('database.role_department_table'));
}
}