ประเมินผล
This commit is contained in:
parent
ac007dfc26
commit
bdae7034e9
11 changed files with 488 additions and 125 deletions
|
|
@ -1,17 +1,27 @@
|
|||
interface FormSpec {
|
||||
isEducationalQft: boolean;
|
||||
isGovermantServiceHtr: boolean;
|
||||
isOperatingExp: boolean;
|
||||
isMinPeriodOfTenure: boolean;
|
||||
isHaveSpecificQft: boolean;
|
||||
isHaveProLicense: boolean;
|
||||
isHaveMinPeriodOrHoldPos: boolean;
|
||||
}
|
||||
|
||||
interface FormCommand {
|
||||
elementaryFullName: string;
|
||||
elementaryPosition: string;
|
||||
abovelevelFullname: string;
|
||||
abovelevelPosition: string;
|
||||
commanderFullname: string;
|
||||
commanderPosition: string;
|
||||
commanderAboveFullname: string;
|
||||
commanderAbovePosition: string;
|
||||
}
|
||||
|
||||
interface FormCommandRef {
|
||||
elementaryFullName: object | null;
|
||||
elementaryPosition: object | null;
|
||||
abovelevelFullname: object | null;
|
||||
abovelevelPosition: object | null;
|
||||
commanderFullname: object | null;
|
||||
commanderPosition: object | null;
|
||||
commanderAboveFullname: object | null;
|
||||
commanderAbovePosition: object | null;
|
||||
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type { FormCommand, FormCommandRef };
|
||||
export type { FormCommand, FormCommandRef, FormSpec };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue