เพิ่มผู้บังคับบัญชา

This commit is contained in:
Kittapath 2024-03-27 13:48:06 +07:00
parent 474630a7ba
commit ad08061836
5 changed files with 110 additions and 0 deletions

View file

@ -44,15 +44,25 @@ export class ProfileGovernment extends EntityBase {
default: null,
})
govAgePlus: number;
@Column({
nullable: true,
comment: "เหตุผลกรณีวันไม่ตรงกัน",
length: 255,
default: null,
})
reasonSameDate: string;
}
export type CreateProfileGovernment = {
profileId: string;
dateAppoint?: Date | null;
dateStart?: Date | null;
reasonSameDate?: string | null;
};
export type UpdateProfileGovernment = {
dateAppoint?: Date | null;
dateStart?: Date | null;
reasonSameDate?: string | null;
};