zhengyiming
2025-02-25 9e72ccd8e8bf0362dde6e6df9410fedbf79115be
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 新增删除表单 POST /api/InsureOfflineBill/CreateOrEditInsureOfflineBill */
export async function createOrEditInsureOfflineBill(
  body: API.CreateOrEditInsureOfflineBillInput,
  options?: API.RequestConfig
) {
  return request<string>('/api/InsureOfflineBill/CreateOrEditInsureOfflineBill', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 删除表单 DELETE /api/InsureOfflineBill/DeleteInsureProduct */
export async function deleteInsureProduct(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIdeleteInsureProductParams,
  options?: API.RequestConfig
) {
  return request<number>('/api/InsureOfflineBill/DeleteInsureProduct', {
    method: 'DELETE',
    params: {
      ...params,
    },
    ...(options || {}),
  });
}
 
/** 批增---线下批增导出 POST /api/InsureOfflineBill/GeOfflineInsureBatchAddListExport */
export async function geOfflineInsureBatchAddListExport(
  body: API.BatchRefundInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/InsureOfflineBill/GeOfflineInsureBatchAddListExport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 退保--线下退保导出 POST /api/InsureOfflineBill/GeOfflineInsureBatchRefundListExport */
export async function geOfflineInsureBatchRefundListExport(
  body: API.BatchRefundInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/InsureOfflineBill/GeOfflineInsureBatchRefundListExport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 退保---线上退保导出 POST /api/InsureOfflineBill/GeOnlineInsureBatchRefundListExport */
export async function geOnlineInsureBatchRefundListExport(
  body: API.BatchRefundInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/InsureOfflineBill/GeOnlineInsureBatchRefundListExport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 批增名单导出 POST /api/InsureOfflineBill/GetBatchAddInfoDetailExport */
export async function getBatchAddInfoDetailExport(
  body: API.BatchRefundInfoDetailInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/InsureOfflineBill/GetBatchAddInfoDetailExport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 线下退保--退保名单 POST /api/InsureOfflineBill/GetBatchRefundInfoDetail */
export async function getBatchRefundInfoDetail(
  body: API.BatchRefundInfoDetailInput,
  options?: API.RequestConfig
) {
  return request<API.BatchRefundInfoDetailOutputPageOutput>(
    '/api/InsureOfflineBill/GetBatchRefundInfoDetail',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** 退保名单导出 POST /api/InsureOfflineBill/GetBatchRefundInfoDetailExport */
export async function getBatchRefundInfoDetailExport(
  body: API.BatchRefundInfoDetailInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/InsureOfflineBill/GetBatchRefundInfoDetailExport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 线下退保--获取退保名单 GET /api/InsureOfflineBill/GetInsureBatchStaff */
export async function getInsureBatchStaff(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetInsureBatchStaffParams,
  options?: API.RequestConfig
) {
  return request<API.BatchRefundStaffOutput[]>('/api/InsureOfflineBill/GetInsureBatchStaff', {
    method: 'GET',
    params: {
      ...params,
    },
    ...(options || {}),
  });
}
 
/** 保险管理列表导出 POST /api/InsureOfflineBill/GetInsureOfflineBillExportList */
export async function getInsureOfflineBillExportList(
  body: API.GetInsureOfflineBillExportInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/InsureOfflineBill/GetInsureOfflineBillExportList', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 获取表单详情 GET /api/InsureOfflineBill/GetInsureOfflineBillInfoById */
export async function getInsureOfflineBillInfoById(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetInsureOfflineBillInfoByIdParams,
  options?: API.RequestConfig
) {
  return request<API.InsureOfflineBillInfoDto>(
    '/api/InsureOfflineBill/GetInsureOfflineBillInfoById',
    {
      method: 'GET',
      params: {
        ...params,
      },
      ...(options || {}),
    }
  );
}
 
/** 获取线下表单列表 POST /api/InsureOfflineBill/GetInsureOfflineBillList */
export async function getInsureOfflineBillList(
  body: API.GetInsureOfflineBillInput,
  options?: API.RequestConfig
) {
  return request<API.InsureOfflineBillDtoPageOutput>(
    '/api/InsureOfflineBill/GetInsureOfflineBillList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** 线下退保--详情表头 GET /api/InsureOfflineBill/GetOfflineInsureBatchRefundHead */
export async function getOfflineInsureBatchRefundHead(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetOfflineInsureBatchRefundHeadParams,
  options?: API.RequestConfig
) {
  return request<API.BatchRefundInfoOutput>(
    '/api/InsureOfflineBill/GetOfflineInsureBatchRefundHead',
    {
      method: 'GET',
      params: {
        ...params,
      },
      ...(options || {}),
    }
  );
}
 
/** 线下退保--退保列表 POST /api/InsureOfflineBill/GetOfflineInsureBatchRefundList */
export async function getOfflineInsureBatchRefundList(
  body: API.BatchRefundInput,
  options?: API.RequestConfig
) {
  return request<API.BatchRefundOutputPageOutput>(
    '/api/InsureOfflineBill/GetOfflineInsureBatchRefundList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
 
/** 线下退保--退保申请 POST /api/InsureOfflineBill/OfflineInsureBatchRefundApply */
export async function offlineInsureBatchRefundApply(
  body: API.OfflineInsureBatchRefundApplyInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/InsureOfflineBill/OfflineInsureBatchRefundApply', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 线下退保--退保审核 POST /api/InsureOfflineBill/OfflineInsureBatchRefundCheck */
export async function offlineInsureBatchRefundCheck(
  body: API.OfflineInsureBatchRefundCheckInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/InsureOfflineBill/OfflineInsureBatchRefundCheck', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 设置保单状态 POST /api/InsureOfflineBill/SeInsureOfflineBillStatus */
export async function seInsureOfflineBillStatus(
  body: API.SetOfflineBillStatusInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/InsureOfflineBill/SeInsureOfflineBillStatus', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}