wupengfei
2025-04-23 b7426e2384b85e92ec1b59061bdada9b4f5c69ec
src/services/api/ParkReward.ts
@@ -95,6 +95,24 @@
  });
}
/** 运营端一园区客户管理详情一奖励金消费记录 POST /api/ParkReward/GetParkCustomerBountyConsumptionList */
export async function getParkCustomerBountyConsumptionList(
  body: API.QueryParkCustomerBountyApplyInput,
  options?: API.RequestConfig
) {
  return request<API.GetParkCustomerBountyConsumptionOutputPageOutput>(
    '/api/ParkReward/GetParkCustomerBountyConsumptionList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 获取奖励申请跟踪列表 POST /api/ParkReward/GetParkRewardApplyFollowList */
export async function getParkRewardApplyFollowList(
  body: API.GetParkRewardApplyFollowInput,