hrms-api-org/src/entities/HR_CHILDEN.ts
2025-05-01 09:40:35 +07:00

48 lines
729 B
TypeScript

import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
@Entity("HR_CHILDEN")
export class HR_CHILDEN {
@Column({
nullable: true,
type: "text",
default: null,
})
CIT: string;
@PrimaryGeneratedColumn()
id!: number;
@Column({
nullable: true,
type: "text",
default: null,
})
RANK_NAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
CHILD_FNAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
CHILD_LNAME: string;
@Column({
nullable: true,
type: "text",
default: null,
})
LIFE_STATUS: string;
@Column({
nullable: true,
type: "text",
default: null,
})
SEQ: string;
}