Refactoring code module 02_organization

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-11 17:00:27 +07:00
parent 63b9aafbaf
commit 0f5d772e53
24 changed files with 805 additions and 1033 deletions

View file

@ -7,6 +7,11 @@ interface DataOption {
name: string;
}
interface DataDocument {
name: string;
val: string;
}
interface ListMenu {
label: string;
icon: string;
@ -121,6 +126,7 @@ interface RowDetailPositions {
posLevelId: string;
posExecutiveId: string;
isSpecial: boolean;
positionIsSelected: string;
}
interface NewPagination {
@ -147,4 +153,5 @@ export type {
HistoryPostType,
FormPositionSelectRef,
NewPagination,
DataDocument,
};

View file

@ -8,10 +8,10 @@ interface DataPosType {
interface DataLevel {
id: string;
posLevelName: number;
posLevelName: number | string;
posTypeName: string;
posTypeId: string;
posLevelAuthority: string;
}
export type { DataPosType };
export type { DataPosType, DataLevel };