修正检测是否可接诊、新增问诊订单属性获取

This commit is contained in:
2023-03-13 17:02:53 +08:00
parent 6926137b5e
commit ebe6911fb8
7 changed files with 165 additions and 12 deletions
+12
View File
@@ -331,4 +331,16 @@ class UserDoctorController extends AbstractController
$data = $UserDoctorService->getDoctorMessageList();
return $this->response->json($data);
}
/**
* 获取医生问诊消息用户属性
* @return ResponseInterface
*/
public function getDoctorMessageAttrList(): ResponseInterface
{
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->getDoctorMessageAttrList();
return $this->response->json($data);
}
}