This commit is contained in:
wayanrivan
2026-04-20 15:32:00 +07:00
parent 53172b4a8e
commit 5e17c5c285

View File

@ -39,6 +39,9 @@ export class EmrVitalSigns {
@Column({ nullable: true, length: 64 }) @Column({ nullable: true, length: 64 })
respiratory_rate: string; respiratory_rate: string;
@Column({ nullable: true, length: 64 })
saturation: string;
@Column({ @Column({
type: "enum", type: "enum",
enum: consciousness, enum: consciousness,
@ -136,19 +139,19 @@ export class EmrVitalSigns {
@Column({ nullable: true, length: 10 }) @Column({ nullable: true, length: 10 })
hospitalize: string; hospitalize: string;
@Column({ nullable: true, type:"int2"}) @Column({ nullable: true, type: "int2" })
eye: number; eye: number;
@Column({ nullable: true, type:"int2"}) @Column({ nullable: true, type: "int2" })
vision: number; vision: number;
@Column({ nullable: true, type:"int2"}) @Column({ nullable: true, type: "int2" })
motor: number; motor: number;
@Column({ nullable: true, type:"boolean"}) @Column({ nullable: true, type: "boolean" })
patient_gait: boolean; patient_gait: boolean;
@Column({ nullable: true, type:"boolean"}) @Column({ nullable: true, type: "boolean" })
support_when_sittiong: boolean; support_when_sittiong: boolean;
@Column() @Column()