import excel

This commit is contained in:
Bright 2024-07-26 14:41:41 +07:00
parent bfce5ba1ce
commit 15cb59b550
8 changed files with 659 additions and 306 deletions

View file

@ -0,0 +1,26 @@
import { Entity, Column} from "typeorm";
import { EntityBase } from "./base/Base";
@Entity("educationMis")
export class EducationMis extends EntityBase{
@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;
}