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,19 @@
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;
}