feat: add field to profile gov
This commit is contained in:
parent
808971b5b2
commit
a1f3eda632
1 changed files with 17 additions and 1 deletions
|
|
@ -164,11 +164,23 @@ export class ProfileGovernment extends EntityBase {
|
|||
comment: "ด้านของตำแหน่ง",
|
||||
})
|
||||
positionEmployeePositionSide: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
positionPathSide: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
})
|
||||
positionExecutiveSide: string;
|
||||
}
|
||||
|
||||
export type CreateProfileGovernment = {
|
||||
profileId: string;
|
||||
positionId: string | null;
|
||||
profileId: string | null;
|
||||
posNoId: string | null;
|
||||
ocId: string | null;
|
||||
dateAppoint: Date | null;
|
||||
|
|
@ -189,6 +201,8 @@ export type CreateProfileGovernment = {
|
|||
positionEmployeeLevel: string | null;
|
||||
positionEmployeePosition: string | null;
|
||||
positionEmployeePositionSide: string | null;
|
||||
positionPathSide: string | null;
|
||||
positionExecutiveSide: string | null;
|
||||
};
|
||||
|
||||
export type UpdateProfileGovernment = {
|
||||
|
|
@ -213,4 +227,6 @@ export type UpdateProfileGovernment = {
|
|||
positionEmployeeLevel?: string | null;
|
||||
positionEmployeePosition?: string | null;
|
||||
positionEmployeePositionSide?: string | null;
|
||||
positionPathSide?: string | null;
|
||||
positionExecutiveSide?: string | null;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue