Przeglądaj źródła

feat(types): 添加后台模板文件类型

lipk 2 lat temu
rodzic
commit
6dc6e96307
1 zmienionych plików z 9 dodań i 0 usunięć
  1. 9 0
      types/src/interface/matter.ts

+ 9 - 0
types/src/interface/matter.ts

@@ -203,3 +203,12 @@ export const ComponentNameMap: Record<string, string> = {
   reviewRecord: '预算复核',
   auditScore: '审核评分',
 };
+
+// 后台模板文件
+export interface IGypFileBackEndTemplate {
+  ID: string;
+  url: string;
+  name: string;
+  gypID: string;
+  businessID: string;
+}