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

49 lines
796 B
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;
}