| | |
| | | ); |
| | | } |
| | | |
| | | /** 设置奖励金申报状态 POST /api/IndustrialPark/SetIndustrialParkRewardEnable */ |
| | | export async function setIndustrialParkRewardEnable( |
| | | body: API.SetIndustrialParkRewardEnableInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/IndustrialPark/SetIndustrialParkRewardEnable', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 设置产业园区状态 POST /api/IndustrialPark/SetIndustrialParkStatus */ |
| | | export async function setIndustrialParkStatus( |
| | | body: API.SetIndustrialParkStatusInput, |