35 lines
572 B
TypeScript
35 lines
572 B
TypeScript
import { Entity, Column, PrimaryGeneratedColumn } from "typeorm";
|
|
|
|
@Entity("HR_FUND_COURSE_CODE")
|
|
export class HR_FUND_COURSE_CODE {
|
|
@PrimaryGeneratedColumn()
|
|
id!: number;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
FUND_COURSE_CODE: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
FUND_COURSE_NAME: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
LEVEL_SEQ: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
refId: string;
|
|
}
|