add fields

This commit is contained in:
Bright 2024-05-28 10:31:18 +07:00
parent a66f582c25
commit 2dac48cb81

View file

@ -462,6 +462,21 @@ export class Profile extends EntityBase {
length: 5,
})
currentZipCode: string;
@Column({
nullable: true,
length: 40,
comment: "ไอดีรอบลงเวลาล่าสุด"
})
dutyTimeId : string;
@Column({
nullable: true,
type: "datetime",
comment: "รอบลงเวลาล่าสุด",
default: null
})
dutyTimeEffectiveDate: Date;
}
@Entity("profileHistory")