feat(reg-opd): nw column to indicate the mrn label printing status

This commit is contained in:
avicenan
2026-06-25 09:12:27 +09:00
parent 7e318b5056
commit 6c7012b15a

View File

@ -86,6 +86,9 @@ export class EmrRegistrationOutpatient {
@Column({ nullable: true })
queued_at?: Date;
@Column({ nullable: false, type: 'boolean', default: false })
is_mrn_label_printed?: boolean;
@Column()
@CreateDateColumn()
created_at: Date;