修改问诊订单详情

This commit is contained in:
2023-03-25 16:23:59 +08:00
parent 121c2c5434
commit 1befd6a06c
7 changed files with 207 additions and 5 deletions
@@ -0,0 +1,24 @@
<?php
namespace App\Controller;
use App\Services\MessageNoticeService;
use Psr\Http\Message\ResponseInterface;
/**
* 通知消息
* 不区分各端
*/
class MessageNoticeController extends AbstractController
{
/**
* 获取医生服务消息列表-分页
* @return ResponseInterface
*/
public function getDoctorMessageService(): ResponseInterface
{
$MessageNoticeService = new MessageNoticeService();
$data = $MessageNoticeService->getDoctorMessageService();
return $this->response->json($data);
}
}