interface FormQueryProject { year: number; keyword: string; } interface FormBasicinfo { year: number; org: string; projectName: string; reason: string; objective: string; } interface FormGroupTarget { groupTarget: string; groupTargetSub: string; position: string; posType: string; level: string; type: string; amount: number | null; } interface FormGroupRelate { relate: string; amount: number | null; } interface FormFollowResult { metricType: string; indicators: string; target: string; calculation: string; measuRement: string; results: string; obstacles: string; suggestions: string; } export type { FormQueryProject, FormBasicinfo, FormGroupTarget, FormGroupRelate, FormFollowResult, };