Refactoring code module 02_organization
This commit is contained in:
parent
63b9aafbaf
commit
0f5d772e53
24 changed files with 805 additions and 1033 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue