Merge branch 'develop' of github.com:Frappet/bma-ehr-organization into develop
This commit is contained in:
commit
db479c4ab6
1 changed files with 10 additions and 0 deletions
|
|
@ -165,6 +165,14 @@ export class Profile extends EntityBase {
|
||||||
})
|
})
|
||||||
telephoneNumber: string;
|
telephoneNumber: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "สัญชาติ",
|
||||||
|
length: 255,
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
nationality: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
comment: "เพศ",
|
comment: "เพศ",
|
||||||
|
|
@ -302,6 +310,7 @@ export class CreateProfile {
|
||||||
birthDate: Date | null;
|
birthDate: Date | null;
|
||||||
ethnicity: string | null;
|
ethnicity: string | null;
|
||||||
telephoneNumber: string | null;
|
telephoneNumber: string | null;
|
||||||
|
nationality: string | null;
|
||||||
citizenId: string;
|
citizenId: string;
|
||||||
religionId: string | null;
|
religionId: string | null;
|
||||||
posLevelId: string | null;
|
posLevelId: string | null;
|
||||||
|
|
@ -324,6 +333,7 @@ export type UpdateProfile = {
|
||||||
birthDate?: Date | null;
|
birthDate?: Date | null;
|
||||||
ethnicity?: string | null;
|
ethnicity?: string | null;
|
||||||
telephoneNumber?: string | null;
|
telephoneNumber?: string | null;
|
||||||
|
nationality?: string | null;
|
||||||
citizenId?: string | null;
|
citizenId?: string | null;
|
||||||
religionId: string | null;
|
religionId: string | null;
|
||||||
posLevelId?: string | null;
|
posLevelId?: string | null;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue