新增 App 建立、資料呈現

This commit is contained in:
2025-08-05 16:13:09 +08:00
parent d0c4adf243
commit 5b407ff29c
51 changed files with 6039 additions and 78 deletions

View File

@@ -152,6 +152,17 @@ export class Logger {
context: context || this.context
});
}
// 活動日誌
logActivity(userId: string, entityType: string, entityId: string, action: string, data?: any) {
this.info('User Activity', {
userId,
entityType,
entityId,
action,
data
});
}
}
// 預設日誌實例