初始化提交

This commit is contained in:
2023-02-17 17:10:16 +08:00
commit 4ca844f470
152 changed files with 20390 additions and 0 deletions
@@ -0,0 +1,26 @@
<?php
namespace App\Controller;
use App\Services\MyDoctorService;
use Psr\Http\Message\ResponseInterface;
/**
* 患者端个人中心
*/
class PatientCenterController extends AbstractController
{
/**
* 删除我的医生
* 首页-个人中心
* @return ResponseInterface
*/
public function deleteMyDoctor(): ResponseInterface
{
$patientFamilyService = new MyDoctorService();
$data = $patientFamilyService->deleteMyDoctor();
return $this->response->json($data);
}
}