17 lines
582 B
TypeScript
17 lines
582 B
TypeScript
import { Entity, Column } from "typeorm";
|
|
import { ProfileEmployeeAbsentLate } from "./ProfileEmployeeAbsentLate";
|
|
import { AbsentLateStatus, StampType } from "./ProfileAbsentLate";
|
|
|
|
@Entity("profileEmployeeAbsentLateHistory")
|
|
export class ProfileEmployeeAbsentLateHistory extends ProfileEmployeeAbsentLate {
|
|
@Column({
|
|
nullable: true,
|
|
length: 40,
|
|
comment: "คีย์นอก(FK)ของตาราง ProfileEmployeeAbsentLate",
|
|
default: null,
|
|
})
|
|
profileEmployeeAbsentLateId: string;
|
|
}
|
|
|
|
// Export enums for re-use
|
|
export { AbsentLateStatus, StampType };
|