tab บันทึกผล clean code+interface

This commit is contained in:
oat_dev 2024-04-17 15:08:30 +07:00
parent 9844202c29
commit 0e1bb1ccf9
2 changed files with 23 additions and 85 deletions

View file

@ -109,6 +109,25 @@ interface ResPlannedGoals {
amount: number | null;
}
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;
}
export type {
ResGroup,
ResLevel,
@ -117,4 +136,5 @@ export type {
ResPeople,
ResActualGoals,
ResPlannedGoals,
ResRecord
};