18 lines
310 B
PHP
18 lines
310 B
PHP
<?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";
|
|
}
|