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;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "สัญชาติ",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
nationality: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เพศ",
|
||||
|
|
@ -302,6 +310,7 @@ export class CreateProfile {
|
|||
birthDate: Date | null;
|
||||
ethnicity: string | null;
|
||||
telephoneNumber: string | null;
|
||||
nationality: string | null;
|
||||
citizenId: string;
|
||||
religionId: string | null;
|
||||
posLevelId: string | null;
|
||||
|
|
@ -324,6 +333,7 @@ export type UpdateProfile = {
|
|||
birthDate?: Date | null;
|
||||
ethnicity?: string | null;
|
||||
telephoneNumber?: string | null;
|
||||
nationality?: string | null;
|
||||
citizenId?: string | null;
|
||||
religionId: string | null;
|
||||
posLevelId?: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue