update: vital sign and anamnesis for emergency
This commit is contained in:
@ -42,6 +42,15 @@ export class Emranamnesis {
|
|||||||
@Column({ nullable: true, type: "text", array: true })
|
@Column({ nullable: true, type: "text", array: true })
|
||||||
history_of_illness: string[];
|
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({
|
// @Column({
|
||||||
// type: "enum",
|
// type: "enum",
|
||||||
// enum: anamnesisStatus,
|
// enum: anamnesisStatus,
|
||||||
|
|||||||
@ -135,6 +135,21 @@ export class EmrVitalSigns {
|
|||||||
|
|
||||||
@Column({ nullable: true, length: 10 })
|
@Column({ nullable: true, length: 10 })
|
||||||
hospitalize: string;
|
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()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
|
|||||||
Reference in New Issue
Block a user