import components

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-10 13:34:04 +07:00
parent b3a1ee8b2c
commit d35ab5c48b
3 changed files with 40 additions and 101 deletions

View file

@ -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,
};

View file

@ -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;
}