@@ -41,3 +41,4 @@ export * from './platformSwitch';
export * from './area';
export * from './processLog';
export * from './generalSetting';
+export * from './resultDocument';
@@ -0,0 +1,31 @@
+interface IResultDocumentData {
+ ID: string;
+ name: string;
+ parentID: string;
+ mode: string;
+ children: any[];
+ folder: boolean;
+ profileMatterID: string;
+ profileIDs: string[];
+ required: boolean;
+ compilationID: string;
+ reportIDs: number[];
+ dataID?: string;
+ businessID?: string;
+}
+
+interface ISubResultDocument {
+ children: IResultDocumentData[];
+export interface IResultDocument {
+ treeData: ISubResultDocument[];
+ matterID: string;
+ approvalID: string;