บันทึกผล

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-07-30 18:07:41 +07:00
parent 3531301713
commit c91843ceba
9 changed files with 918 additions and 170 deletions

View file

@ -126,6 +126,7 @@ interface ResRecord {
prefix: string;
trainingDays: number | null;
type: string;
isProfile: boolean;
}
interface DataStrategic {
@ -178,6 +179,15 @@ interface ResHistory {
year: number;
}
interface ResPrefix {
createdAt: string;
createdFullName: string;
id: string;
lastUpdateFullName: string;
lastUpdatedAt: string;
name: string;
}
export type {
ResGroup,
ResLevel,
@ -190,4 +200,5 @@ export type {
DataStrategic,
DataTree,
ResHistory,
ResPrefix,
};