no message

This commit is contained in:
STW_TTTY\stwtt 2024-04-04 12:38:48 +07:00
parent 5c1747262f
commit b130568ef4
12 changed files with 938 additions and 472 deletions

View file

@ -80,6 +80,25 @@ interface FormAddHistory {
[key: string]: any;
}
interface FormAddHistoryEmployee {
id: string;
name: string;
prefix: string;
rank: string;
firstName: string;
lastName: string;
citizenId: string;
level: string;
type: string;
posLevelId: string;
posTypeId: string;
position: string;
posNo: string;
oc: string;
[key: string]: any;
}
interface FormAddHistoryProject {
id:string
project: string;
@ -104,4 +123,5 @@ export type {
FormFollowOther,
FormAddHistory,
FormAddHistoryProject,
FormAddHistoryEmployee,
};