รายการตำแหน่งทางการบริหาร

This commit is contained in:
setthawutttty 2024-02-02 14:53:06 +07:00
parent 0c85176b10
commit f3ae565352
6 changed files with 475 additions and 7 deletions

View file

@ -7,7 +7,7 @@ interface DataOption {
name: string;
}
interface FormPositionSelect {
interface FormPositionSelectDialog {
positionId: string;
positionName: string;
positionField: string;
@ -28,6 +28,12 @@ interface FormPositionSelectRef {
positionArea: object | null;
[key: string]: any;
}
interface FormExecutiveRef {
posExecutiveName: object | null;
posExecutivePriority: object | null;
[key: string]: any;
}
interface OptionType {
id: string;
@ -77,10 +83,18 @@ interface RowDetailPositions {
posExecutiveId: string;
}
interface RowListForm {
id:string
posExecutiveName: string
posExecutivePriority: number|null
}
export type {
Pagination, DataOption, FormPositionSelect, FormPositionSelectRef, OptionType, OptionLevel,
OptionExecutive,
ListMenu,
RowDetailPositions
RowDetailPositions,
RowListForm,
FormPositionSelectDialog,
FormExecutiveRef
};