import data
This commit is contained in:
parent
f800e74379
commit
a11b6f152c
7 changed files with 502 additions and 283 deletions
|
|
@ -52,4 +52,18 @@ export class HR_EDUCATION {
|
|||
default: null,
|
||||
})
|
||||
EDUCATION_SEQ: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
FUND_COURSE_CODE: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
MAJOR_CODE: string;
|
||||
}
|
||||
|
|
|
|||
35
src/entities/HR_FUND_COURSE_CODE.ts
Normal file
35
src/entities/HR_FUND_COURSE_CODE.ts
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
|
||||
|
||||
@Entity("HR_FUND_COURSE_CODE")
|
||||
export class HR_FUND_COURSE_CODE {
|
||||
@PrimaryGeneratedColumn()
|
||||
id!: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
FUND_COURSE_CODE: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
FUND_COURSE_NAME: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
LEVEL_SEQ: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
refId: string;
|
||||
}
|
||||
28
src/entities/HR_MAJOR_CODE.ts
Normal file
28
src/entities/HR_MAJOR_CODE.ts
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
|
||||
|
||||
@Entity("HR_MAJOR_CODE")
|
||||
export class HR_MAJOR_CODE {
|
||||
@PrimaryGeneratedColumn()
|
||||
id!: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
MAJOR_CODE: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
MAJOR_NAME: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
MAJOR_ABB_NAME: string;
|
||||
}
|
||||
|
|
@ -19,6 +19,13 @@ export class OFFICER {
|
|||
// })
|
||||
// ID: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
CIT: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
|
|
@ -130,4 +137,11 @@ export class OFFICER {
|
|||
default: null,
|
||||
})
|
||||
POS_NUM_NAME: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "text",
|
||||
default: null,
|
||||
})
|
||||
ADMIN_NAME: string;
|
||||
}
|
||||
|
|
|
|||
65
src/entities/ProfileSalaries.ts
Normal file
65
src/entities/ProfileSalaries.ts
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
import { Entity, Column, Double } from "typeorm";
|
||||
import { EntityBase } from "./base/Base";
|
||||
|
||||
@Entity("ProfileSalaries")
|
||||
export class ProfileSalaries extends EntityBase {
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
Order: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
Date: Date;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
SalaryRef: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "double",
|
||||
})
|
||||
Amount: Double;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: "double",
|
||||
})
|
||||
PositionSalaryAmount: Double;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
PosNoName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
PositionTypeName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
PositionLevelName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
PositionName: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
ProfileId: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue