46 lines
738 B
PHP
46 lines
738 B
PHP
<?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 = 3;
|
|
|
|
/**
|
|
* @Message("副主任中医师")
|
|
*/
|
|
const CHIEF_PHYSICIAN = 4;
|
|
|
|
/**
|
|
* @Message("主治医师")
|
|
*/
|
|
const CHIEF_PHYSICIAN_5 = 5;
|
|
|
|
/**
|
|
* @Message("住院医师")
|
|
*/
|
|
const CHIEF_PHYSICIAN_6 = 6;
|
|
}
|