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

@ -20,6 +20,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(\`bma_ehr_organization_demo\`.\`posMaster\`.\`id\`,
\`posMasterChild\`.\`profile\`.\`id\`) AS \`key\`,
NULL AS \`actFullNameId\`,
NULL AS \`actFullName\`
FROM
@ -60,4 +62,6 @@ export class viewDirector {
actFullNameId: string;
@ViewColumn()
actFullName: string;
@ViewColumn()
key: string;
}