瀏覽代碼

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 };
+}