88 lines
2.1 KiB
TypeScript
88 lines
2.1 KiB
TypeScript
import { Entity, Column, OneToMany, ManyToOne, JoinColumn } from "typeorm";
|
|
import { EntityBase } from "./base/Base";
|
|
import { Profile } from "./Profile";
|
|
import { ProfileNopaidHistory } from "./ProfileNopaidHistory";
|
|
|
|
@Entity("profileNopaid")
|
|
export class ProfileNopaid extends EntityBase {
|
|
@Column({
|
|
nullable: true,
|
|
length: 40,
|
|
comment: "คีย์นอก(FK)ของตาราง Profile",
|
|
default: null,
|
|
})
|
|
profileId: string;
|
|
|
|
@Column({
|
|
comment: "สถานะการใช้งาน",
|
|
default: false,
|
|
})
|
|
isActive: boolean;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "datetime",
|
|
comment: "วัน เดือน ปี",
|
|
default: null,
|
|
})
|
|
date: Date;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
comment: "รายละเอียด",
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
detail: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
comment: "เอกสารอ้างอิง",
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
reference: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
type: "datetime",
|
|
comment: "เอกสารอ้างอิง (ลงวันที่)",
|
|
default: null,
|
|
})
|
|
refCommandDate: Date;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
comment: "เอกสารอ้างอิง (เลขที่คำสั่ง)",
|
|
type: "text",
|
|
default: null,
|
|
})
|
|
refCommandNo: string;
|
|
|
|
@OneToMany(() => ProfileNopaidHistory, (profileNopaidHistory) => profileNopaidHistory.histories)
|
|
profileNopaidHistories: ProfileNopaidHistory[];
|
|
|
|
@ManyToOne(() => Profile, (profile) => profile.profileNopaids)
|
|
@JoinColumn({ name: "profileId" })
|
|
profile: Profile;
|
|
}
|
|
|
|
export class CreateProfileNopaid {
|
|
profileId: string | null;
|
|
isActive: boolean;
|
|
date: Date | null;
|
|
detail: string | null;
|
|
reference: string | null;
|
|
refCommandDate: Date | null;
|
|
refCommandNo: string | null;
|
|
}
|
|
|
|
export type UpdateProfileNopaid = {
|
|
profileId: string | null;
|
|
isActive: boolean;
|
|
date?: Date | null;
|
|
detail: string | null;
|
|
reference: string | null;
|
|
refCommandDate?: Date | null;
|
|
refCommandNo: string | null;
|
|
};
|