no message

This commit is contained in:
kittapath 2024-11-05 10:46:26 +07:00
parent b5384b6d46
commit aa2d930d75
4 changed files with 161 additions and 1 deletions

View file

@ -8,10 +8,12 @@ import { ViewColumn, ViewEntity } from "typeorm";
\`bma_ehr_organization_demo\`.\`profile\`.\`lastName\` AS \`lastName\`,
\`bma_ehr_organization_demo\`.\`profile\`.\`citizenId\` AS \`citizenId\`,
\`bma_ehr_organization_demo\`.\`profile\`.\`position\` AS \`position\`,
NULL AS \`posNo\`,
\`bma_ehr_organization_demo\`.\`posMaster\`.\`isDirector\` AS \`isDirector\`,
\`bma_ehr_organization_demo\`.\`posLevel\`.\`posLevelName\` AS \`posLevel\`,
\`bma_ehr_organization_demo\`.\`posType\`.\`posTypeName\` AS \`posType\`,
\`bma_ehr_organization_demo\`.\`posMaster\`.\`orgRootId\` AS \`orgRootId\`,
NULL AS \`actFullNameId\`,
NULL AS \`actFullName\`
FROM
(((\`bma_ehr_organization_demo\`.\`posMaster\`
@ -33,6 +35,8 @@ export class viewDirector {
@ViewColumn()
position: string;
@ViewColumn()
posNo: string;
@ViewColumn()
posLevel: string;
@ViewColumn()
posType: string;
@ -41,5 +45,7 @@ export class viewDirector {
@ViewColumn()
orgRootId: string;
@ViewColumn()
actFullNameId: string;
@ViewColumn()
actFullName: string;
}