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

This commit is contained in:
Kittapath 2024-02-06 11:31:11 +07:00
commit 085edff91c

View file

@ -32,8 +32,9 @@ export class Profile extends EntityBase {
nullable: true,
comment: "เลขประจำตัวประชาชน",
default: null,
length: 13
})
citizenId: number;
citizenId: string;
@OneToMany(() => PosMaster, (posMaster) => posMaster.profile)
posMasters: PosMaster[];
@ -53,7 +54,7 @@ export class CreateProfile {
lastName: string;
@Column()
citizenId: number;
citizenId: string;
}