รักษาการในตำแหน่ง ==> ปรับโครงสร้าง
This commit is contained in:
parent
115b41c922
commit
0da3f425a7
3 changed files with 94 additions and 40 deletions
|
|
@ -54,4 +54,39 @@ interface DataStructureTree {
|
|||
children: DataStructureTree[];
|
||||
}
|
||||
|
||||
export type { DataOption, FormProfile, RoleData, DataStructureTree };
|
||||
interface DataStrategy {
|
||||
id: string;
|
||||
level: number;
|
||||
name: string;
|
||||
children: DataStrategy[];
|
||||
}
|
||||
|
||||
interface DataActing {
|
||||
labelName: string;
|
||||
orgCode: string;
|
||||
orgLevel: 0;
|
||||
orgName: string;
|
||||
orgRootName: string;
|
||||
orgTreeCode: string;
|
||||
orgTreeId: string;
|
||||
orgTreeName: string;
|
||||
orgTreeShortName: string;
|
||||
children: DataActing[];
|
||||
posMaster: PosMaster[];
|
||||
}
|
||||
|
||||
interface PosMaster {
|
||||
fullNameCurrentHolder: string;
|
||||
orgLevel: number;
|
||||
orgTreeId: string;
|
||||
posmasterId: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
DataOption,
|
||||
FormProfile,
|
||||
RoleData,
|
||||
DataStructureTree,
|
||||
DataActing,
|
||||
DataStrategy,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue