38 lines
674 B
TypeScript
38 lines
674 B
TypeScript
interface FormProfile {
|
|
fullName: string;
|
|
|
|
position: string;
|
|
type: string;
|
|
level: string;
|
|
status: string | undefined;
|
|
result: string | undefined;
|
|
score: string;
|
|
|
|
avartar: string;
|
|
}
|
|
|
|
interface FormDataAssigned {
|
|
including: string;
|
|
indicator: string;
|
|
target: string;
|
|
unit: string;
|
|
weigth: string;
|
|
achievement1: string;
|
|
achievement2: string;
|
|
achievement3: string;
|
|
achievement4: string;
|
|
achievement5: string;
|
|
definition: string;
|
|
formula: string;
|
|
}
|
|
|
|
interface FormCapacityList{
|
|
id:string|null
|
|
name:string
|
|
level:string
|
|
point:number
|
|
weight:number
|
|
summary:number
|
|
}
|
|
|
|
export type { FormProfile, FormDataAssigned,FormCapacityList };
|