|
|
@@ -108,7 +108,12 @@ export interface IYsProfileTemplate {
|
|
|
fileNum?: number;
|
|
|
remark?: string; // 备注
|
|
|
profileIndex?: string; // 资料索引
|
|
|
- templateFiles: { originalName: string; realName: string }[]; // 文件模板名称
|
|
|
+ templateFiles: {
|
|
|
+ originalName: string;
|
|
|
+ realName: string;
|
|
|
+ ID: string;
|
|
|
+ path: string;
|
|
|
+ }[]; // 文件模板名称
|
|
|
}
|
|
|
|
|
|
export interface IGatherYsProfileTemplate extends IYsProfileTemplate {
|
|
|
@@ -209,11 +214,13 @@ export const ComponentNameMap: Record<string, string> = {
|
|
|
// 后台模板文件
|
|
|
export interface IGypFileTemplate {
|
|
|
ID: string;
|
|
|
+ dataID: string;
|
|
|
url: string;
|
|
|
originalName: string;
|
|
|
realName: string;
|
|
|
gypID: string;
|
|
|
businessID: string;
|
|
|
+ path: string;
|
|
|
}
|
|
|
|
|
|
// 事项库
|