hrms-api-org/src/entities/mis/HR_EDUCATION_EMP.ts

77 lines
1.2 KiB
TypeScript
Raw Normal View History

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_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;
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-17 22:34:41 +07:00
@Column({
nullable: true,
length: 255,
default: null,
})
EDUCATION_SEQ: string;
2025-04-29 15:33:37 +07:00
@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;
2024-07-26 15:52:32 +07:00
}