31 lines
793 B
TypeScript
31 lines
793 B
TypeScript
|
|
import { Entity, Column, OneToMany, ManyToOne } from "typeorm";
|
||
|
|
import { EntityBase } from "./base/Base";
|
||
|
|
import { ProfileEmployeeEmploymentHistory } from "./ProfileEmployeeEmploymentHistory"
|
||
|
|
|
||
|
|
@Entity("profileEmployeeEmployment")
|
||
|
|
export class ProfileEmployeeEmployment extends EntityBase {
|
||
|
|
@Column({
|
||
|
|
nullable: true,
|
||
|
|
type: "datetime",
|
||
|
|
comment: "วันที่จ้าง",
|
||
|
|
default: null,
|
||
|
|
})
|
||
|
|
date: Date;
|
||
|
|
|
||
|
|
@Column({
|
||
|
|
nullable: true,
|
||
|
|
comment: "คำสั่งจ้าง",
|
||
|
|
default: null,
|
||
|
|
})
|
||
|
|
command: string;
|
||
|
|
|
||
|
|
@OneToMany(() => ProfileEmployeeEmploymentHistory, (v) => v.profileEmployeeEmployment)
|
||
|
|
histories: ProfileEmployeeEmploymentHistory[];
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
export class CreateEmploymentProfileEmployee {
|
||
|
|
date: Date | null;
|
||
|
|
command: string | null;
|
||
|
|
}
|