no message

This commit is contained in:
Kittapath 2024-06-07 03:05:57 +07:00
parent 573e0930f6
commit a01669a230
4 changed files with 131 additions and 42 deletions

View file

@ -181,6 +181,27 @@ export class ProfileEmployee extends EntityBase {
})
isProbation: boolean;
@Column({
comment: "เกษียณ",
default: false,
})
isLeave: boolean;
@Column({
nullable: true,
comment: "เหตุผลเกษียณ",
default: null,
})
leaveReason: string;
@Column({
nullable: true,
type: "datetime",
comment: "วันพ้นราชการ",
default: null,
})
dateLeave: Date;
@Column({
nullable: true,
type: "datetime",
@ -723,16 +744,16 @@ export type UpdateProfileAddressEmployee = {
};
export type UpdatePositionTempProfileEmployee = {
posmasterId: string ;
node: number ;
nodeId: string ;
orgRevisionId: string ;
positionId: string ;
posMasterNo: string ;
position: string ;
positionField: string ;
posmasterId: string;
node: number;
nodeId: string;
orgRevisionId: string;
positionId: string;
posMasterNo: string;
position: string;
positionField: string;
posTypeId: string | null;
posTypeName: string ;
posTypeName: string;
posLevelId: string | null;
posLevelName: string ;
};
posLevelName: string;
};