โครงการ => Tab การติดตามประเมินผล

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-11 16:26:54 +07:00
parent ef8a853af1
commit 99faf68c66
4 changed files with 541 additions and 183 deletions

View file

@ -0,0 +1,21 @@
interface FormIndicators {
indicators: string;
target: number | null;
metricType: string;
calculation: string;
measuRement: string;
results: string;
obstacles: string;
suggestions: string;
}
interface FormProject {
isBudget: boolean;
isNoPass: boolean;
isOutBudget: boolean;
isPassAllocate: boolean;
isPassNoAllocate: boolean;
project: string;
}
export type { FormIndicators, FormProject };