You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
346 B
PHP
17 lines
346 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\His;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
|
|
class DepartmentController extends Controller
|
|
{
|
|
//获取科室列表
|
|
public function GetDepartmentList(){
|
|
$His = new HisController();
|
|
$data=[];
|
|
$res = $His::Get("查询科室列表", $data);
|
|
}
|
|
}
|