zhengyiming
2025-06-06 92544173d5fc7270427e1642b82b24314e68ecd9
packages/services/api/LifePay.ts
@@ -839,6 +839,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,