No SOFA trend chart or organ-system timeline
No GCS trend chart or component history
No qSOFA history view
This commit is contained in:
voltsrage
2026-06-23 18:00:43 +08:00
parent 729c19830c
commit 7751d6df06
30 changed files with 3866 additions and 41 deletions
@@ -0,0 +1,15 @@
public class QsofaEvaluation
{
public Guid Id { get; set; }
public Guid EncounterId { get; set; }
public Guid PatientId { get; set; }
public int ActiveCriteria { get; set; }
public decimal? RespRate { get; set; }
public decimal? SystolicBp { get; set; }
public decimal? Avpu { get; set; }
public bool ScreenAlertFired { get; set; }
public DateTimeOffset EvaluatedAt { get; set; }
public DateTimeOffset CreatedAt { get; set; }
public Encounter Encounter { get; set; } = null!;
}