import data uat
This commit is contained in:
parent
9f1ed6cc6c
commit
5e4f119730
10 changed files with 2757 additions and 1006 deletions
27
src/entities/HR_DISCIPLINE.ts
Normal file
27
src/entities/HR_DISCIPLINE.ts
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue