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

This commit is contained in:
setthawutttty 2024-10-17 15:36:48 +07:00
parent 77120a0f7b
commit 3ec0614e39
9 changed files with 1150 additions and 30 deletions

View file

@ -12,6 +12,11 @@ interface FormPlacementMainData {
isExpired?: boolean;
}
interface ItemTabs {
label: string;
name: string;
}
interface FormOrderPlacementMainData {
Order: string;
OrderNum: string;
@ -85,6 +90,43 @@ interface CriteriaType {
criteriaType: string;
criteriaValue: string;
}
interface AppointMainRows {
id: string;
topic: string;
commandNo: string;
status: string;
}
interface FormAppointData {
topic: string;
persons: PersonsAppointData[];
}
interface PersonsAppointData {
profileId: string;
name?: string;
citizenId: string;
prefix: string;
firstName: string;
lastName: string;
position: string;
positionType: string;
positionLevel: string;
role?: string;
}
interface MemBerType {
id: string;
prefix: string;
firstName: string;
lastName: string;
citizenId: string;
position: string;
posLevel: string;
posType: string;
isDirector?: boolean;
}
export type {
FormPlacementMainData,
FormOrderPlacementMainData,
@ -95,5 +137,10 @@ export type {
mapData,
OpfillterType,
CriteriaType,
OpfillterTypeSt
OpfillterTypeSt,
ItemTabs,
AppointMainRows,
FormAppointData,
MemBerType,
PersonsAppointData
};