2024-10-18 11:45:16 +07:00
|
|
|
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
|
2024-07-26 15:52:32 +07:00
|
|
|
|
|
|
|
|
@Entity("HR_EDUCATION")
|
|
|
|
|
export class HR_EDUCATION {
|
|
|
|
|
@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;
|
|
|
|
|
|
2024-08-05 10:16:26 +07:00
|
|
|
// @Column({
|
|
|
|
|
// nullable: true,
|
|
|
|
|
// type: "text",
|
|
|
|
|
// default: null,
|
|
|
|
|
// })
|
|
|
|
|
// EDUCATION_NAME: string;
|
2024-07-26 15:52:32 +07:00
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
|
nullable: true,
|
|
|
|
|
type: "text",
|
|
|
|
|
default: null,
|
|
|
|
|
})
|
|
|
|
|
INSTITUE: string;
|
2025-02-12 10:43:01 +07:00
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
|
nullable: true,
|
|
|
|
|
length: 255,
|
|
|
|
|
default: null,
|
|
|
|
|
})
|
|
|
|
|
EDUCATION_SEQ: string;
|
2025-03-03 14:52:29 +07:00
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
|
nullable: true,
|
|
|
|
|
type: "text",
|
|
|
|
|
default: null,
|
|
|
|
|
})
|
|
|
|
|
FUND_COURSE_CODE: string;
|
|
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
|
nullable: true,
|
|
|
|
|
type: "text",
|
|
|
|
|
default: null,
|
|
|
|
|
})
|
|
|
|
|
MAJOR_CODE: string;
|
2025-03-11 10:03:55 +07:00
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
|
nullable: true,
|
|
|
|
|
type: "text",
|
|
|
|
|
default: null,
|
|
|
|
|
})
|
|
|
|
|
FLAG_EDUCATION: string;
|
2024-07-26 15:52:32 +07:00
|
|
|
}
|