zhengyiming
昨天 6fc60fcdccd4c99e43be482ecf3757108e833c34
src/services/api/ParkBountyApply.ts
@@ -17,6 +17,21 @@
  });
}
/** 企业自主申报 POST /api/ParkBountyApply/AddParkBountyApplyByEnterprise */
export async function addParkBountyApplyByEnterprise(
  body: API.AddParkBountyApplyByEnterpriseInput,
  options?: API.RequestConfig
) {
  return request<string>('/api/ParkBountyApply/AddParkBountyApplyByEnterprise', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 奖励金-出账-审批 POST /api/ParkBountyApply/AuditParkBountyApplyTrade */
export async function auditParkBountyApplyTrade(
  body: API.AuditParkBountyTradeInput,
@@ -808,6 +823,21 @@
  );
}
/** 查询奖励金统计报表 GET /api/ParkBountyApply/GetRewardStatisticsMonths */
export async function getRewardStatisticsMonths(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetRewardStatisticsMonthsParams,
  options?: API.RequestConfig
) {
  return request<string[]>('/api/ParkBountyApply/GetRewardStatisticsMonths', {
    method: 'GET',
    params: {
      ...params,
    },
    ...(options || {}),
  });
}
/** 导入奖励金申报财政/平台拨付总额 POST /api/ParkBountyApply/ImportParkBountyAppalyAmount */
export async function importParkBountyAppalyAmount(
  body: API.ImportParkBountyAppalyAmountInput,