wupengfei
2025-04-09 1b0bbe7fbe3d62779356f0729f086ceb3901e17b
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,