63 lines
956 B
TypeScript
63 lines
956 B
TypeScript
|
|
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
|
||
|
|
|
||
|
|
@Entity("HR_CHANGENAME_EMPTEMP")
|
||
|
|
export class HR_CHANGENAME_EMPTEMP {
|
||
|
|
@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;
|
||
|
|
}
|