From 57c050f7a33eca212385bf18a311c05585ba1fa8 Mon Sep 17 00:00:00 2001 From: avicenan Date: Thu, 16 Apr 2026 14:01:51 +0700 Subject: [PATCH] add diagnostic findings in radiology services --- src/entity/emr/emr_radiology_services.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entity/emr/emr_radiology_services.ts b/src/entity/emr/emr_radiology_services.ts index f234a12..e3e5a2a 100644 --- a/src/entity/emr/emr_radiology_services.ts +++ b/src/entity/emr/emr_radiology_services.ts @@ -31,6 +31,9 @@ export class RadiologyServices { @Column({ nullable: true, type: "text" }) result: string; + @Column({nullable: true, type: "text"}) + diagnostic_findings: string; + @Column() @CreateDateColumn() created_at: Date;