update
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user