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,12 @@
public class ObservationDocument
{
public string ObservationId { get; set; } = null!;
public string EncounterId { get; set; } = null!;
public string PatientId { get; set; } = null!;
public string Mrn { get; set; } = null!;
public string ObservationCode { get; set; } = null!;
public double Value { get; set; }
public string Unit { get; set; } = null!;
public string Source { get; set; } = null!;
public DateTimeOffset RecordedAt { get; set; }
}