AIP == > IDP

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-01 10:43:52 +07:00
parent b5829ec905
commit b059e3a770
9 changed files with 333 additions and 144 deletions

View file

@ -68,15 +68,15 @@ interface FormChangeName {
interface FormDataIDP {
topic: string;
development: string[];
otherAction: string;
otherPerson: string;
otherTraining: string;
developmentProjects: string[];
reasonDevelopment70: string;
reasonDevelopment20: string;
reasonDevelopment10: string;
developmentTarget: string;
developmentResults: string;
developmentReport: string;
status: string;
remark: string;
reason: string;
}
export type {

View file

@ -152,6 +152,30 @@ interface DataLeaveType {
refCommandDate: string;
}
interface DataListsIDP {
createdAt: string;
createdFullName: string;
createdUserId: string;
developmentReport: string;
developmentResults: string;
developmentTarget: string;
id: string;
isDevelopment10: boolean;
isDevelopment20: boolean;
isDevelopment70: boolean;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string;
name: string;
profileEmployeeId: string;
profileId: string;
reason: string;
reasonDevelopment10: string;
reasonDevelopment20: string;
reasonDevelopment70: string;
status: string;
}
export type {
DataType,
DataLevel,
@ -160,4 +184,5 @@ export type {
DataProfile,
DataLeave,
DataLeaveType,
DataListsIDP,
};