feat(patient): add column of card print count, to counting how many patient card has been printed

This commit is contained in:
avicenan
2026-06-17 14:06:49 +09:00
parent 53dff35e3b
commit af780e0fae

View File

@ -120,6 +120,9 @@ export class EmrPatient {
card_print_status?: string | null;
@Column({ nullable: true, type: "int", default: 0 })
card_print_count: number;
@Column()
@CreateDateColumn()
created_at: Date;