UI แต่งตั้งคณะกรรมการทดลองงาน

This commit is contained in:
setthawutttty 2024-10-18 16:48:27 +07:00
parent 8dadcb450a
commit 3728587c4e
7 changed files with 470 additions and 96 deletions

View file

@ -341,6 +341,25 @@ interface PersonData {
id: string;
}
interface AppointTopic {
id: string;
appointId: string;
profileId: string;
name: string;
position: string;
positionType: string;
positionLevel: string;
role: string;
}
interface AppointTopicMain {
id: string;
profileId: string;
topic: string;
commandNo: string;
status: string;
directors: AppointTopic[];
}
export type {
DataOption,
DataOptionInsignia,
@ -367,6 +386,8 @@ export type {
ListMenu,
DataEducation,
PersonData,
AppointTopic,
AppointTopicMain
};
export { AddressDataDefualt, FamilyDataDefualt };