27 lines
459 B
TypeScript
27 lines
459 B
TypeScript
|
|
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;
|
||
|
|
}
|