fix field type

This commit is contained in:
AdisakKanthawilang 2025-03-25 12:14:48 +07:00
parent 9e1ebf6de1
commit 24ce6c81c1
2 changed files with 104 additions and 14 deletions

View file

@ -44,7 +44,7 @@ export class PositionSalaryEditHistory extends EntityBase {
comment: "รายละเอียดที่แจ้งให้แก้ไข",
default: null,
})
detailForEdit: number;
detailForEdit: string;
@ManyToOne(() => Profile, (profile) => profile.positionSalaryEditHistory)
@JoinColumn({ name: "profileId" })
@ -57,14 +57,6 @@ export class PositionSalaryEditHistory extends EntityBase {
}
export class CreatePositionSalaryEditHistory {
profileId: string | null;
returnedDate: Date;
examinerName: string | null;
detailForEdit: string | null;
}
export class CreatePositionSalaryEditHistoryEmp {
profileEmployeeId: string | null;
returnedDate: Date;
examinerName: string | null;
detailForEdit: string | null;