This commit is contained in:
Your Name
2026-04-07 18:13:03 +08:00
parent a780356908
commit fdf714f833
397 changed files with 15086 additions and 1043 deletions
+1
View File
@@ -3,6 +3,7 @@ CREATE TABLE IF NOT EXISTS `zyt_doctor_appointment` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`patient_id` int(11) NOT NULL COMMENT '患者ID',
`doctor_id` int(11) NOT NULL COMMENT '医生ID',
`assistant_id` int(11) NOT NULL DEFAULT 0 COMMENT '创建该预约的后台用户(admin id,多为医助)',
`roster_id` int(11) NOT NULL COMMENT '排班ID',
`appointment_date` date NOT NULL COMMENT '预约日期',
`period` enum('morning','afternoon') NOT NULL COMMENT '时段:morning=上午,afternoon=下午',