Переглянути джерело

feat(types): 审核意见相关接口

lipk 2 роки тому
батько
коміт
08b51463a6
1 змінених файлів з 9 додано та 0 видалено
  1. 9 0
      types/src/interface/api/approvaApi.ts

+ 9 - 0
types/src/interface/api/approvaApi.ts

@@ -1,6 +1,7 @@
 import {
   EUpDown,
   IAuditScoreLog,
+  IAuditScoreRemark,
   IGatherYsProfileFile,
   IMatterNode,
   UploadMsg,
@@ -142,3 +143,11 @@ export namespace GetAuditScoreLogs {
     list: IAuditScoreLog[];
   };
 }
+
+export namespace UpdateAuditScoreRemark {
+  export type Params = Omit<IAuditScoreRemark, 'ID'> & { ID?: string };
+}
+
+export namespace GetAuditScoreRemarkList {
+  export type Params = { businessID: string; dataID: string };
+}