Refactoring code module 06_evaluate

This commit is contained in:
STW_TTTY\stwtt 2024-09-04 14:52:04 +07:00
parent 4253226ac3
commit d03e3b9e98
22 changed files with 192 additions and 400 deletions

View file

@ -45,6 +45,25 @@ interface FormCommand {
assignedPosition: string;
}
interface FormCommandSe {
commanderFullname: string;
commanderPosition: string;
commanderAboveFullname: string;
commanderAbovePosition: string;
author: string;
subject: string;
}
interface FormData {
id: string;
commanderFullname: string;
commanderPosition: string;
commanderAboveFullname: string;
commanderAbovePosition: string;
author: string;
subject: string;
}
interface FormCommandRef {
commanderFullname: object | null;
commanderPosition: object | null;
@ -114,4 +133,6 @@ export type {
CertificatesForm,
ListMenu,
FormRef,
FormData,
FormCommandSe
};

View file

@ -3,4 +3,26 @@ interface OptionStatus {
label: string;
}
export type { OptionStatus };
interface FileObject {
label: string;
fileName: string;
}
interface MainList {
id: string;
typeparam:string;
type:string;
type_th:string;
dateSend:string;
status:string;
step:string;
}
interface ListResponse {
id:string
type:string
type_th:string
updatedAt:Date|null
step:string
}
export type { OptionStatus, FileObject,MainList,ListResponse };