修改医生职称

This commit is contained in:
2023-04-28 11:42:57 +08:00
parent 1431b32cd2
commit 79e65c3d5a
7 changed files with 59 additions and 8 deletions
+14 -4
View File
@@ -14,22 +14,32 @@ use Hyperf\Constants\Annotation\Constants;
class DoctorTitleCode extends AbstractConstants
{
/**
* @Message("执业医师")
* @Message("主任中医师")
*/
const LICENSED_PHYSICIAN = 1;
/**
* @Message("主医师")
* @Message("主医师")
*/
const ATTENDING_DOCTOR = 2;
/**
* @Message("副主任医师")
* @Message("副主任医师")
*/
const DEPUTY_CHIEF_PHYSICIAN = 3;
/**
* @Message("主任医师")
* @Message("主任医师")
*/
const CHIEF_PHYSICIAN = 4;
/**
* @Message("主治医师")
*/
const CHIEF_PHYSICIAN_5 = 5;
/**
* @Message("住院医师")
*/
const CHIEF_PHYSICIAN_6 = 6;
}