update: vital sign and anamnesis for emergency

This commit is contained in:
wayanrivan
2026-04-20 14:18:12 +07:00
parent a7ea61b0e6
commit d62a7e842a
2 changed files with 24 additions and 0 deletions

View File

@ -42,6 +42,15 @@ export class Emranamnesis {
@Column({ nullable: true, type: "text", array: true })
history_of_illness: string[];
@Column({ nullable: true, type: "text" })
follow_up_action: string;
@Column({ nullable: true, type: "text" })
functional_status: string;
@Column({ nullable: true, type: "text" })
tb_status: string;
// @Column({
// type: "enum",
// enum: anamnesisStatus,

View File

@ -136,6 +136,21 @@ export class EmrVitalSigns {
@Column({ nullable: true, length: 10 })
hospitalize: string;
@Column({ nullable: true, type:"int2"})
eye: number;
@Column({ nullable: true, type:"int2"})
vision: number;
@Column({ nullable: true, type:"int2"})
motor: number;
@Column({ nullable: true, type:"boolean"})
patient_gait: boolean;
@Column({ nullable: true, type:"boolean"})
support_when_sittiong: boolean;
@Column()
@CreateDateColumn()
created_at: Date;