feat: add national code to patient records and user entity, update related functionality

This commit is contained in:
hamed
2026-06-22 19:44:17 +03:30
parent 3c103bc51e
commit 5b1dfe9b40
7 changed files with 252 additions and 130 deletions
+1 -6
View File
@@ -426,15 +426,10 @@ export interface PatientRecord {
uuid: string;
entity_type: string;
entity_id: number;
user?: {
uuid?: string;
fullName?: string;
name?: string;
phone?: string;
} | null;
user_uuid?: string;
user_name?: string | null;
user_mobile?: string | null;
user_national_code?: string | null;
created_at: number;
}