| | |
| | | }); |
| | | } |
| | | |
| | | /** 新增产业园区V2 POST /api/IndustrialPark/AddIndustrialParkV2 */ |
| | | export async function addIndustrialParkV2( |
| | | body: API.AddIndustrialParkInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/IndustrialPark/AddIndustrialParkV2', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 部门数据转移 POST /api/IndustrialPark/DepartmentDataTransfer */ |
| | | export async function departmentDataTransfer(options?: API.RequestConfig) { |
| | | return request<number>('/api/IndustrialPark/DepartmentDataTransfer', { |
| | | method: 'POST', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取产业园区信息详情 POST /api/IndustrialPark/GetIndustrialParkDetail */ |
| | | export async function getIndustrialParkDetail( |
| | | body: API.QueryIndustrialParkDetailInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.IndustrialParkDetailOutput>('/api/IndustrialPark/GetIndustrialParkDetail', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取产业园区信息详情V2 POST /api/IndustrialPark/GetIndustrialParkDetailV2 */ |
| | | export async function getIndustrialParkDetailV2( |
| | | body: API.QueryIndustrialParkDetailInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.IndustrialParkDetailOutput>('/api/IndustrialPark/GetIndustrialParkDetailV2', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 更新产业园区V2 POST /api/IndustrialPark/UpdateIndustrialParkV2 */ |
| | | export async function updateIndustrialParkV2( |
| | | body: API.UpdateIndustrialParkInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/IndustrialPark/UpdateIndustrialParkV2', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |