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,13 @@
public class PatientEncounterDocument
{
public string EncounterId { get; set; } = null!;
public string PatientId { get; set; } = null!;
public string Mrn { get; set; } = null!;
public string PatientName { get; set; } = null!;
public string Department { get; set; } = null!;
public string Status { get; set; } = null!;
public string AttendingPhysician { get; set; } = null!;
public DateTimeOffset AdmittedAt { get; set; }
public int OpenAlertCount { get; set; }
public DateTimeOffset? LastObservationAt { get; set; }
}