โครงการ => API ลักษณะโครงการ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-17 18:06:15 +07:00
parent c5b68d0691
commit b76f5854cf
5 changed files with 107 additions and 74 deletions

View file

@ -110,22 +110,29 @@ interface ResPlannedGoals {
}
interface ResRecord {
commandDate: Date | null;
commandNumber: string |null;
firstName: string;
fullName: string;
id: string;
idcard: string;
isDone: boolean;
lastName: string;
org: string;
posExecutive: string | null;
posLevelName :string;
posTypeName: string;
position: string;
prefix: string;
trainingDays: number | null;
type: string;
commandDate: Date | null;
commandNumber: string | null;
firstName: string;
fullName: string;
id: string;
idcard: string;
isDone: boolean;
lastName: string;
org: string;
posExecutive: string | null;
posLevelName: string;
posTypeName: string;
position: string;
prefix: string;
trainingDays: number | null;
type: string;
}
interface DataStrategic {
id: string;
name: string;
level: number;
children: DataStrategic;
}
export type {
@ -136,5 +143,6 @@ export type {
ResPeople,
ResActualGoals,
ResPlannedGoals,
ResRecord
ResRecord,
DataStrategic,
};