初始化提交

This commit is contained in:
2023-02-17 17:10:16 +08:00
commit 4ca844f470
152 changed files with 20390 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
<?php
declare(strict_types=1);
namespace App\Constants;
use Hyperf\Constants\AbstractConstants;
use Hyperf\Constants\Annotation\Constants;
/**
* 医生职称
*/
#[Constants]
class DoctorTitleCode extends AbstractConstants
{
/**
* @Message("执业医师")
*/
const LICENSED_PHYSICIAN = 1;
/**
* @Message("主治医师")
*/
const ATTENDING_DOCTOR = 2;
/**
* @Message("副主任医师")
*/
const DEPUTY_CHIEF_PHYSICIAN = 2;
/**
* @Message("主任医师")
*/
const CHIEF_PHYSICIAN = 2;
}