รักษาการในตำแหน่ง ==> ปรับโครงสร้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-16 11:34:33 +07:00
parent 115b41c922
commit 0da3f425a7
3 changed files with 94 additions and 40 deletions

View file

@ -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,
};