wupengfei
2025-04-08 9e63ed4533fe6fbb5e81a096c9f5949c7ccf58f2
src/services/api/ParkReward.ts
@@ -62,6 +62,24 @@
  });
}
/** 获取企业奖励金流水 POST /api/ParkReward/GetEnterpriseBuntyTradeList */
export async function getEnterpriseBuntyTradeList(
  body: API.PageInput,
  options?: API.RequestConfig
) {
  return request<API.GetEnterpriseBuntyTradeDtoPageOutput>(
    '/api/ParkReward/GetEnterpriseBuntyTradeList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 获取最新奖励申请信息 GET /api/ParkReward/GetNewestParkRewardApplyInfo */
export async function getNewestParkRewardApplyInfo(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)