新增订阅消息队列+短信发送队列

This commit is contained in:
2023-03-03 19:35:57 +08:00
parent cbf78278b5
commit 7740dad0e5
19 changed files with 689 additions and 16 deletions
+2
View File
@@ -4,9 +4,11 @@ namespace App\Controller;
use App\Model\Area;
use App\Model\Hospital;
use App\Model\SubTemplate;
use App\Model\TbHospitalMy;
use App\Services\IndexService;
use App\Utils\Prescription;
use Extend\Wechat\Wechat;
use Hyperf\DbConnection\Db;
use Hyperf\Snowflake\IdGeneratorInterface;
use Psr\Http\Message\ResponseInterface;
+9 -1
View File
@@ -8,9 +8,17 @@ use App\Request\UserRequest;
use App\Services\UserDoctorService;
use App\Services\UserService;
use App\Utils\Http;
use Extend\Wechat\Wechat;
use Hyperf\DbConnection\Db;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
use Psr\Http\Message\ResponseInterface;
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
class UserController extends AbstractController
{
}