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

27 lines
461 B
TypeScript
Raw Normal View History

2024-10-07 14:53:27 +07:00
import { Entity, Column } from "typeorm";
2024-07-26 14:41:41 +07:00
import { EntityBase } from "./base/Base";
@Entity("educationMis")
2024-10-07 14:53:27 +07:00
export class EducationMis extends EntityBase {
2024-07-26 14:41:41 +07:00
@Column({
nullable: true,
length: 255,
default: null,
})
EDUCATION_CODE: string;
@Column({
nullable: true,
length: 255,
default: null,
})
EDUCATION_NAME: string;
@Column({
nullable: true,
length: 255,
default: null,
})
EDUCATION_ABB_NAME: string;
}