แก้ไขโครงการ/หลักสูตรการฝึกอบรม เป้าหมาย

This commit is contained in:
setthawutttty 2024-12-26 12:02:40 +07:00
parent 90d6421a9e
commit 8876d481a9
3 changed files with 40 additions and 28 deletions

View file

@ -96,19 +96,21 @@ interface ResPlannedGoals {
posLevelPlannedId: string;
}
];
positions?: [
{
position: string;
posTypePlannedId: string;
posLevelPlannedId: string;
}
];
position: PositionsType[];
posTypePlannedId: string;
posLevelPlannedId: string;
type: string | null;
amount: number | null;
}
interface PositionsType {
id: string;
posLevel: string;
posLevelId: string;
posType: string;
posTypeId: string;
position: string;
}
interface ResRecord {
commandDate: Date | null;
commandNumber: string | null;
@ -219,4 +221,5 @@ export type {
ResHistory,
ResPrefix,
ResRisk,
PositionsType
};