新增优惠卷取消队列,修改问诊订单取消订单退款状态限制,去除im发送消息,发送后不回调问题

This commit is contained in:
2023-04-10 09:27:38 +08:00
parent 3008c1f9bc
commit 237a742d8b
10 changed files with 192 additions and 7 deletions
+10
View File
@@ -107,4 +107,14 @@ class InquiryController extends AbstractController
return $this->response->json($data);
}
/**
* 结束问诊会话列表
* @return ResponseInterface
*/
public function getDoctorFinishMessageList(): ResponseInterface
{
$InquiryService = new InquiryService();
$data = $InquiryService->getDoctorFinishMessageList();
return $this->response->json($data);
}
}