import ตำแหน่ง

This commit is contained in:
kittapath 2025-03-13 14:53:55 +07:00
parent 7b955739ba
commit f1f7412db0
3 changed files with 160 additions and 132 deletions

View file

@ -117,6 +117,13 @@ export class OFFICER {
})
DIVISION_NAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
DIVISION_CODE: string;
@Column({
nullable: true,
type: "text",
@ -124,6 +131,13 @@ export class OFFICER {
})
SECTION_NAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
SECTION_CODE: string;
@Column({
nullable: true,
type: "text",
@ -131,6 +145,13 @@ export class OFFICER {
})
JOB_NAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
JOB_CODE: string;
@Column({
nullable: true,
type: "text",