| /* eslint-disable */ | 
| // @ts-ignore | 
| import { request } from '@/utils/request'; | 
|   | 
| /** 奖励金-出账 POST /api/ParkBountyApply/AuditParkBountyApplyTrade */ | 
| export async function auditParkBountyApplyTrade( | 
|   body: API.SyncAuditParkBountyTradeInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTrade', { | 
|     method: 'POST', | 
|     headers: { | 
|       'Content-Type': 'application/json', | 
|     }, | 
|     data: body, | 
|     ...(options || {}), | 
|   }); | 
| } | 
|   | 
| /** 奖励金-企业自身出账-审批 POST /api/ParkBountyApply/AuditParkBountyApplyTradeBySelf */ | 
| export async function auditParkBountyApplyTradeBySelf( | 
|   body: API.AuditParkBountyTradeBySelfInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTradeBySelf', { | 
|     method: 'POST', | 
|     headers: { | 
|       'Content-Type': 'application/json', | 
|     }, | 
|     data: body, | 
|     ...(options || {}), | 
|   }); | 
| } | 
|   | 
| /** 奖励金-出账-财务审批 POST /api/ParkBountyApply/FinanceAuditParkBountyApplyTrade */ | 
| export async function financeAuditParkBountyApplyTrade( | 
|   body: API.SyncFinanceAuditParkBountyTradeInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<number>('/api/ParkBountyApply/FinanceAuditParkBountyApplyTrade', { | 
|     method: 'POST', | 
|     headers: { | 
|       'Content-Type': 'application/json', | 
|     }, | 
|     data: body, | 
|     ...(options || {}), | 
|   }); | 
| } | 
|   | 
| /** 此处后端没有提供注释 GET /api/ParkBountyApply/Get818UserInfo */ | 
| export async function get818UserInfo(options?: API.RequestConfig) { | 
|   return request<API.UserInfoV2>('/api/ParkBountyApply/Get818UserInfo', { | 
|     method: 'GET', | 
|     ...(options || {}), | 
|   }); | 
| } | 
|   | 
| /** 此处后端没有提供注释 POST /api/ParkBountyApply/GetEnterpriseDrawWithList */ | 
| export async function getEnterpriseDrawWithList( | 
|   body: API.GetEnterpriseDrawWithListInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<API.GetEnterpriseDrawWithListOutputPageOutput>( | 
|     '/api/ParkBountyApply/GetEnterpriseDrawWithList', | 
|     { | 
|       method: 'POST', | 
|       headers: { | 
|         'Content-Type': 'application/json', | 
|       }, | 
|       data: body, | 
|       ...(options || {}), | 
|     } | 
|   ); | 
| } | 
|   | 
| /** 此处后端没有提供注释 POST /api/ParkBountyApply/GetEnterprisePrechargeList */ | 
| export async function getEnterprisePrechargeList(body: API.PageInput, options?: API.RequestConfig) { | 
|   return request<API.GetEnterprisePrechargeListOutputPageOutput>( | 
|     '/api/ParkBountyApply/GetEnterprisePrechargeList', | 
|     { | 
|       method: 'POST', | 
|       headers: { | 
|         'Content-Type': 'application/json', | 
|       }, | 
|       data: body, | 
|       ...(options || {}), | 
|     } | 
|   ); | 
| } | 
|   | 
| /** 运营端-奖励进出账详情 POST /api/ParkBountyApply/GetParkBountyTradeDetailList */ | 
| export async function getParkBountyTradeDetailList( | 
|   body: API.GetParkBountyTradeDetailByIdInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<API.GetParkBountyTradeDetailOutputPageOutput>( | 
|     '/api/ParkBountyApply/GetParkBountyTradeDetailList', | 
|     { | 
|       method: 'POST', | 
|       headers: { | 
|         'Content-Type': 'application/json', | 
|       }, | 
|       data: body, | 
|       ...(options || {}), | 
|     } | 
|   ); | 
| } | 
|   | 
| /** 运营端-奖励金使用管理列表 POST /api/ParkBountyApply/GetParkBountyTradeList */ | 
| export async function getParkBountyTradeList( | 
|   body: API.GetParkBountyTradeInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<API.GetParkBountyTradeOutputPageOutput>( | 
|     '/api/ParkBountyApply/GetParkBountyTradeList', | 
|     { | 
|       method: 'POST', | 
|       headers: { | 
|         'Content-Type': 'application/json', | 
|       }, | 
|       data: body, | 
|       ...(options || {}), | 
|     } | 
|   ); | 
| } | 
|   | 
| /** 此处后端没有提供注释 POST /api/ParkBountyApply/GetParkCustomerBountyFinanceList */ | 
| export async function getParkCustomerBountyFinanceList( | 
|   body: API.QueryParkCustomerBountyApplyInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<API.GetParkCustomerBountyFinanceOutputPageOutput>( | 
|     '/api/ParkBountyApply/GetParkCustomerBountyFinanceList', | 
|     { | 
|       method: 'POST', | 
|       headers: { | 
|         'Content-Type': 'application/json', | 
|       }, | 
|       data: body, | 
|       ...(options || {}), | 
|     } | 
|   ); | 
| } | 
|   | 
| /** 园区客户管理奖励金发放记录 POST /api/ParkBountyApply/GetParkCustomerBountySettleList */ | 
| export async function getParkCustomerBountySettleList( | 
|   body: API.QueryParkCustomerBountyApplyInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<API.GetParkCustomerBountySettleOutputPageOutput>( | 
|     '/api/ParkBountyApply/GetParkCustomerBountySettleList', | 
|     { | 
|       method: 'POST', | 
|       headers: { | 
|         'Content-Type': 'application/json', | 
|       }, | 
|       data: body, | 
|       ...(options || {}), | 
|     } | 
|   ); | 
| } | 
|   | 
| /** 运营端—奖励金-出账 POST /api/ParkBountyApply/ParkBountyApplyTrade */ | 
| export async function parkBountyApplyTrade( | 
|   body: API.CreateParkBountyTradeInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<number>('/api/ParkBountyApply/ParkBountyApplyTrade', { | 
|     method: 'POST', | 
|     headers: { | 
|       'Content-Type': 'application/json', | 
|     }, | 
|     data: body, | 
|     ...(options || {}), | 
|   }); | 
| } | 
|   | 
| /** 奖励金-线下投保 企业自身提出出账申请 POST /api/ParkBountyApply/ParkBountyApplyTradeBySelf */ | 
| export async function parkBountyApplyTradeBySelf( | 
|   body: API.CreateParkBountyTradeInput, | 
|   options?: API.RequestConfig | 
| ) { | 
|   return request<number>('/api/ParkBountyApply/ParkBountyApplyTradeBySelf', { | 
|     method: 'POST', | 
|     headers: { | 
|       'Content-Type': 'application/json', | 
|     }, | 
|     data: body, | 
|     ...(options || {}), | 
|   }); | 
| } |