未知(继上次中断)

This commit is contained in:
Cheng Zhou
2026-02-04 10:52:34 +08:00
parent 8e258d21a7
commit 737f84bf54
99 changed files with 5497 additions and 2143 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface NotificationItem {
id: string;
document_id: string;
version_id: string;
document_title: string;
document_no?: string | null;
version_no: string;
change_summary?: string | null;
effective_at?: string | null;
created_at: string;
}
+9
View File
@@ -0,0 +1,9 @@
export interface VisitLostItem {
visit_id: string;
subject_id: string;
subject_no: string;
site_id?: string | null;
visit_code: string;
status: string;
updated_at: string;
}