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