|
|
@@ -93,6 +93,13 @@ export interface IGatherStepMatter extends IStepMatter {
|
|
|
userID: string;
|
|
|
}
|
|
|
|
|
|
+export interface ITemplateFile {
|
|
|
+ originalName: string;
|
|
|
+ realName: string;
|
|
|
+ ID: string;
|
|
|
+ path: string;
|
|
|
+}
|
|
|
+
|
|
|
export interface IYsProfileTemplate {
|
|
|
ID: string;
|
|
|
parentID: string;
|
|
|
@@ -108,12 +115,7 @@ export interface IYsProfileTemplate {
|
|
|
fileNum?: number;
|
|
|
remark?: string; // 备注
|
|
|
profileIndex?: string; // 资料索引
|
|
|
- templateFiles: {
|
|
|
- originalName: string;
|
|
|
- realName: string;
|
|
|
- ID: string;
|
|
|
- path: string;
|
|
|
- }[]; // 文件模板名称
|
|
|
+ templateFiles: ITemplateFile[]; // 文件模板名称
|
|
|
}
|
|
|
|
|
|
export interface IGatherYsProfileTemplate extends IYsProfileTemplate {
|