|
|
@@ -1,4 +1,10 @@
|
|
|
-import { EUpDown, IGatherYsProfileFile, IMatterNode, UploadMsg } from '..';
|
|
|
+import {
|
|
|
+ EUpDown,
|
|
|
+ IAuditScoreLog,
|
|
|
+ IGatherYsProfileFile,
|
|
|
+ IMatterNode,
|
|
|
+ UploadMsg,
|
|
|
+} from '..';
|
|
|
|
|
|
export namespace PostApprovalCopyGatherYsProfileFiles {
|
|
|
export type Params = {
|
|
|
@@ -119,3 +125,9 @@ export namespace GetApprovalExecutorMembers {
|
|
|
members: string[];
|
|
|
}[];
|
|
|
}
|
|
|
+
|
|
|
+export namespace PostApprovalBatchAddAuditScoreLog {
|
|
|
+ export type Params = {
|
|
|
+ list: Omit<IAuditScoreLog, 'ID'>[];
|
|
|
+ };
|
|
|
+}
|