Merge branch 'nice_dev' into develop
This commit is contained in:
commit
51bfb9d57e
4 changed files with 541 additions and 183 deletions
21
src/modules/15_development/interface/request/FollowResult.ts
Normal file
21
src/modules/15_development/interface/request/FollowResult.ts
Normal 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 };
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
interface DevelopmentEvaluations {
|
||||
calculation: string;
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
developmentId: string;
|
||||
id: string;
|
||||
indicators: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
measuRement: string;
|
||||
metricType: string;
|
||||
obstacles: string;
|
||||
results: string;
|
||||
suggestions: string;
|
||||
target: number | null;
|
||||
}
|
||||
|
||||
export type { DevelopmentEvaluations };
|
||||
Loading…
Add table
Add a link
Reference in a new issue