feat(patient): add column of card print count, to counting how many patient card has been printed
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user