zhengyiming
2025-11-14 ba8d1c3083b10e57e9b9f9feb9f192d6f37df1fa
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,
@@ -775,6 +790,21 @@
  );
}
/** 导出园区客户管理列表 POST /api/ParkBountyApply/GetParkCustomerManagePageNewExport */
export async function getParkCustomerManagePageNewExport(
  body: API.QueryParkCustomerManageInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/ParkBountyApply/GetParkCustomerManagePageNewExport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 查询奖励金统计报表 POST /api/ParkBountyApply/GetRewardStatistics */
export async function getRewardStatistics(
  body: API.GetRewardStatisticsInput,
@@ -808,6 +838,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,