aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/entities/PatientLabelEvidenceView.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/entities/PatientLabelEvidenceView.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/entities/PatientLabelEvidenceView.scala28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/entities/PatientLabelEvidenceView.scala b/src/main/scala/xyz/driver/pdsuidomain/entities/PatientLabelEvidenceView.scala
new file mode 100644
index 0000000..60298b9
--- /dev/null
+++ b/src/main/scala/xyz/driver/pdsuidomain/entities/PatientLabelEvidenceView.scala
@@ -0,0 +1,28 @@
+package xyz.driver.pdsuidomain.entities
+
+import java.time.LocalDate
+
+import xyz.driver.pdsuicommon.domain._
+import xyz.driver.pdsuicommon.logging._
+
+object PatientLabelEvidenceView {
+ implicit def toPhiString(x: PatientLabelEvidenceView): PhiString = {
+ import x._
+ phi"PatientLabelEvidenceViewRepository.Row(id=$id, value=$value, documentId=$documentId, " +
+ phi"evidenceId=$evidenceId, reportId=$reportId, patientId=$patientId, labelId=$labelId, " +
+ phi"isImplicitMatch=$isImplicitMatch)"
+ }
+}
+
+final case class PatientLabelEvidenceView(id: LongId[PatientLabelEvidence],
+ value: FuzzyValue,
+ evidenceText: String,
+ documentId: Option[LongId[Document]],
+ evidenceId: Option[LongId[ExtractedData]],
+ reportId: Option[UuidId[DirectReport]],
+ documentType: String,
+ date: Option[LocalDate], // Document.startDate is optional
+ providerType: String,
+ patientId: UuidId[Patient],
+ labelId: LongId[Label],
+ isImplicitMatch: Boolean)