소스 검색

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