add nationality

This commit is contained in:
AdisakKanthawilang 2024-05-17 09:50:19 +07:00
parent 056f40ab4c
commit 91b177190c

View file

@ -198,6 +198,14 @@ export class ProfileEmployee extends EntityBase {
})
telephoneNumber: string;
@Column({
nullable: true,
comment: "สัญชาติ",
length: 255,
default: null,
})
nationality: string;
@Column({
nullable: true,
comment: "เพศ",
@ -441,6 +449,7 @@ export class CreateProfileEmployee {
// religion: string | null;
posLevelId: string | null;
posTypeId: string | null;
// nationality: string | null;
// gender: string | null;
// relationship: string | null;
// bloodGroup: string | null;
@ -464,6 +473,7 @@ export type UpdateProfileEmployee = {
religion: string | null;
posLevelId?: string | null;
posTypeId?: string | null;
nationality?: string | null;
gender?: string | null;
relationship?: string | null;
bloodGroup?: string | null;