新增部门和岗位

This commit is contained in:
wuyanwen
2020-01-09 08:21:44 +08:00
parent e5c8c71011
commit 88c3bb432d
7 changed files with 95 additions and 6 deletions

View File

@@ -0,0 +1,35 @@
<?php
namespace catchAdmin\permissions\controller;
use catcher\base\CatchController;
use catchAdmin\permissions\model\Department as DepartmentModel;
class Department extends CatchController
{
protected $department;
public function __construct(DepartmentModel $department)
{
$this->department = $department;
}
public function index()
{
}
public function save()
{
}
public function update()
{
}
public function delete($id)
{
}
}