feat(health): 新增小程序专用今日体征摘要端点 GET /health/vital-signs/today

This commit is contained in:
iven
2026-04-24 12:17:17 +08:00
parent 19be2a08c7
commit e7b6bdfcac
4 changed files with 162 additions and 0 deletions

View File

@@ -117,6 +117,11 @@ impl HealthModule {
"/health/vital-signs/trend",
axum::routing::get(health_data_handler::get_mini_trend),
)
// 小程序今日体征摘要
.route(
"/health/vital-signs/today",
axum::routing::get(health_data_handler::get_mini_today),
)
// 预约排班
.route(
"/health/appointments",