hrms-api-org/src/entities/AmphurImport.ts

27 lines
450 B
TypeScript
Raw Normal View History

2024-10-07 14:53:27 +07:00
import { Entity, Column } from "typeorm";
2024-07-26 14:41:41 +07:00
import { EntityBase } from "./base/Base";
@Entity("amphurImport")
2024-10-07 14:53:27 +07:00
export class AmphurImport extends EntityBase {
2024-07-26 14:41:41 +07:00
@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,
})
AMPHUR_NAME: string;
}