2024-04-09 15:22:23 +07:00
|
|
|
interface FormProfile {
|
|
|
|
|
fullName: string;
|
2024-04-22 18:11:24 +07:00
|
|
|
|
2024-04-09 15:22:23 +07:00
|
|
|
position: string;
|
|
|
|
|
type: string;
|
|
|
|
|
level: string;
|
2024-04-22 18:11:24 +07:00
|
|
|
status: string | undefined;
|
|
|
|
|
result: string | undefined;
|
2024-04-09 15:22:23 +07:00
|
|
|
score: string;
|
|
|
|
|
|
2024-04-22 18:11:24 +07:00
|
|
|
avartar: string;
|
2024-04-09 15:22:23 +07:00
|
|
|
}
|
|
|
|
|
|
2024-04-22 18:11:24 +07:00
|
|
|
interface FormDataAssigned {
|
2024-04-23 11:04:33 +07:00
|
|
|
including: string;
|
2024-04-22 18:11:24 +07:00
|
|
|
indicator: string;
|
|
|
|
|
target: string;
|
|
|
|
|
unit: string;
|
|
|
|
|
weigth: string;
|
2024-04-23 11:04:33 +07:00
|
|
|
achievement1: string;
|
|
|
|
|
achievement2: string;
|
|
|
|
|
achievement3: string;
|
|
|
|
|
achievement4: string;
|
|
|
|
|
achievement5: string;
|
2024-04-22 18:11:24 +07:00
|
|
|
definition: string;
|
2024-04-23 11:04:33 +07:00
|
|
|
formula: string;
|
2024-04-09 15:22:23 +07:00
|
|
|
}
|
2024-04-22 18:11:24 +07:00
|
|
|
export type { FormProfile, FormDataAssigned };
|