import components
This commit is contained in:
parent
b3a1ee8b2c
commit
d35ab5c48b
3 changed files with 40 additions and 101 deletions
|
|
@ -25,14 +25,13 @@ interface FormGroupTarget {
|
|||
}
|
||||
|
||||
interface FormGroupTargetPlannedGoal {
|
||||
positions:[
|
||||
positions: [
|
||||
{
|
||||
position: string,
|
||||
posTypePlannedId: string,
|
||||
posLevelPlannedId: string,
|
||||
position: string;
|
||||
posTypePlannedId: string;
|
||||
posLevelPlannedId: string;
|
||||
}
|
||||
]
|
||||
;
|
||||
];
|
||||
groupTarget: string;
|
||||
groupTargetSub: string;
|
||||
position: string;
|
||||
|
|
@ -203,13 +202,13 @@ interface actualGoals {
|
|||
interface PlannedGoals {
|
||||
groupTarget: string;
|
||||
groupTargetSub: string;
|
||||
positions:[
|
||||
positions: [
|
||||
{
|
||||
position: string,
|
||||
posTypePlannedId: string,
|
||||
posLevelPlannedId: string,
|
||||
position: string;
|
||||
posTypePlannedId: string;
|
||||
posLevelPlannedId: string;
|
||||
}
|
||||
]
|
||||
];
|
||||
type: string | null;
|
||||
amount: number | null;
|
||||
}
|
||||
|
|
@ -225,5 +224,5 @@ export type {
|
|||
FormAddHistory,
|
||||
FormAddHistoryProject,
|
||||
FormAddHistoryEmployee,
|
||||
FormGroupTargetPlannedGoal
|
||||
FormGroupTargetPlannedGoal,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -88,14 +88,15 @@ interface ResActualGoals {
|
|||
interface ResPlannedGoals {
|
||||
groupTarget: string;
|
||||
groupTargetSub: string;
|
||||
positions:[
|
||||
position: [
|
||||
{
|
||||
position: string,
|
||||
posTypePlannedId: string,
|
||||
posLevelPlannedId: string,
|
||||
position: string;
|
||||
posTypePlannedId: string;
|
||||
posLevelPlannedId: string;
|
||||
}
|
||||
]
|
||||
;
|
||||
];
|
||||
posTypePlannedId: string;
|
||||
posLevelPlannedId: string;
|
||||
type: string | null;
|
||||
amount: number | null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue