- 新增 consent_check.rs: check_consent_active() 检查患者有效同意记录 - 医护角色 (admin/doctor/nurse/health_manager) 自动跳过检查 - 5 个 handler / 10 处端点添加 consent 门控: - daily_monitoring_handler: list_daily_monitoring - vital_signs_daily_handler: get_daily_aggregations - alert_handler: list_alerts - health_data_handler: 5 个列表/趋势/时间序列端点 - device_reading_handler: list_readings + list_hourly
33 lines
918 B
Rust
33 lines
918 B
Rust
pub mod action_inbox_handler;
|
|
pub mod alert_handler;
|
|
pub mod alert_rule_handler;
|
|
pub mod appointment_handler;
|
|
pub mod article_category_handler;
|
|
pub mod article_handler;
|
|
pub mod article_tag_handler;
|
|
pub mod banner_handler;
|
|
pub mod ble_gateway_handler;
|
|
pub mod care_plan_handler;
|
|
pub mod consent_check;
|
|
pub mod consent_handler;
|
|
pub mod consultation_handler;
|
|
pub mod critical_alert_handler;
|
|
pub mod critical_value_threshold_handler;
|
|
pub mod daily_monitoring_handler;
|
|
pub mod device_handler;
|
|
pub mod device_reading_handler;
|
|
pub mod diagnosis_handler;
|
|
pub mod doctor_handler;
|
|
pub mod family_proxy_handler;
|
|
pub mod follow_up_handler;
|
|
pub mod follow_up_template_handler;
|
|
pub mod health_data_handler;
|
|
pub mod media_handler;
|
|
pub mod medication_record_handler;
|
|
pub mod medication_reminder_handler;
|
|
pub mod patient_handler;
|
|
pub mod points_handler;
|
|
pub mod shift_handler;
|
|
pub mod stats_handler;
|
|
pub mod vital_signs_daily_handler;
|