แบบประเมิน => API ผลสัมฤทธิ์ของงาน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-24 15:00:53 +07:00
parent 5b52f9998f
commit a050534d1a
6 changed files with 245 additions and 77 deletions

View file

@ -13,26 +13,27 @@ interface FormProfile {
interface FormDataAssigned {
including: string;
indicator: string;
includingName: string;
target: string;
unit: string;
weigth: string;
unit: number | null;
weight: number | null;
achievement1: string;
achievement2: string;
achievement3: string;
achievement4: string;
achievement5: string;
definition: string;
meaning: string;
formula: string;
kpiUserEvaluationId: string;
}
interface FormCapacityList{
id:string|null
name:string
level:string
point:number
weight:number
summary:number
interface FormCapacityList {
id: string | null;
name: string;
level: string;
point: number;
weight: number;
summary: number;
}
export type { FormProfile, FormDataAssigned,FormCapacityList };
export type { FormProfile, FormDataAssigned, FormCapacityList };