|
@@ -1,11 +1,17 @@
|
|
|
|
|
+import { IYsProfileTemplate } from '../matter';
|
|
|
|
|
+
|
|
|
// 获取资料清单的文件结构
|
|
// 获取资料清单的文件结构
|
|
|
export namespace GetYsProfileList {
|
|
export namespace GetYsProfileList {
|
|
|
export type Params = {
|
|
export type Params = {
|
|
|
matterID: string;
|
|
matterID: string;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+ type IYsProfileTemplateItem = IYsProfileTemplate & {
|
|
|
|
|
+ children?: IYsProfileTemplateItem[];
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
export type Response = {
|
|
export type Response = {
|
|
|
- fileTree: any[]; // 太多类型丢失了,补不回来了
|
|
|
|
|
|
|
+ fileTree: IYsProfileTemplateItem[];
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
|
|
|