- ActionInboxService: 三表 JOIN 聚合查询 ai_suggestion/ai_analysis/patient
- list_action_items: 分页列表,按 risk_level + created_at 排序
- get_action_thread: 线程时间线拼装 + 动态操作按钮
- ActionInboxHandler: 2 个 GET 端点,require_permission 权限守卫
- 路由: /health/action-inbox, /health/action-inbox/{source_ref}/thread
- 权限: health.action-inbox.list, health.action-inbox.manage
25 lines
704 B
Rust
25 lines
704 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 consultation_handler;
|
|
pub mod consent_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 medication_record_handler;
|
|
pub mod medication_reminder_handler;
|
|
pub mod doctor_handler;
|
|
pub mod follow_up_handler;
|
|
pub mod follow_up_template_handler;
|
|
pub mod health_data_handler;
|
|
pub mod patient_handler;
|
|
pub mod points_handler;
|
|
pub mod stats_handler;
|