import data
This commit is contained in:
parent
f800e74379
commit
a11b6f152c
7 changed files with 502 additions and 283 deletions
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue