hrms-user/src/modules/06_evaluate/interface/evalute.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 bdae7034e9 ประเมินผล
2023-12-19 17:04:39 +07:00

27 lines
657 B
TypeScript

interface FormSpec {
isEducationalQft: boolean;
isGovermantServiceHtr: boolean;
isOperatingExp: boolean;
isMinPeriodOfTenure: boolean;
isHaveSpecificQft: boolean;
isHaveProLicense: boolean;
isHaveMinPeriodOrHoldPos: boolean;
}
interface FormCommand {
commanderFullname: string;
commanderPosition: string;
commanderAboveFullname: string;
commanderAbovePosition: string;
}
interface FormCommandRef {
commanderFullname: object | null;
commanderPosition: object | null;
commanderAboveFullname: object | null;
commanderAbovePosition: object | null;
[key: string]: any;
}
export type { FormCommand, FormCommandRef, FormSpec };