76 lines
1.2 KiB
TypeScript
76 lines
1.2 KiB
TypeScript
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
|
|
|
|
@Entity("HR_EDUCATION_EMP")
|
|
export class HR_EDUCATION_EMP {
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
CIT: string;
|
|
@PrimaryGeneratedColumn()
|
|
id!: number;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
EDUCATION_CODE: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
START_EDUCATION_YEAR: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
EDUCATION_YEAR: string;
|
|
|
|
// @Column({
|
|
// nullable: true,
|
|
// type: "text",
|
|
// default: null,
|
|
// })
|
|
// EDUCATION_NAME: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
INSTITUE: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
length: 255,
|
|
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;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
FLAG_EDUCATION: string;
|
|
}
|