wupengfei
2 天以前 27652573ea8a58d5593791e27b4d326f84187093
packages/services/apiV2/enterpriseWallet.ts
@@ -195,6 +195,21 @@
  });
}
/** 导出企业余额详情 POST /api/user/enterpriseWallet/exportEnterpriseBalanceDetails */
export async function exportEnterpriseBalanceDetails(
  body: API.ExportEnterpriseBalanceDetailsCommand,
  options?: API.RequestConfig
) {
  return request<string>('/api/user/enterpriseWallet/exportEnterpriseBalanceDetails', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 支付宝通知回传 GET /api/user/enterpriseWallet/getAlipayNotify */
export async function getAlipayNotify(
  body: API.GetAlipayNotifyCommand,
@@ -251,8 +266,6 @@
      method: 'GET',
      params: {
        ...params,
        request: undefined,
        ...params['request'],
      },
      ...(options || {}),
    }
@@ -495,9 +508,12 @@
  );
}
/** 测试微信支付 POST /api/user/enterpriseWallet/testWeChatPay */
export async function testWeChatPay(body: API.TestWeChatPayCommand, options?: API.RequestConfig) {
  return request<boolean>('/api/user/enterpriseWallet/testWeChatPay', {
/** 1.3.0.2版本修复企业钱包交易数据 POST /api/user/enterpriseWallet/repairEnterpriseWalletTransaction_1_3_0_2 */
export async function repairEnterpriseWalletTransaction1302(
  body: API.RepairEnterpriseWalletTransaction1302Command,
  options?: API.RequestConfig
) {
  return request<boolean>('/api/user/enterpriseWallet/repairEnterpriseWalletTransaction_1_3_0_2', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',