feat(reg-emergency): add new column of sp02

This commit is contained in:
avicenan
2026-05-25 00:48:00 +09:00
parent 29b37c5839
commit 57fc63ff1d
2 changed files with 6 additions and 0 deletions

View File

@ -67,6 +67,9 @@ export class EmrRegistrationEmergency {
@Column({ nullable: true, type: "text" })
respiratoryrate: string;
@Column({ nullable: true, type: "text" })
spo2: string;
@Column({ nullable: true, type: "text" })
temperature: string;

View File

@ -39,6 +39,9 @@ export class EmrVitalSigns {
@Column({ nullable: true, length: 64 })
respiratory_rate: string;
@Column({ nullable: true, length: 64 })
spo2: string;
@Column({ nullable: true, length: 64 })
saturation: string;