feature: Elasticsearch CQRS Projection and Analytics Endpoints

This commit is contained in:
voltsrage
2026-06-17 00:05:37 +08:00
parent 84d259d10c
commit fde3d56484
21 changed files with 1281 additions and 2 deletions
@@ -0,0 +1,11 @@
public interface IAnalyticsService
{
Task<object> GetPopulationAsync(string code, decimal threshold, string direction,
DateTimeOffset? from, DateTimeOffset? to);
Task<object> GetObservationTrendAsync(Guid encounterId, string code,
DateTimeOffset? from, DateTimeOffset? to);
Task<object> GetAlertSummaryAsync(string? severity, string? department,
DateTimeOffset? from, DateTimeOffset? to);
Task<object> SearchPatientsAsync(string? q, string? department, string? status,
int page, int pageSize);
}