เพิ่มฟิลด์

This commit is contained in:
Bright 2024-06-13 10:10:48 +07:00
parent ae1a382dd0
commit aa92f377cf

View file

@ -31,6 +31,8 @@ export class ProfileChangePosition extends EntityBase {
@Column({ nullable: true, comment: "ข้อมูลหน่วยงานเดิม เงินเดือน", type: "double", default: null })
amountOld: number;
@Column({ nullable: true, type: "datetime", comment: "ดำรงตำแหน่งในระดับปัจจุบันเมื่อ", default: null })
dateCurrent: Date
@Column({ nullable: true, comment: "profile Id", default: null })
profileId: string;
@ -255,7 +257,7 @@ export type UpdateProfileChangePosition = {
positionLevelOld: string;
positionNumberOld: string;
amountOld: number;
dateCurrent : Date | null
dateCurrent : Date;
reason: string | null;
};