add the view for display auto start chat record

This commit is contained in:
geekgeekrun
2024-03-31 12:51:44 +08:00
parent e24353aa06
commit 387bb60157
6 changed files with 103 additions and 9 deletions

View File

@@ -6,6 +6,7 @@ const { ViewEntity, ViewColumn } = requireTypeorm();
user_info.name as userName,
chat_startup_log.date,
boss_info.name AS bossName,
boss_info.title AS bossTitle,
company_info.name AS companyName
FROM
chat_startup_log
@@ -58,6 +59,9 @@ export class VChatStartupLog {
@ViewColumn()
bossName: string;
@ViewColumn()
bossTitle: string;
@ViewColumn()
companyName: string;
}