add nationality
This commit is contained in:
parent
056f40ab4c
commit
91b177190c
1 changed files with 10 additions and 0 deletions
|
|
@ -198,6 +198,14 @@ export class ProfileEmployee extends EntityBase {
|
||||||
})
|
})
|
||||||
telephoneNumber: string;
|
telephoneNumber: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "สัญชาติ",
|
||||||
|
length: 255,
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
nationality: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
comment: "เพศ",
|
comment: "เพศ",
|
||||||
|
|
@ -441,6 +449,7 @@ export class CreateProfileEmployee {
|
||||||
// religion: string | null;
|
// religion: string | null;
|
||||||
posLevelId: string | null;
|
posLevelId: string | null;
|
||||||
posTypeId: string | null;
|
posTypeId: string | null;
|
||||||
|
// nationality: string | null;
|
||||||
// gender: string | null;
|
// gender: string | null;
|
||||||
// relationship: string | null;
|
// relationship: string | null;
|
||||||
// bloodGroup: string | null;
|
// bloodGroup: string | null;
|
||||||
|
|
@ -464,6 +473,7 @@ export type UpdateProfileEmployee = {
|
||||||
religion: string | null;
|
religion: string | null;
|
||||||
posLevelId?: string | null;
|
posLevelId?: string | null;
|
||||||
posTypeId?: string | null;
|
posTypeId?: string | null;
|
||||||
|
nationality?: string | null;
|
||||||
gender?: string | null;
|
gender?: string | null;
|
||||||
relationship?: string | null;
|
relationship?: string | null;
|
||||||
bloodGroup?: string | null;
|
bloodGroup?: string | null;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue