新增结束问诊接口

This commit is contained in:
2023-03-25 15:18:57 +08:00
parent 88667147e8
commit 121c2c5434
5 changed files with 99 additions and 2 deletions
+12
View File
@@ -433,6 +433,18 @@ class TestController extends AbstractController
}
public function test_10(){
$a = [
[
"start_time"=>"0110",
"end_time"=>"2400",
]
];
foreach ($a as $item){
dump();
}
}
}
+11
View File
@@ -366,4 +366,15 @@ class UserDoctorController extends AbstractController
$data = $UserDoctorService->addDoctorInquiry();
return $this->response->json($data);
}
/**
* 结束问诊
* @return ResponseInterface
*/
public function putDoctorFinishInquiry(): ResponseInterface
{
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->putDoctorFinishInquiry();
return $this->response->json($data);
}
}