Merge branch 'adiDev' into develop

This commit is contained in:
AdisakKanthawilang 2024-02-08 10:56:34 +07:00
commit f75d9356fd
2 changed files with 167 additions and 0 deletions

View file

@ -107,6 +107,15 @@ export class CreateProfile {
@Column()
citizenId: string;
@Column()
position: string;
@Column("uuid")
posLevelId: string | null;
@Column("uuid")
posTypeId: string | null;
}
export type UpdateProfile = Partial<CreateProfile>;