This commit is contained in:
2023-03-18 09:52:41 +08:00
parent a2ec0d051a
commit f3881322f0
6 changed files with 31 additions and 31 deletions
+4 -4
View File
@@ -14,22 +14,22 @@ use Hyperf\Constants\Annotation\Constants;
class DoctorTitleCode extends AbstractConstants
{
/**
* @Message("执业医师")
* @MessageIm("执业医师")
*/
const LICENSED_PHYSICIAN = 1;
/**
* @Message("主治医师")
* @MessageIm("主治医师")
*/
const ATTENDING_DOCTOR = 2;
/**
* @Message("副主任医师")
* @MessageIm("副主任医师")
*/
const DEPUTY_CHIEF_PHYSICIAN = 3;
/**
* @Message("主任医师")
* @MessageIm("主任医师")
*/
const CHIEF_PHYSICIAN = 4;
}