import data uat

This commit is contained in:
mamoss 2025-04-29 15:33:37 +07:00
parent 9f1ed6cc6c
commit 5e4f119730
10 changed files with 2757 additions and 1006 deletions

View file

@ -0,0 +1,27 @@
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
@Entity("HR_DISCIPLINE")
export class HR_DISCIPLINE {
@Column({
nullable: true,
type: "text",
default: null,
})
CIT: string;
@PrimaryGeneratedColumn()
id!: number;
@Column({
nullable: true,
type: "text",
default: null,
})
REASON_FLAW: string;
@Column({
nullable: true,
type: "text",
default: null,
})
CREATE_DATE: string;
}