Merge branch 'develop' of github.com:Frappet/bma-ehr-organization into develop

This commit is contained in:
Kittapath 2024-03-26 09:47:59 +07:00
commit db479c4ab6

View file

@ -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;