新增功能

This commit is contained in:
Your Name
2026-04-01 09:46:25 +08:00
parent 099bc1dd22
commit a780356908
332 changed files with 7845 additions and 866 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS `zyt_doctor_appointment` (
`create_time` int(10) unsigned DEFAULT NULL COMMENT '创建时间',
`update_time` int(10) unsigned DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `unique_appointment` (`doctor_id`,`appointment_date`,`appointment_time`,`status`) USING BTREE,
KEY `idx_doctor_date_time_status` (`doctor_id`,`appointment_date`,`appointment_time`,`status`) USING BTREE,
KEY `idx_patient` (`patient_id`) USING BTREE,
KEY `idx_doctor_date` (`doctor_id`,`appointment_date`) USING BTREE,
KEY `idx_roster` (`roster_id`) USING BTREE