แต่งตั้งคณะกรรมการทดลองงาน
This commit is contained in:
parent
77120a0f7b
commit
3ec0614e39
9 changed files with 1150 additions and 30 deletions
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue