diff --git a/src/entity/emr/emr_discharge_status_emergency.ts b/src/entity/emr/emr_discharge_status_emergency.ts index 2db6429..145e670 100644 --- a/src/entity/emr/emr_discharge_status_emergency.ts +++ b/src/entity/emr/emr_discharge_status_emergency.ts @@ -30,25 +30,25 @@ export class DischargeStatusEmergency { inpatient_attending_phyisician: User; @Column({ nullable: true, type: "text" }) - gender_responsible_person: string; + gender_responsible_person: string | null; @Column({ nullable: true, type: "text" }) - fullname_responsible_person: string; + fullname_responsible_person: string | null; @Column({ nullable: true, type: "int" }) - age_responsible_person: number; + age_responsible_person: number | null; @Column({ nullable: true, type: "text" }) - reason_discharge: string; + reason_discharge: string | null; @Column({ nullable: true, type: "text" }) - doctor_signature: string; + doctor_signature: string | null; @Column({ nullable: true, type: "text" }) - patient_signature: string; + patient_signature: string | null; @Column({ nullable: true, type: "text" }) - witness_signature: string; + witness_signature: string | null; @Column({ nullable: true, type: "text" }) cause_of_death: string;