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

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
+17
View File
@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace App\Constants;
use Hyperf\Constants\AbstractConstants;
use Hyperf\Constants\Annotation\Constants;
#[Constants]
class SubTemplateCode extends AbstractConstants
{
/**
* @Message("患者回复通知")
*/
const PATIENT_RESPONSE = "patientResponse";
}