import excel
This commit is contained in:
parent
bfce5ba1ce
commit
15cb59b550
8 changed files with 659 additions and 306 deletions
26
src/entities/EducationMis.ts
Normal file
26
src/entities/EducationMis.ts
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue