CRUD Profile

This commit is contained in:
AdisakKanthawilang 2024-02-08 10:56:03 +07:00
parent 3986609506
commit 635de700e1
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>;