UI KPI
This commit is contained in:
parent
cf66659b9a
commit
59aa022bab
15 changed files with 1629 additions and 6 deletions
8
src/modules/08_KPI/interface/index/Main.ts
Normal file
8
src/modules/08_KPI/interface/index/Main.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
interface DataOptions {
|
||||
id:string
|
||||
name:string
|
||||
}
|
||||
|
||||
export type {
|
||||
DataOptions
|
||||
}
|
||||
22
src/modules/08_KPI/interface/request/index.ts
Normal file
22
src/modules/08_KPI/interface/request/index.ts
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
interface FormProfile {
|
||||
fullName: string;
|
||||
prefix: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
position: string;
|
||||
type: string;
|
||||
level: string;
|
||||
status: string;
|
||||
score: string;
|
||||
|
||||
avartar:string
|
||||
}
|
||||
|
||||
interface FormDataAssigned{
|
||||
indicator:string
|
||||
target:string
|
||||
unit:string
|
||||
weigth:string
|
||||
definition:string
|
||||
}
|
||||
export type { FormProfile ,FormDataAssigned};
|
||||
Loading…
Add table
Add a link
Reference in a new issue