zhengyiming
4 天以前 8feaba218a5ce22e92214e4c9082faf59b25c885
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 新增产业园区 POST /api/IndustrialPark/AddIndustrialPark */
export async function addIndustrialPark(
  body: API.AddIndustrialParkInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/IndustrialPark/AddIndustrialPark', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 新增产业园区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',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 获取产业园区下拉列表数据 GET /api/IndustrialPark/GetIndustrialParkDropDownList */
export async function getIndustrialParkDropDownList(options?: API.RequestConfig) {
  return request<API.IndustrialParkDropDownOutput[]>(
    '/api/IndustrialPark/GetIndustrialParkDropDownList',
    {
      method: 'GET',
      ...(options || {}),
    }
  );
}
 
/** 获取产业园区分页列表 POST /api/IndustrialPark/GetIndustrialParkPage */
export async function getIndustrialParkPage(
  body: API.QueryIndustrialParkListInput,
  options?: API.RequestConfig
) {
  return request<API.IndustrialParkListOutputPageOutput>(
    '/api/IndustrialPark/GetIndustrialParkPage',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** 设置奖励金申报状态 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,
  options?: API.RequestConfig
) {
  return request<number>('/api/IndustrialPark/SetIndustrialParkStatus', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 更新产业园区 POST /api/IndustrialPark/UpdateIndustrialPark */
export async function updateIndustrialPark(
  body: API.UpdateIndustrialParkInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/IndustrialPark/UpdateIndustrialPark', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(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 || {}),
  });
}