|
|
@@ -3,6 +3,7 @@
|
|
|
|
|
|
import {protoMiddleware} from "@/services/socket/protobuf/buildReq";
|
|
|
import {
|
|
|
+ PerformanceActivateReq,
|
|
|
PerformanceContractedApplyReq,
|
|
|
PerformanceDelayApplyReq,
|
|
|
PerformanceManualConfirmReq, PerformanceModifyContactReq
|
|
|
@@ -39,4 +40,12 @@ export const performanceContractedApply = (param: PerformanceContractedApplyReq)
|
|
|
*/
|
|
|
export const performanceModifyContact = (param: PerformanceModifyContactReq): Promise<any> => {
|
|
|
return protoMiddleware<PerformanceModifyContactReq>(param, 'PerformanceModifyContactReq', 'PerformanceModifyContactRsp', HeadEnum.tradeMode17)
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 履约激活请求
|
|
|
+ * @param param
|
|
|
+ */
|
|
|
+export const performanceActivate = (param: PerformanceActivateReq):Promise<any> => {
|
|
|
+ return protoMiddleware<PerformanceActivateReq>(param, 'PerformanceActivateReq', 'PerformanceActivateRsp', HeadEnum.tradeMode17)
|
|
|
+}
|