blog/app/service/DepartmentService.php

17 lines
256 B
PHP
Raw Permalink Normal View History

2024-06-08 15:54:41 +08:00
<?php
namespace app\service;
use app\model\Department;
class DepartmentService
{
/**
* @Inject
* @var Department
*/
private $department;
public function allList():array
{
return $this->department->allList();
}
}