no message

This commit is contained in:
kittapath 2024-11-06 16:56:35 +07:00
parent f4ef62e0e0
commit bce6b46eb7
4 changed files with 110 additions and 7 deletions

View file

@ -21,6 +21,8 @@ import { ViewColumn, ViewEntity } from "typeorm";
\`bma_ehr_organization_demo\`.\`posLevel\`.\`posLevelName\` AS \`posLevel\`,
\`bma_ehr_organization_demo\`.\`posType\`.\`posTypeName\` AS \`posType\`,
\`bma_ehr_organization_demo\`.\`posMaster\`.\`orgRootId\` AS \`orgRootId\`,
CONCAT(\`profileChild\`.\`id\`,
\`posMasterChild\`.\`id\`) AS \`key\`,
\`bma_ehr_organization_demo\`.\`profile\`.\`id\` AS \`actFullNameId\`,
CONCAT(\`bma_ehr_organization_demo\`.\`profile\`.\`prefix\`,
\`bma_ehr_organization_demo\`.\`profile\`.\`firstName\`,
@ -69,4 +71,6 @@ export class viewDirectorActing {
actFullNameId: string;
@ViewColumn()
actFullName: string;
@ViewColumn()
key: string;
}