import data

This commit is contained in:
mamoss 2025-05-01 09:40:35 +07:00
parent e95a299ab2
commit 875933ab38
7 changed files with 440 additions and 13 deletions

View file

@ -0,0 +1,62 @@
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
@Entity("HR_CHANGENAME")
export class HR_CHANGENAME {
@Column({
nullable: true,
type: "text",
default: null,
})
CIT: string;
@PrimaryGeneratedColumn()
id!: number;
@Column({
nullable: true,
type: "text",
default: null,
})
NEW_RANK_NAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
NEW_FNAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
NEW_LNAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
LAST_RANK_NAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
LAST_FNAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
LAST_LNAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
EFFECT_DATE: string;
}