zhengyiming
2025-06-11 91f00f1df35a964d69f48b9f71b484e2d4ef357e
packages/services/api/LifePay.ts
@@ -482,6 +482,21 @@
  });
}
/** 导出渠道订单Excel POST /api/LifePay/GetLifePayOrderPageExportForChannle */
export async function getLifePayOrderPageExportForChannle(
  body: API.QueryLifePayOrderListInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/LifePay/GetLifePayOrderPageExportForChannle', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 获取充值流水分页数据 POST /api/LifePay/GetLifePayRechargeReceiptsPage */
export async function getLifePayRechargeReceiptsPage(
  body: API.LifePayRechargeReceiptsPageInput,
@@ -764,6 +779,21 @@
  });
}
/** 话费订单查询 POST /api/LifePay/QueryPhoneOrder */
export async function queryPhoneOrder(
  body: API.QueryPhoneOrderRequestInput,
  options?: API.RequestConfig
) {
  return request<API.QueryPhoneOrderResponse>('/api/LifePay/QueryPhoneOrder', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 退款生活缴费订单 POST /api/LifePay/RefundLifePayOrder */
export async function refundLifePayOrder(
  body: API.RefundLifePayOrderInput,
@@ -839,6 +869,21 @@
  });
}
/** 获取指定天数的统计数据 POST /api/LifePay/StatisticsByDate */
export async function statisticsByDate(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIstatisticsByDateParams,
  options?: API.RequestConfig
) {
  return request<number>('/api/LifePay/StatisticsByDate', {
    method: 'POST',
    params: {
      ...params,
    },
    ...(options || {}),
  });
}
/** 修改实际到账金额 POST /api/LifePay/UpdateLifePayOrderActualReceivedAmount */
export async function updateLifePayOrderActualReceivedAmount(
  body: API.UpdateLifePayOrderInput,