zhengyiming
1 天以前 f633483b97b38c2965ecdbffcb80e4e297175a43
src/services/api/ParkBountyApply.ts
@@ -32,6 +32,21 @@
  });
}
/** 生成奖励金统计报表 POST /api/ParkBountyApply/BuildRewardStatistics */
export async function buildRewardStatistics(
  body: API.BuildRewardStatisticsInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/ParkBountyApply/BuildRewardStatistics', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 撤回申报 GET /api/ParkBountyApply/CancelParkBountyApply */
export async function cancelParkBountyApply(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)