hrms-api-org/src/entities/mis/SubDistrictImport.ts
2025-08-05 22:24:45 +07:00

33 lines
562 B
TypeScript

import { Entity, Column } from "typeorm";
import { EntityBase } from "../base/Base";
@Entity("subDistrictImport")
export class SubDistrictImport extends EntityBase {
@Column({
nullable: true,
length: 255,
default: null,
})
PROVINCE_CODE: string;
@Column({
nullable: true,
length: 255,
default: null,
})
AMPHUR_CODE: string;
@Column({
nullable: true,
length: 255,
default: null,
})
DISTRICT_CODE: string;
@Column({
nullable: true,
length: 255,
default: null,
})
DISTRICT_NAME: string;
}