19 lines
359 B
TypeScript
19 lines
359 B
TypeScript
import { Entity, Column } from "typeorm";
|
|
import { EntityBase } from "./base/Base";
|
|
|
|
@Entity("provinceImport")
|
|
export class ProvinceImport extends EntityBase {
|
|
@Column({
|
|
nullable: true,
|
|
length: 255,
|
|
default: null,
|
|
})
|
|
PROVINCE_CODE: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
length: 255,
|
|
default: null,
|
|
})
|
|
PROVINCE_NAME: string;
|
|
}
|