feat(health): 实现媒体库 handler (12 端点) + 轮播图 handler (6 端点)

媒体库 handler (media_handler.rs):
- 上传/列表/详情/更新/删除媒体文件 + 文件夹 CRUD + 移动 + 裁剪

轮播图 handler (banner_handler.rs):
- 管理端 5 端点(列表/创建/更新/删除/排序)
- 公开端点 1 个(小程序无需认证获取生效轮播图)
This commit is contained in:
iven
2026-05-10 15:29:34 +08:00
parent a9bd850ce2
commit 3a672636c0
3 changed files with 424 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ 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_handler;
@@ -20,6 +21,7 @@ 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;