Commit 96904e652633f11ce907d7fbc25b19514358ed96

Authored by zhongnanhuang
2 parents 37bc9823 c56d1a59

feat: update 合并

.umirc.ts
... ... @@ -80,6 +80,13 @@ export default defineConfig({
80 80 access: 'canReadLinda',
81 81 },
82 82 {
  83 + name: '区域管理',
  84 + path: '/zoning',
  85 + component: './ZoNing',
  86 + icon: 'BookOutlined',
  87 + access: 'canReadAdminAndSales',
  88 + },
  89 + {
83 90 name: '打印',
84 91 path: '/print',
85 92 component: './OrderPrint',
... ...
src/pages/Instalment/components/comfire/comfire.tsx
... ... @@ -34,7 +34,7 @@ export default ({ currtDid, sureDelete }) => {
34 34 }
35 35 form={form}
36 36 autoFocusFirstInput
37   - width={190}
  37 + width={280}
38 38 modalProps={{
39 39 destroyOnClose: true,
40 40 }}
... ...
src/pages/Instalment/components/payWayDetail/payWayDetail.tsx
... ... @@ -223,7 +223,7 @@ export default ({ payBody, thisId, currtSave }) => {
223 223 <ProFormUploadButton
224 224 name={record.id}
225 225 onChange={(value) => {
226   - // console.log(value);
  226 + console.log(value);
227 227 // console.log(payWayDetailBody);
228 228 let remakeBody = [];
229 229 let remakeBodyItem = {};
... ... @@ -231,8 +231,8 @@ export default ({ payBody, thisId, currtSave }) =&gt; {
231 231 if (item.id === record.id) {
232 232 remakeBodyItem = {
233 233 ...item,
234   - fileUrl: value.file.originFileObj,
235   - fileName: value.file.name,
  234 + fileUrl: value.fileList.originFileObj,
  235 + fileName: value.fileList.name,
236 236 };
237 237 } else {
238 238 remakeBodyItem = { ...item };
... ...
src/pages/Instalment/components/read/readPayWay.tsx
... ... @@ -167,25 +167,19 @@ export default ({ payBody, thisId, currtSave }) =&gt; {
167 167 dataIndex: 'payDate',
168 168 editable: false,
169 169 render: (_text, record) => {
170   - return (
171   - <span>
172   - {new Intl.DateTimeFormat('zh-CN', {
173   - year: 'numeric',
174   - month: 'long',
175   - day: 'numeric',
176   - }).format(record.payDate)}
177   - </span>
178   - // <ProFormDatePicker
179   - // className='dataChoose'
180   - // initialValue={record.payDate}
181   - // value={record.payDate}
182   - // placeholder={"请填写时间"}
183   - // fieldProps={{
184   - // format: (value) => value.format('YYYY-MM-DD'),
185   - // onChange: handleChange,
186   - // }}
187   - // />
188   - );
  170 + if (record.payDate) {
  171 + return (
  172 + <span>
  173 + {new Intl.DateTimeFormat('zh-CN', {
  174 + year: 'numeric',
  175 + month: 'long',
  176 + day: 'numeric',
  177 + }).format(record.payDate)}
  178 + </span>
  179 + );
  180 + } else {
  181 + return <span></span>;
  182 + }
189 183 },
190 184 },
191 185 {
... ...
src/pages/Instalment/components/read/readProduct.tsx
... ... @@ -85,7 +85,7 @@ export default ({ productBody, EditProductBody }) =&gt; {
85 85 {
86 86 title: '设备型号',
87 87 dataIndex: 'deviceModel',
88   - width: '15%',
  88 + width: '20%',
89 89 formItemProps: () => {
90 90 return {
91 91 rules: [{ required: true, message: '此项为必填项' }],
... ...
src/pages/Instalment/components/title/title.tsx
... ... @@ -166,7 +166,10 @@ export default () =&gt; {
166 166 {
167 167 title: '文件编号',
168 168 dataIndex: 'id',
169   - width: '7%',
  169 + width: 100,
  170 + disable: true,
  171 + onFilter: true,
  172 + ellipsis: true,
170 173 render: (_, record) => {
171 174 if (record.id) {
172 175 const text = record.id.toString();
... ... @@ -179,116 +182,108 @@ export default () =&gt; {
179 182 title: '签合同日期',
180 183 dataIndex: 'dateRange',
181 184 valueType: 'date',
182   - filters: true,
  185 + width: 100,
  186 + disable: true,
183 187 onFilter: true,
184 188 ellipsis: true,
185   - width: '8%',
186 189 },
187 190 {
188   - disable: true,
189 191 title: '合同编号',
190 192 dataIndex: 'contract',
191   - filters: true,
  193 + width: 200,
  194 + disable: true,
192 195 onFilter: true,
193 196 ellipsis: true,
194   - width: '9%',
195 197 },
196 198 {
197   - disable: true,
198 199 title: '供应商名称',
199 200 dataIndex: 'vendor',
200   - filters: true,
  201 + width: 200,
  202 + disable: true,
201 203 onFilter: true,
202 204 ellipsis: true,
203 205 },
204 206 {
205   - disable: true,
206 207 title: '终端名称',
207 208 dataIndex: 'terminal',
208   - filters: true,
  209 + width: 200,
  210 + disable: true,
209 211 onFilter: true,
210 212 ellipsis: true,
211   - width: '6%',
212 213 },
213 214 {
214   - disable: true,
215 215 title: '设备名称',
216 216 dataIndex: 'deviceName',
217   - filters: true,
  217 + width: 200,
  218 + disable: true,
218 219 onFilter: true,
219 220 ellipsis: true,
220 221 },
221 222 {
222   - disable: true,
223 223 title: '设备型号',
224 224 dataIndex: 'deviceModel',
225   - filters: true,
226 225 hideInSearch: true,
227   - onFilter: false,
  226 + width: 200,
  227 + disable: true,
  228 + onFilter: true,
228 229 ellipsis: true,
229   - width: '10%',
230 230 },
231 231 {
232   - disable: true,
233 232 title: '数量',
234 233 dataIndex: 'count',
235   - filters: true,
236 234 hideInSearch: true,
237   - onFilter: false,
  235 + width: 100,
  236 + disable: true,
  237 + onFilter: true,
238 238 ellipsis: true,
239   - width: '4%',
240 239 },
241 240 {
242   - disable: true,
243 241 title: '单价',
244 242 dataIndex: 'unitPrice',
245   - filters: true,
246 243 hideInSearch: true,
247   - onFilter: false,
  244 + width: 100,
  245 + disable: true,
  246 + onFilter: true,
248 247 ellipsis: true,
249   - width: '5%',
250 248 },
251 249 {
252   - disable: true,
253 250 title: '总价',
254 251 dataIndex: 'price',
255   - filters: true,
256 252 hideInSearch: true,
257   - onFilter: false,
  253 + width: 100,
  254 + disable: true,
  255 + onFilter: true,
258 256 ellipsis: true,
259   - width: '5%',
260 257 },
261 258 {
262   - disable: true,
263 259 title: '合同总金额',
264 260 dataIndex: 'totalPrice',
265   - filters: true,
266 261 hideInSearch: true,
267   - onFilter: false,
  262 + width: 100,
  263 + disable: true,
  264 + onFilter: true,
268 265 ellipsis: true,
269   - width: '6%',
270 266 },
271 267 {
272   - disable: true,
273 268 title: '付款方式',
274 269 dataIndex: 'payWay',
275   - filters: true,
276 270 hideInSearch: true,
277   - onFilter: false,
  271 + width: 100,
  272 + disable: true,
  273 + onFilter: true,
278 274 ellipsis: true,
279 275 },
280 276 {
281   - disable: true,
282 277 title: '附件',
283 278 dataIndex: 'annex',
284   - filters: true,
285 279 hideInSearch: true,
286   - onFilter: false,
  280 + width: 100,
  281 + disable: true,
  282 + onFilter: true,
287 283 ellipsis: true,
288   - width: '5%',
289 284 render: (_, record) => {
290   - if (record.id) {
291   - return <a href={record.annex}>{record.annex}</a>;
  285 + if (record.id && record.annex !== null) {
  286 + return <a href={record.annex}>附件文件</a>;
292 287 }
293 288 },
294 289 },
... ... @@ -300,13 +295,20 @@ export default () =&gt; {
300 295 hideInSearch: true,
301 296 onFilter: false,
302 297 ellipsis: true,
303   - width: '5%',
  298 + width: 100,
  299 + disable: true,
  300 + onFilter: true,
  301 + ellipsis: true,
304 302 },
305 303 {
306 304 title: '操作',
307 305 valueType: 'option',
308 306 key: 'option',
309   - width: '10%',
  307 + fixed: 'right',
  308 + width: 120,
  309 + disable: true,
  310 + onFilter: true,
  311 + ellipsis: true,
310 312 render: (_text, record) => {
311 313 if (record?.id) {
312 314 return (
... ... @@ -335,8 +337,9 @@ export default () =&gt; {
335 337 className="title-index"
336 338 columnEmptyText=""
337 339 columns={columns}
338   - actionRef={ref}
339 340 cardBordered
  341 + actionRef={ref}
  342 + scroll={{ x: 1400, y: 360 }}
340 343 request={async (params) => {
341 344 // console.log(params);
342 345 if (
... ...
src/pages/Instalment/components/upload/uploadApp.css 0 → 100644
  1 +.modul-a {
  2 + position: absolute;
  3 + bottom: 25px;
  4 +}
... ...
src/pages/Instalment/components/upload/uploadApp.less 0 → 100644
  1 +.modul-a {
  2 + position: absolute;
  3 + bottom: 25px;
  4 +}
... ...
src/pages/Instalment/components/upload/uploadApp.tsx
1 1 import { InboxOutlined } from '@ant-design/icons';
2 2 import { Upload } from 'antd';
3 3 import React from 'react';
  4 +import './uploadApp.less';
4 5  
5 6 const App: React.FC = ({ uploadFile }) => {
6 7 const { Dragger } = Upload;
... ... @@ -15,18 +16,26 @@ const App: React.FC = ({ uploadFile }) =&gt; {
15 16 };
16 17  
17 18 return (
18   - <Dragger {...props}>
19   - <p className="ant-upload-drag-icon">
20   - <InboxOutlined />
21   - </p>
22   - <p className="ant-upload-text">
23   - Click or drag file to this area to upload
24   - </p>
25   - <p className="ant-upload-hint">
26   - Support for a single or bulk upload. Strictly prohibited from uploading
27   - company data or other banned files.
28   - </p>
29   - </Dragger>
  19 + <>
  20 + <Dragger {...props}>
  21 + <p className="ant-upload-drag-icon">
  22 + <InboxOutlined />
  23 + </p>
  24 + <p className="ant-upload-text">
  25 + Click or drag file to this area to upload
  26 + </p>
  27 + <p className="ant-upload-hint">
  28 + Support for a single or bulk upload. Strictly prohibited from
  29 + uploading company data or other banned files.
  30 + </p>
  31 + </Dragger>
  32 + <a
  33 + href="https://order-erp.oss-cn-qingdao.aliyuncs.com/%E5%88%86%E6%9C%9F%E4%BB%98%E6%AC%BE-%E5%AF%BC%E5%85%A5%E6%A8%A1%E6%9D%BF.xlsx?Expires=2035527699&OSSAccessKeyId=LTAIZCPI7OaWud0m&Signature=npHyEhfRd6LugJ0St8OkvRmLYtQ%3D"
  34 + className="modul-a"
  35 + >
  36 + 下载模板
  37 + </a>
  38 + </>
30 39 );
31 40 };
32 41  
... ...
src/pages/Instalment/components/upload/uploadModel.tsx
... ... @@ -27,7 +27,12 @@ export default ({ toReload }) =&gt; {
27 27 }>
28 28 title="新建表单"
29 29 trigger={
30   - <Button type="primary">
  30 + <Button
  31 + type="primary"
  32 + onClick={() => {
  33 + setUploadFile({});
  34 + }}
  35 + >
31 36 <VerticalAlignBottomOutlined />
32 37 导入
33 38 </Button>
... ... @@ -39,6 +44,9 @@ export default ({ toReload }) =&gt; {
39 44 }}
40 45 submitTimeout={2000}
41 46 onFinish={async () => {
  47 + if (!(uploadFile instanceof File)) {
  48 + return false;
  49 + }
42 50 const formData = new FormData();
43 51 formData.append('file', uploadFile as RcFile);
44 52 const res = await postOrderErpOrderStagesImport({
... ...
src/pages/Order/components/ApplyForInvoicingModal.tsx
... ... @@ -4,6 +4,7 @@ import { enumToSelect, getAliYunOSSFileNameFromUrl } from &#39;@/utils&#39;;
4 4 import {
5 5 ModalForm,
6 6 ProFormSelect,
  7 + ProFormText,
7 8 ProFormTextArea,
8 9 ProFormUploadDragger,
9 10 } from '@ant-design/pro-components';
... ... @@ -139,6 +140,14 @@ export default ({
139 140 },
140 141 }}
141 142 />
  143 + <ProFormText
  144 + width="lg"
  145 + name="purchaser"
  146 + label="抬头名称"
  147 + key="purchaser"
  148 + placeholder="请输入抬头名称"
  149 + rules={[{ required: true, message: '抬头名称必填' }]}
  150 + />
142 151 <ProFormSelect
143 152 placeholder="选择收款单位"
144 153 name="receivingCompany"
... ...
src/pages/Order/components/FinancialDrawer.tsx
... ... @@ -34,6 +34,9 @@ export default ({
34 34 setInvoicingStatus(subOrders[0]?.invoicingStatus);
35 35 }
36 36 }, [mainOrder]);
  37 + useEffect(() => {
  38 + console.log(JSON.stringify(subOrders));
  39 + }, []);
37 40  
38 41 const [form] = Form.useForm<{ name: string; company: string }>();
39 42  
... ... @@ -153,6 +156,17 @@ export default ({
153 156 ]}
154 157 initialValue={subOrders[0]?.invoicingTime}
155 158 />,
  159 + <ProFormText
  160 + key="purchaser"
  161 + width="lg"
  162 + name="purchaser"
  163 + label="抬头名称"
  164 + disabled={isEdit}
  165 + rules={[
  166 + { required: !isEdit ? true : false, message: '这是必填项' },
  167 + ]}
  168 + initialValue={subOrders[0]?.purchaser}
  169 + />,
156 170 <ProFormDatePicker
157 171 key="financialReceiptIssuanceTime"
158 172 width="lg"
... ...
src/pages/Order/components/ImportExpressBillModal.tsx 0 → 100644
  1 +import { RESPONSE_CODE } from '@/constants/enum';
  2 +import { postOrderImportImportWeightAndVolume } from '@/services';
  3 +import { ModalForm, ProFormUploadDragger } from '@ant-design/pro-components';
  4 +import { Button, Form, message } from 'antd';
  5 +
  6 +export default () => {
  7 + const [form] = Form.useForm();
  8 + const [messageApi, contextHolder] = message.useMessage();
  9 + return (
  10 + <>
  11 + <ModalForm
  12 + title="导入重量、体积"
  13 + trigger={<Button type="primary">导入重量、体积</Button>}
  14 + form={form}
  15 + autoFocusFirstInput
  16 + modalProps={{
  17 + destroyOnClose: true,
  18 + }}
  19 + submitTimeout={2000}
  20 + onFinish={async (values) => {
  21 + console.log(values);
  22 + const formData = new FormData();
  23 + formData.append('file', values.express[0].originFileObj);
  24 + messageApi.open({
  25 + type: 'loading',
  26 + content: '正在导入...',
  27 + duration: 0,
  28 + });
  29 + const res = await postOrderImportImportWeightAndVolume({
  30 + data: formData,
  31 + headers: {
  32 + 'Content-Type':
  33 + 'multipart/form-data; boundary=----WebKitFormBoundarynl6gT1BKdPWIejNq',
  34 + },
  35 + });
  36 + if (res.result === RESPONSE_CODE.SUCCESS) {
  37 + message.error('导入成功');
  38 + } else {
  39 + message.error('导入失败');
  40 + }
  41 + messageApi.destroy();
  42 + return true;
  43 + }}
  44 + >
  45 + <ProFormUploadDragger max={1} label="上传快递单" name="express" />
  46 + </ModalForm>
  47 + {contextHolder}
  48 + </>
  49 + );
  50 +};
... ...
src/pages/Order/components/ReissueModal.tsx
... ... @@ -65,10 +65,7 @@ export default ({ setVisible, mainOrder, onClose }) =&gt; {
65 65 onFinish={async (values) => {
66 66 setSubmitting(true);
67 67 postServiceInvoiceReissue({
68   - data: {
69   - invoiceId: values.invoiceId,
70   - notes: values.notes,
71   - },
  68 + data: values,
72 69 });
73 70 setVisible(false);
74 71 onClose();
... ... @@ -96,6 +93,14 @@ export default ({ setVisible, mainOrder, onClose }) =&gt; {
96 93 }}
97 94 />
98 95 <ProFormText
  96 + width="lg"
  97 + name="purchaser"
  98 + label="抬头名称"
  99 + key="purchaser"
  100 + placeholder="请输入抬头名称"
  101 + rules={[{ required: true, message: '抬头名称必填' }]}
  102 + />
  103 + <ProFormText
99 104 width="md"
100 105 name="关联订单"
101 106 label="发票关联订单号"
... ...
src/pages/Order/index.tsx
1 1 import ButtonConfirm from '@/components/ButtomConfirm';
2 2 import { RESPONSE_CODE } from '@/constants/enum';
  3 +import ImportExpressBillModal from '@/pages/Order/components/ImportExpressBillModal';
3 4 import InvoicingDrawerForm from '@/pages/Order/components/InvoicingDrawerForm';
4 5 import ReissueModal from '@/pages/Order/components/ReissueModal';
5 6 import {
... ... @@ -3896,6 +3897,8 @@ const OrderPage = () =&gt; {
3896 3897  
3897 3898 toolBtns.push(radioGroup);
3898 3899  
  3900 + toolBtns.push(<ImportExpressBillModal></ImportExpressBillModal>);
  3901 +
3899 3902 //导出按钮配置
3900 3903 const exportItems: MenuProps['items'] = [
3901 3904 {
... ...
src/pages/ZoNing/components/constant.tsx 0 → 100644
  1 +import { List } from 'lodash';
  2 +
  3 +export type zoningItem = {
  4 + id: number; //id
  5 + zoning: string; //区域名称
  6 + orderProvinceVoList: List<provinceItem>; //所包含的省份列表
  7 + orderUserVoList: List<userItem>; //所包含的销售列表
  8 +};
  9 +
  10 +export type zoningShowItem = {
  11 + id: number; //id
  12 + zoning: string; //区域名称
  13 + orderProvinceShowList: string; //所包含的省份列表
  14 + orderUserShowList: string; //所包含的销售列表
  15 +};
  16 +
  17 +export type provinceItem = {
  18 + pId: number;
  19 + province: string;
  20 +};
  21 +
  22 +export type userItem = {
  23 + uId: number;
  24 + userName: string;
  25 +};
... ...
src/pages/ZoNing/components/modal.tsx 0 → 100644
  1 +import { getOrderErpOrderZoNingSelectProvinceAll } from '@/services';
  2 +import { PlusOutlined } from '@ant-design/icons';
  3 +import {
  4 + ModalForm,
  5 + ProForm,
  6 + ProFormSelect,
  7 + ProFormText,
  8 +} from '@ant-design/pro-components';
  9 +import { Button, Form, message } from 'antd';
  10 +import { zoningItem } from './constant';
  11 +
  12 +const waitTime = (time: number = 100) => {
  13 + return new Promise((resolve) => {
  14 + setTimeout(() => {
  15 + resolve(true);
  16 + }, time);
  17 + });
  18 +};
  19 +
  20 +export default () => {
  21 + const [form] = Form.useForm<zoningItem>();
  22 + return (
  23 + <ModalForm<{
  24 + name: string;
  25 + company: string;
  26 + }>
  27 + title="新增区域"
  28 + trigger={
  29 + <Button type="primary">
  30 + <PlusOutlined />
  31 + 新增区域
  32 + </Button>
  33 + }
  34 + form={form}
  35 + autoFocusFirstInput
  36 + modalProps={{
  37 + destroyOnClose: true,
  38 + onCancel: () => console.log('run'),
  39 + }}
  40 + submitTimeout={2000}
  41 + onFinish={async (values) => {
  42 + await waitTime(2000);
  43 + console.log(values.name);
  44 + message.success('提交成功');
  45 + return true;
  46 + }}
  47 + >
  48 + <ProForm.Group>
  49 + <ProFormText
  50 + width="md"
  51 + name="zoning"
  52 + label="区域名称"
  53 + placeholder="请输入"
  54 + />
  55 + </ProForm.Group>
  56 + <ProForm.Group>
  57 + <ProFormSelect
  58 + request={async () => {
  59 + const provinceList =
  60 + await getOrderErpOrderZoNingSelectProvinceAll();
  61 + if (provinceList) {
  62 + return provinceList.data.map((item) => ({
  63 + value: { pId: item.pId, province: item.province },
  64 + label: item.province,
  65 + }));
  66 + }
  67 + return [];
  68 + }}
  69 + width="xs"
  70 + name="orderProvinceVoList"
  71 + label="合同约定生效方式"
  72 + />
  73 + </ProForm.Group>
  74 + <ProForm.Group>
  75 + <ProFormSelect
  76 + width="xs"
  77 + options={[
  78 + {
  79 + value: 'time',
  80 + label: '履行完终止',
  81 + },
  82 + ]}
  83 + name="orderUserVoList"
  84 + label="合同约定失效效方式"
  85 + />
  86 + </ProForm.Group>
  87 + </ModalForm>
  88 + );
  89 +};
... ...
src/pages/ZoNing/components/table.tsx 0 → 100644
  1 +import type { ProColumns } from '@ant-design/pro-components';
  2 +import {
  3 + EditableProTable,
  4 + ProCard,
  5 + ProFormField,
  6 +} from '@ant-design/pro-components';
  7 +import React, { useState } from 'react';
  8 +import { zoningItem, zoningShowItem } from './constant';
  9 +import Modal from './modal';
  10 +
  11 +const waitTime = (time: number = 100) => {
  12 + return new Promise((resolve) => {
  13 + setTimeout(() => {
  14 + resolve(true);
  15 + }, time);
  16 + });
  17 +};
  18 +
  19 +const defaultData: zoningItem[] = [
  20 + {
  21 + id: 1,
  22 + zoning: '华南地区',
  23 + orderProvinceVoList: [
  24 + {
  25 + pId: 1,
  26 + province: '广东省',
  27 + },
  28 + {
  29 + pId: 2,
  30 + province: '四川省',
  31 + },
  32 + {
  33 + pId: 3,
  34 + province: '北京市',
  35 + },
  36 + {
  37 + pId: 4,
  38 + province: '上海市',
  39 + },
  40 + ],
  41 + orderUserVoList: [
  42 + {
  43 + uId: 1,
  44 + userName: '李华',
  45 + },
  46 + ],
  47 + },
  48 +];
  49 +
  50 +const defaultShowData: zoningShowItem[] = defaultData.map((item) => {
  51 + let orderProvinceShowList = '';
  52 + let orderUserShowList = '';
  53 +
  54 + item.orderProvinceVoList.forEach((element, index) => {
  55 + orderProvinceShowList += element.province;
  56 + if (index < item.orderProvinceVoList.length - 1) {
  57 + orderProvinceShowList += '、';
  58 + }
  59 + });
  60 +
  61 + item.orderUserVoList.forEach((event, index) => {
  62 + orderUserShowList += event.userName;
  63 + if (index < item.orderUserVoList.length - 1) {
  64 + orderUserShowList += '、';
  65 + }
  66 + });
  67 +
  68 + return {
  69 + id: item.id,
  70 + zoning: item.zoning,
  71 + orderProvinceShowList,
  72 + orderUserShowList,
  73 + };
  74 +});
  75 +
  76 +export default () => {
  77 + const [editableKeys, setEditableRowKeys] = useState<React.Key[]>([]);
  78 + const [dataSource, setDataSource] = useState<readonly zoningItem[]>([]);
  79 + const [position] = useState<'top' | 'bottom' | 'hidden'>('hidden');
  80 +
  81 + const columns: ProColumns<zoningItem>[] = [
  82 + {
  83 + title: '区域名称',
  84 + dataIndex: 'zoning',
  85 + width: 200,
  86 + },
  87 + {
  88 + title: '管辖省份',
  89 + dataIndex: 'orderProvinceShowList',
  90 + readonly: true,
  91 + width: 600,
  92 + },
  93 + {
  94 + title: '负责销售',
  95 + key: 'state',
  96 + dataIndex: 'orderUserShowList',
  97 + valueType: 'select',
  98 + width: 200,
  99 + },
  100 + {
  101 + title: '操作',
  102 + valueType: 'option',
  103 + width: 200,
  104 + render: (text, record, _, action) => [
  105 + <a
  106 + key="editable"
  107 + onClick={() => {
  108 + action?.startEditable?.(record.id);
  109 + }}
  110 + >
  111 + 编辑
  112 + </a>,
  113 + <a
  114 + key="delete"
  115 + onClick={() => {
  116 + setDataSource(dataSource.filter((item) => item.id !== record.id));
  117 + }}
  118 + >
  119 + 删除
  120 + </a>,
  121 + ],
  122 + },
  123 + ];
  124 +
  125 + return (
  126 + <>
  127 + <EditableProTable<zoningItem>
  128 + rowKey="id"
  129 + headerTitle={<Modal></Modal>}
  130 + maxLength={5}
  131 + scroll={{
  132 + x: 960,
  133 + }}
  134 + recordCreatorProps={
  135 + position !== 'hidden'
  136 + ? {
  137 + position: position as 'top',
  138 + record: () => ({ id: (Math.random() * 1000000).toFixed(0) }),
  139 + }
  140 + : false
  141 + }
  142 + loading={false}
  143 + columns={columns}
  144 + request={async () => ({
  145 + data: defaultShowData,
  146 + })}
  147 + value={dataSource}
  148 + onChange={setDataSource}
  149 + editable={{
  150 + type: 'multiple',
  151 + editableKeys,
  152 + onSave: async (rowKey, data, row) => {
  153 + console.log(rowKey, data, row);
  154 + await waitTime(2000);
  155 + },
  156 + onChange: setEditableRowKeys,
  157 + }}
  158 + />
  159 + <ProCard title="表格数据" headerBordered collapsible defaultCollapsed>
  160 + <ProFormField
  161 + ignoreFormItem
  162 + fieldProps={{
  163 + style: {
  164 + width: '100%',
  165 + },
  166 + }}
  167 + mode="read"
  168 + valueType="jsonCode"
  169 + text={JSON.stringify(dataSource)}
  170 + />
  171 + </ProCard>
  172 + </>
  173 + );
  174 +};
... ...
src/pages/ZoNing/index.tsx 0 → 100644
  1 +import Table from './components/table';
  2 +const instalment_contect: React.FC = () => (
  3 + <>
  4 + <Table></Table>
  5 + </>
  6 +);
  7 +
  8 +export default instalment_contect;
... ...
src/services/definition.ts
... ... @@ -86,8 +86,6 @@ export interface AdminAuthUserVO {
86 86 export interface AdminDeptQueryVO {
87 87 /** @format int32 */
88 88 current?: number;
89   - /** @format int32 */
90   - end?: number;
91 89 /** @format int64 */
92 90 id?: number;
93 91 ids?: Array<number>;
... ... @@ -97,8 +95,6 @@ export interface AdminDeptQueryVO {
97 95 /** @format int64 */
98 96 pid?: number;
99 97 /** @format int32 */
100   - start?: number;
101   - /** @format int32 */
102 98 total?: number;
103 99 }
104 100  
... ... @@ -113,8 +109,6 @@ export interface AdminDeptVO {
113 109 export interface AdminJobQueryVO {
114 110 /** @format int32 */
115 111 current?: number;
116   - /** @format int32 */
117   - end?: number;
118 112 /** @format int64 */
119 113 id?: number;
120 114 ids?: Array<number>;
... ... @@ -124,8 +118,6 @@ export interface AdminJobQueryVO {
124 118 /** @format int32 */
125 119 sort?: number;
126 120 /** @format int32 */
127   - start?: number;
128   - /** @format int32 */
129 121 total?: number;
130 122 }
131 123  
... ... @@ -144,8 +136,6 @@ export interface AdminMenuQueryVO {
144 136 /** @format int32 */
145 137 current?: number;
146 138 /** @format int32 */
147   - end?: number;
148   - /** @format int32 */
149 139 hidden?: number;
150 140 icon?: string;
151 141 /** @format int64 */
... ... @@ -161,8 +151,6 @@ export interface AdminMenuQueryVO {
161 151 /** @format int64 */
162 152 pid?: number;
163 153 /** @format int32 */
164   - start?: number;
165   - /** @format int32 */
166 154 total?: number;
167 155 /** @format int32 */
168 156 type?: number;
... ... @@ -193,8 +181,6 @@ export interface AdminRoleQueryVO {
193 181 /** @format int32 */
194 182 current?: number;
195 183 dataScope?: string;
196   - /** @format int32 */
197   - end?: number;
198 184 /** @format int64 */
199 185 id?: number;
200 186 ids?: Array<number>;
... ... @@ -206,8 +192,6 @@ export interface AdminRoleQueryVO {
206 192 permission?: string;
207 193 remark?: string;
208 194 /** @format int32 */
209   - start?: number;
210   - /** @format int32 */
211 195 total?: number;
212 196 }
213 197  
... ... @@ -225,30 +209,22 @@ export interface AdminUserLoginByPhoneVO {
225 209 /** @format int32 */
226 210 current?: number;
227 211 /** @format int32 */
228   - end?: number;
229   - /** @format int32 */
230 212 pageSize?: number;
231 213 phone?: string;
232 214 smsCaptchaCode?: string;
233 215 /** @format int32 */
234   - start?: number;
235   - /** @format int32 */
236 216 total?: number;
237 217 }
238 218  
239 219 export interface AdminUserLoginByPwdVO {
240 220 /** @format int32 */
241 221 current?: number;
242   - /** @format int32 */
243   - end?: number;
244 222 imgCaptchaCode?: string;
245 223 imgCaptchaUuid?: string;
246 224 /** @format int32 */
247 225 pageSize?: number;
248 226 password?: string;
249 227 /** @format int32 */
250   - start?: number;
251   - /** @format int32 */
252 228 total?: number;
253 229 userName?: string;
254 230 }
... ... @@ -258,15 +234,11 @@ export interface AdminUserModifyPwdVO {
258 234 /** @format int32 */
259 235 current?: number;
260 236 /** @format int32 */
261   - end?: number;
262   - /** @format int32 */
263 237 pageSize?: number;
264 238 password?: string;
265 239 phone?: string;
266 240 smsCaptchaCode?: string;
267 241 /** @format int32 */
268   - start?: number;
269   - /** @format int32 */
270 242 total?: number;
271 243 }
272 244  
... ... @@ -274,12 +246,8 @@ export interface AdminUserPasswordRecoverEmailVO {
274 246 /** @format int32 */
275 247 current?: number;
276 248 /** @format int32 */
277   - end?: number;
278   - /** @format int32 */
279 249 pageSize?: number;
280 250 /** @format int32 */
281   - start?: number;
282   - /** @format int32 */
283 251 total?: number;
284 252 userName?: string;
285 253 }
... ... @@ -288,8 +256,6 @@ export interface AdminUserQueryVO {
288 256 /** @format int32 */
289 257 current?: number;
290 258 email?: string;
291   - /** @format int32 */
292   - end?: number;
293 259 /** @format int64 */
294 260 id?: number;
295 261 ids?: Array<number>;
... ... @@ -300,8 +266,6 @@ export interface AdminUserQueryVO {
300 266 phone?: string;
301 267 sex?: string;
302 268 /** @format int32 */
303   - start?: number;
304   - /** @format int32 */
305 269 total?: number;
306 270 userName?: string;
307 271 workerType?: string;
... ... @@ -312,8 +276,6 @@ export interface AdminUserRegisterVO {
312 276 /** @format int32 */
313 277 current?: number;
314 278 email?: string;
315   - /** @format int32 */
316   - end?: number;
317 279 isAgreeAgreement?: boolean;
318 280 /** @format int32 */
319 281 pageSize?: number;
... ... @@ -323,8 +285,6 @@ export interface AdminUserRegisterVO {
323 285 safeQuestion?: string;
324 286 smsCaptchaCode?: string;
325 287 /** @format int32 */
326   - start?: number;
327   - /** @format int32 */
328 288 total?: number;
329 289 userName?: string;
330 290 }
... ... @@ -520,12 +480,8 @@ export interface ApiOrderCustomersRequest {
520 480 /** @format int32 */
521 481 current?: number;
522 482 /** @format int32 */
523   - end?: number;
524   - /** @format int32 */
525 483 pageSize?: number;
526 484 /** @format int32 */
527   - start?: number;
528   - /** @format int32 */
529 485 total?: number;
530 486 }
531 487  
... ... @@ -572,6 +528,221 @@ export interface ApiQueryOrderStatusCountsRequest {
572 528 uid?: number;
573 529 }
574 530  
  531 +export interface ApplyInvoiceDto {
  532 + /**
  533 + * @description
  534 + * 备注
  535 + */
  536 + applyInvoicingNotes?: string;
  537 + /**
  538 + * @description
  539 + * 开票备注
  540 + */
  541 + comment?: string;
  542 + /**
  543 + * @description
  544 + * 联系人
  545 + */
  546 + contacts?: string;
  547 + /**
  548 + * @description
  549 + * 开票内容
  550 + */
  551 + content?: string;
  552 + createByName?: string;
  553 + /** @format date-time */
  554 + createTime?: string;
  555 + failureReason?: string;
  556 + /**
  557 + * @description
  558 + * id
  559 + * @format int64
  560 + */
  561 + id?: number;
  562 + /**
  563 + * @description
  564 + * 发票地址
  565 + */
  566 + invoiceAddress?: string;
  567 + /**
  568 + * @description
  569 + * 发票明细
  570 + */
  571 + invoiceDetails?: Array<InvoiceDetail>;
  572 + /**
  573 + * @description
  574 + * 关联发票id
  575 + */
  576 + invoiceId?: string;
  577 + /**
  578 + * @description
  579 + * 发票号码
  580 + */
  581 + invoiceNumber?: string;
  582 + /**
  583 + * @description
  584 + * 开票人
  585 + */
  586 + invoicingPerson?: string;
  587 + /**
  588 + * @description
  589 + * 开票时间
  590 + * @format date-time
  591 + */
  592 + invoicingTime?: string;
  593 + /**
  594 + * @description
  595 + * 开具类型
  596 + */
  597 + invoicingType?: string;
  598 + /**
  599 + * @description
  600 + * 开具类型
  601 + */
  602 + invoicingTypeText?: string;
  603 + /** @format date */
  604 + invoicingdate?: string;
  605 + /**
  606 + * @description
  607 + * 是否加急
  608 + */
  609 + isUrgent?: boolean;
  610 + /**
  611 + * @description
  612 + * 是否加急文本
  613 + */
  614 + isUrgentText?: string;
  615 + logicDelete?: boolean;
  616 + /**
  617 + * @description
  618 + * 买方注册地址
  619 + */
  620 + partyAAddress?: string;
  621 + /**
  622 + * @description
  623 + * 买方开户行账号
  624 + */
  625 + partyABankAccount?: string;
  626 + /**
  627 + * @description
  628 + * 买方名称
  629 + */
  630 + partyAName?: string;
  631 + /**
  632 + * @description
  633 + * 买方开户行
  634 + */
  635 + partyAOpenBank?: string;
  636 + /**
  637 + * @description
  638 + * 买方电话号码
  639 + */
  640 + partyAPhoneNumber?: string;
  641 + /**
  642 + * @description
  643 + * 买方税号
  644 + */
  645 + partyATaxid?: string;
  646 + /**
  647 + * @description
  648 + * 抬头类型
  649 + */
  650 + partyAType?: string;
  651 + partyB?: string;
  652 + /**
  653 + * @description
  654 + * 卖方注册地址
  655 + */
  656 + partyBAddress?: string;
  657 + /**
  658 + * @description
  659 + * 卖方开户行账号
  660 + */
  661 + partyBBankAccount?: string;
  662 + /**
  663 + * @description
  664 + * 卖方名称
  665 + */
  666 + partyBName?: string;
  667 + /**
  668 + * @description
  669 + * 卖方开户行
  670 + */
  671 + partyBOpenBank?: string;
  672 + /**
  673 + * @description
  674 + * 卖方电话号码
  675 + */
  676 + partyBPhoneNumber?: string;
  677 + /**
  678 + * @description
  679 + * 卖方税号
  680 + */
  681 + partyBTaxid?: string;
  682 + /**
  683 + * @description
  684 + * 发票金额
  685 + * @format double
  686 + */
  687 + price?: number;
  688 + /**
  689 + * @description
  690 + * 接收邮箱地址
  691 + */
  692 + receiveEmail?: string;
  693 + /**
  694 + * @description
  695 + * 订单来源
  696 + */
  697 + salesCodes?: Array<string>;
  698 + /**
  699 + * @description
  700 + * 订单来源
  701 + */
  702 + salesCodesText?: string;
  703 + /**
  704 + * @description
  705 + * 开票状态
  706 + */
  707 + status?: string;
  708 + /**
  709 + * @description
  710 + * 开票状态
  711 + */
  712 + statusText?: string;
  713 + /**
  714 + * @description
  715 + * 子订单id
  716 + */
  717 + subOrderIds?: Array<number>;
  718 + /**
  719 + * @description
  720 + * 关联订单
  721 + */
  722 + subOrders?: Array<SubOrder>;
  723 + /** @format double */
  724 + totalPrice?: number;
  725 + totalPriceText?: string;
  726 + /**
  727 + * @description
  728 + * 开票类型
  729 + */
  730 + type?: string;
  731 + /**
  732 + * @description
  733 + * 开票类型文本
  734 + */
  735 + typeText?: string;
  736 + /**
  737 + * @description
  738 + * 用户id
  739 + */
  740 + uid?: string;
  741 + updateByName?: string;
  742 + /** @format date-time */
  743 + updateTime?: string;
  744 +}
  745 +
575 746 export interface AuditDto {
576 747 /**
577 748 * @description
... ... @@ -596,15 +767,11 @@ export interface AuditDto {
596 767 export interface AuditVO {
597 768 /** @format int32 */
598 769 current?: number;
599   - /** @format int32 */
600   - end?: number;
601 770 /** @format int64 */
602 771 id?: number;
603 772 /** @format int32 */
604 773 pageSize?: number;
605 774 /** @format int32 */
606   - start?: number;
607   - /** @format int32 */
608 775 status?: number;
609 776 /** @format int32 */
610 777 total?: number;
... ... @@ -674,32 +841,16 @@ export interface CancelSendOrderDto {
674 841 export interface CaptchaMessageVO {
675 842 /** @format int32 */
676 843 current?: number;
677   - /** @format int32 */
678   - end?: number;
679 844 imgCaptchaCode?: string;
680 845 imgCaptchaUuid?: string;
681 846 /** @format int32 */
682 847 pageSize?: number;
683 848 phone?: string;
684 849 /** @format int32 */
685   - start?: number;
686   - /** @format int32 */
687 850 total?: number;
688 851 type?: string;
689 852 }
690 853  
691   -export interface CommonAuditRequest {
692   - extend?: any;
693   - /**
694   - * @description
695   - * id集合
696   - */
697   - ids?: Array<string>;
698   - notes?: string;
699   - pass?: boolean;
700   - type?: string;
701   -}
702   -
703 854 export interface Contactperson {
704 855 birthday?: string;
705 856 contactAddress?: string;
... ... @@ -887,8 +1038,6 @@ export interface DictionaryQueryVO {
887 1038 dictCode?: string;
888 1039 dictName?: string;
889 1040 dictValue?: string;
890   - /** @format int32 */
891   - end?: number;
892 1041 /** @format int64 */
893 1042 id?: number;
894 1043 ids?: Array<number>;
... ... @@ -898,8 +1047,6 @@ export interface DictionaryQueryVO {
898 1047 /** @format int32 */
899 1048 sort?: number;
900 1049 /** @format int32 */
901   - start?: number;
902   - /** @format int32 */
903 1050 total?: number;
904 1051 }
905 1052  
... ... @@ -1030,28 +1177,401 @@ export interface InvoiceDto {
1030 1177 status?: string;
1031 1178 }
1032 1179  
1033   -export interface InvoiceRecordQueryRequest {
1034   - /** @format date */
1035   - createTimeGe?: string;
1036   - /** @format date */
1037   - createTimeLe?: string;
1038   - /** @format int32 */
1039   - pageNumber?: number;
1040   - /** @format int32 */
1041   - pageSize?: number;
  1180 +export interface InvoiceRecordDto {
  1181 + applyInvoicingNotes?: string;
1042 1182 /**
1043 1183 * @description
1044   - * 用户id
  1184 + * 开票备注
1045 1185 */
1046   - uid?: string;
1047   -}
1048   -
1049   -export interface Item {
1050   - billDate?: string;
1051   - billNo?: string;
1052   - entryList?: Array<Entry>;
1053   - id?: string;
1054   - remark?: string;
  1186 + comment?: string;
  1187 + /**
  1188 + * @description
  1189 + * 联系人
  1190 + */
  1191 + contacts?: string;
  1192 + /**
  1193 + * @description
  1194 + * 开票内容
  1195 + */
  1196 + content?: string;
  1197 + createByName?: string;
  1198 + /** @format date-time */
  1199 + createTime?: string;
  1200 + failureReason?: string;
  1201 + /**
  1202 + * @description
  1203 + * id
  1204 + * @format int64
  1205 + */
  1206 + id?: number;
  1207 + /**
  1208 + * @description
  1209 + * 发票地址
  1210 + */
  1211 + invoiceAddress?: string;
  1212 + /**
  1213 + * @description
  1214 + * 发票明细
  1215 + */
  1216 + invoiceDetails?: Array<InvoiceDetail>;
  1217 + /**
  1218 + * @description
  1219 + * 关联发票id
  1220 + */
  1221 + invoiceId?: string;
  1222 + /**
  1223 + * @description
  1224 + * 发票号码
  1225 + */
  1226 + invoiceNumber?: string;
  1227 + /**
  1228 + * @description
  1229 + * 开票人
  1230 + */
  1231 + invoicingPerson?: string;
  1232 + /**
  1233 + * @description
  1234 + * 开票时间
  1235 + * @format date-time
  1236 + */
  1237 + invoicingTime?: string;
  1238 + /**
  1239 + * @description
  1240 + * 开具类型
  1241 + */
  1242 + invoicingType?: string;
  1243 + /**
  1244 + * @description
  1245 + * 开具类型
  1246 + */
  1247 + invoicingTypeText?: string;
  1248 + /** @format date */
  1249 + invoicingdate?: string;
  1250 + /**
  1251 + * @description
  1252 + * 是否加急
  1253 + */
  1254 + isUrgent?: boolean;
  1255 + /**
  1256 + * @description
  1257 + * 是否加急文本
  1258 + */
  1259 + isUrgentText?: string;
  1260 + logicDelete?: boolean;
  1261 + /**
  1262 + * @description
  1263 + * 买方注册地址
  1264 + */
  1265 + partyAAddress?: string;
  1266 + /**
  1267 + * @description
  1268 + * 买方开户行账号
  1269 + */
  1270 + partyABankAccount?: string;
  1271 + /**
  1272 + * @description
  1273 + * 买方名称
  1274 + */
  1275 + partyAName?: string;
  1276 + /**
  1277 + * @description
  1278 + * 买方开户行
  1279 + */
  1280 + partyAOpenBank?: string;
  1281 + /**
  1282 + * @description
  1283 + * 买方电话号码
  1284 + */
  1285 + partyAPhoneNumber?: string;
  1286 + /**
  1287 + * @description
  1288 + * 买方税号
  1289 + */
  1290 + partyATaxid?: string;
  1291 + /**
  1292 + * @description
  1293 + * 抬头类型
  1294 + */
  1295 + partyAType?: string;
  1296 + partyB?: string;
  1297 + /**
  1298 + * @description
  1299 + * 卖方注册地址
  1300 + */
  1301 + partyBAddress?: string;
  1302 + /**
  1303 + * @description
  1304 + * 卖方开户行账号
  1305 + */
  1306 + partyBBankAccount?: string;
  1307 + /**
  1308 + * @description
  1309 + * 卖方名称
  1310 + */
  1311 + partyBName?: string;
  1312 + /**
  1313 + * @description
  1314 + * 卖方开户行
  1315 + */
  1316 + partyBOpenBank?: string;
  1317 + /**
  1318 + * @description
  1319 + * 卖方电话号码
  1320 + */
  1321 + partyBPhoneNumber?: string;
  1322 + /**
  1323 + * @description
  1324 + * 卖方税号
  1325 + */
  1326 + partyBTaxid?: string;
  1327 + /**
  1328 + * @description
  1329 + * 发票金额
  1330 + * @format double
  1331 + */
  1332 + price?: number;
  1333 + /**
  1334 + * @description
  1335 + * 接收邮箱地址
  1336 + */
  1337 + receiveEmail?: string;
  1338 + /**
  1339 + * @description
  1340 + * 订单来源
  1341 + */
  1342 + salesCodes?: Array<string>;
  1343 + /**
  1344 + * @description
  1345 + * 订单来源
  1346 + */
  1347 + salesCodesText?: string;
  1348 + /**
  1349 + * @description
  1350 + * 开票状态
  1351 + */
  1352 + status?: string;
  1353 + /**
  1354 + * @description
  1355 + * 开票状态
  1356 + */
  1357 + statusText?: string;
  1358 + /**
  1359 + * @description
  1360 + * 子订单id
  1361 + */
  1362 + subOrderIds?: Array<number>;
  1363 + /**
  1364 + * @description
  1365 + * 关联订单
  1366 + */
  1367 + subOrders?: Array<SubOrder>;
  1368 + /** @format double */
  1369 + totalPrice?: number;
  1370 + totalPriceText?: string;
  1371 + /**
  1372 + * @description
  1373 + * 开票类型
  1374 + */
  1375 + type?: string;
  1376 + /**
  1377 + * @description
  1378 + * 开票类型文本
  1379 + */
  1380 + typeText?: string;
  1381 + /**
  1382 + * @description
  1383 + * 用户id
  1384 + */
  1385 + uid?: string;
  1386 + updateByName?: string;
  1387 + /** @format date-time */
  1388 + updateTime?: string;
  1389 +}
  1390 +
  1391 +export interface InvoiceRecordQueryRequest {
  1392 + /**
  1393 + * @description
  1394 + * 联系人
  1395 + */
  1396 + contactsLike?: string;
  1397 + /** @format date-time */
  1398 + createTimeGe?: string;
  1399 + /** @format date-time */
  1400 + createTimeLe?: string;
  1401 + /** @format int32 */
  1402 + current?: number;
  1403 + /** @format int32 */
  1404 + end?: number;
  1405 + /**
  1406 + * @description
  1407 + * id
  1408 + * @format int64
  1409 + */
  1410 + id?: number;
  1411 + /**
  1412 + * @description
  1413 + * IdIn
  1414 + */
  1415 + idIn?: Array<number>;
  1416 + /**
  1417 + * @description
  1418 + * 关联发票id
  1419 + */
  1420 + invoiceId?: string;
  1421 + /**
  1422 + * @description
  1423 + * 发票号码
  1424 + */
  1425 + invoiceNumber?: string;
  1426 + /**
  1427 + * @description
  1428 + * 发票号码
  1429 + */
  1430 + invoiceNumberLike?: string;
  1431 + /**
  1432 + * @description
  1433 + * 开票时间
  1434 + * @format date-time
  1435 + */
  1436 + invoicingTimeGe?: string;
  1437 + /**
  1438 + * @description
  1439 + * 开票时间
  1440 + * @format date-time
  1441 + */
  1442 + invoicingTimeLe?: string;
  1443 + /**
  1444 + * @description
  1445 + * 开票类型
  1446 + */
  1447 + invoicingType?: string;
  1448 + /**
  1449 + * @description
  1450 + * 是否加急
  1451 + */
  1452 + isUrgent?: boolean;
  1453 + /**
  1454 + * @description
  1455 + * 订单号
  1456 + * @format int64
  1457 + */
  1458 + mainOrderId?: number;
  1459 + /**
  1460 + * @description
  1461 + * 主订单idIn
  1462 + */
  1463 + mainOrderIdIn?: Array<number>;
  1464 + /**
  1465 + * @description
  1466 + * 订单号
  1467 + */
  1468 + mainOrderIdLike?: string;
  1469 + /**
  1470 + * @description
  1471 + * 是否需要构建发票明细
  1472 + */
  1473 + needBuildDetails?: boolean;
  1474 + /**
  1475 + * @description
  1476 + * 是否需要构建发票明细
  1477 + */
  1478 + needBuildSubOrders?: boolean;
  1479 + /** @format int32 */
  1480 + pageSize?: number;
  1481 + /**
  1482 + * @description
  1483 + * 买方名称
  1484 + */
  1485 + partyANameLike?: string;
  1486 + /**
  1487 + * @description
  1488 + * 买方电话号码
  1489 + */
  1490 + partyAPhoneNumberLike?: string;
  1491 + /**
  1492 + * @description
  1493 + * 买方税号
  1494 + */
  1495 + partyATaxid?: string;
  1496 + /**
  1497 + * @description
  1498 + * 买方税号
  1499 + */
  1500 + partyATaxidLike?: string;
  1501 + partyB?: string;
  1502 + /**
  1503 + * @description
  1504 + * 卖方名称
  1505 + */
  1506 + partyBName?: string;
  1507 + /**
  1508 + * @description
  1509 + * 销售代表
  1510 + */
  1511 + salesCode?: string;
  1512 + /**
  1513 + * @description
  1514 + * 销售代表
  1515 + */
  1516 + salesCodeLike?: string;
  1517 + /** @format int32 */
  1518 + start?: number;
  1519 + /**
  1520 + * @description
  1521 + * 发票状态
  1522 + */
  1523 + status?: string;
  1524 + /**
  1525 + * @description
  1526 + * 状态非空
  1527 + */
  1528 + statusIn?: Array<string>;
  1529 + /**
  1530 + * @description
  1531 + * 状态非空
  1532 + */
  1533 + statusIsNotNull?: boolean;
  1534 + /**
  1535 + * @description
  1536 + * 状态为空
  1537 + */
  1538 + statusIsNull?: boolean;
  1539 + /**
  1540 + * @description
  1541 + * 子订单
  1542 + * @format int64
  1543 + */
  1544 + subOrderId?: number;
  1545 + /**
  1546 + * @description
  1547 + * 子订单idIn
  1548 + */
  1549 + subOrderIdIn?: Array<number>;
  1550 + /**
  1551 + * @description
  1552 + * 子订单
  1553 + */
  1554 + subOrderIdLike?: string;
  1555 + /** @format int32 */
  1556 + total?: number;
  1557 + /**
  1558 + * @description
  1559 + * 开票类型
  1560 + */
  1561 + type?: string;
  1562 + /**
  1563 + * @description
  1564 + * 用户id
  1565 + */
  1566 + uid?: string;
  1567 +}
  1568 +
  1569 +export interface Item {
  1570 + billDate?: string;
  1571 + billNo?: string;
  1572 + entryList?: Array<Entry>;
  1573 + id?: string;
  1574 + remark?: string;
1055 1575 }
1056 1576  
1057 1577 export interface ItemSaItem {
... ... @@ -1061,6 +1581,14 @@ export interface ItemSaItem {
1061 1581  
1062 1582 export interface MainOrderqueryRequest {
1063 1583 afterInvoicingStatusIsNull?: boolean;
  1584 + /** @format date */
  1585 + createDateGe?: string;
  1586 + /** @format date */
  1587 + createDateLe?: string;
  1588 + /** @format date-time */
  1589 + createTimeGe?: string;
  1590 + /** @format date-time */
  1591 + createTimeLe?: string;
1064 1592 orderStatusNotIn?: Array<string>;
1065 1593 /** @format int32 */
1066 1594 pageNumber?: number;
... ... @@ -1202,14 +1730,10 @@ export interface MeasureUnitListResRow {
1202 1730 export interface MessageQueryDTO {
1203 1731 /** @format int32 */
1204 1732 current?: number;
1205   - /** @format int32 */
1206   - end?: number;
1207 1733 isReaded?: string;
1208 1734 /** @format int32 */
1209 1735 pageSize?: number;
1210 1736 /** @format int32 */
1211   - start?: number;
1212   - /** @format int32 */
1213 1737 total?: number;
1214 1738 username?: string;
1215 1739 }
... ... @@ -1245,8 +1769,6 @@ export interface OrderAuditLogQueryVO {
1245 1769 applyId?: number;
1246 1770 /** @format int32 */
1247 1771 current?: number;
1248   - /** @format int32 */
1249   - end?: number;
1250 1772 /** @format int64 */
1251 1773 id?: number;
1252 1774 ids?: Array<number>;
... ... @@ -1256,8 +1778,6 @@ export interface OrderAuditLogQueryVO {
1256 1778 /** @format int32 */
1257 1779 pageSize?: number;
1258 1780 /** @format int32 */
1259   - start?: number;
1260   - /** @format int32 */
1261 1781 total?: number;
1262 1782 }
1263 1783  
... ... @@ -1292,8 +1812,6 @@ export interface OrderBaseInfoQueryVO {
1292 1812 customerCode?: string;
1293 1813 customerPo?: string;
1294 1814 customerStyle?: string;
1295   - /** @format int32 */
1296   - end?: number;
1297 1815 /** @format int64 */
1298 1816 id?: number;
1299 1817 ids?: Array<number>;
... ... @@ -1315,8 +1833,6 @@ export interface OrderBaseInfoQueryVO {
1315 1833 productionDepartmentConsignTime?: string;
1316 1834 projectNo?: string;
1317 1835 /** @format int32 */
1318   - start?: number;
1319   - /** @format int32 */
1320 1836 total?: number;
1321 1837 }
1322 1838  
... ... @@ -1377,8 +1893,6 @@ export interface OrderFieldLockApplyQueryVO {
1377 1893 auditUserId?: number;
1378 1894 /** @format int32 */
1379 1895 current?: number;
1380   - /** @format int32 */
1381   - end?: number;
1382 1896 fields?: string;
1383 1897 /** @format int64 */
1384 1898 id?: number;
... ... @@ -1388,8 +1902,6 @@ export interface OrderFieldLockApplyQueryVO {
1388 1902 /** @format int32 */
1389 1903 pageSize?: number;
1390 1904 /** @format int32 */
1391   - start?: number;
1392   - /** @format int32 */
1393 1905 status?: number;
1394 1906 statusList?: Array<number>;
1395 1907 /** @format int32 */
... ... @@ -1438,8 +1950,6 @@ export interface OrderInspectionStageVO {
1438 1950 export interface OrderOptLogQueryVO {
1439 1951 /** @format int32 */
1440 1952 current?: number;
1441   - /** @format int32 */
1442   - end?: number;
1443 1953 /** @format int64 */
1444 1954 id?: number;
1445 1955 ids?: Array<number>;
... ... @@ -1448,8 +1958,6 @@ export interface OrderOptLogQueryVO {
1448 1958 /** @format int32 */
1449 1959 pageSize?: number;
1450 1960 /** @format int32 */
1451   - start?: number;
1452   - /** @format int32 */
1453 1961 total?: number;
1454 1962 }
1455 1963  
... ... @@ -1499,6 +2007,12 @@ export interface OrderProfitAnalysisVo {
1499 2007 orderIds?: Array<number>;
1500 2008 }
1501 2009  
  2010 +export interface OrderProvinceVo {
  2011 + /** @format int32 */
  2012 + pid?: number;
  2013 + province?: string;
  2014 +}
  2015 +
1502 2016 export interface OrderStageFileDo {
1503 2017 file?: File;
1504 2018 }
... ... @@ -1645,6 +2159,20 @@ export interface OrderUpdateVO {
1645 2159 trackStageInfo?: OrderTrackStageVO;
1646 2160 }
1647 2161  
  2162 +export interface OrderUserVo {
  2163 + /** @format int32 */
  2164 + uid?: number;
  2165 + userName?: string;
  2166 +}
  2167 +
  2168 +export interface OrderZoNingProvinceUserDo {
  2169 + /** @format int32 */
  2170 + id?: number;
  2171 + orderProvinceVoList?: Array<OrderProvinceVo>;
  2172 + orderUserVoList?: Array<OrderUserVo>;
  2173 + zoning?: string;
  2174 +}
  2175 +
1648 2176 export interface ProcureConvertProcureDto {
1649 2177 /**
1650 2178 * @description
... ... @@ -1735,8 +2263,6 @@ export interface QueryBankStatementDto {
1735 2263 collectionDatetimeEnd?: string;
1736 2264 /** @format int32 */
1737 2265 current?: number;
1738   - /** @format int32 */
1739   - end?: number;
1740 2266 /** @format int64 */
1741 2267 id?: number;
1742 2268 /** @format int32 */
... ... @@ -1758,8 +2284,6 @@ export interface QueryBankStatementDto {
1758 2284 remark?: string;
1759 2285 remarkNote?: string;
1760 2286 serialNumber?: string;
1761   - /** @format int32 */
1762   - start?: number;
1763 2287 status?: string;
1764 2288 /** @format int32 */
1765 2289 total?: number;
... ... @@ -1805,367 +2329,240 @@ export interface QueryInvoiceDetailDto {
1805 2329 invoiceId?: number;
1806 2330 }
1807 2331  
1808   -export interface QueryMainOrderDto {
1809   - /**
1810   - * @description
1811   - * 收货人姓名
1812   - */
1813   - customerName?: string;
1814   -}
1815   -
1816   -export interface QueryReportFormsDto {
1817   - /**
1818   - * @description
1819   - * 是否包含实验设备事业部
1820   - */
1821   - includeExperimentalEquipment?: boolean;
1822   - /**
1823   - * @description
1824   - * 最大金额
1825   - * @example
1826   - * 2343
1827   - */
1828   - maxAccount?: number;
1829   - /**
1830   - * @description
1831   - * 所属部门
1832   - */
1833   - productBelongBusiness?: string;
1834   - /**
1835   - * @description
1836   - * 销售代表
1837   - */
1838   - salesCode?: string;
1839   - /**
1840   - * @description
1841   - * 统计方式
1842   - */
1843   - statisticsMethod?: string;
1844   -}
1845   -
1846   -export interface ReissueInvoiceDto {
1847   - /** @format int64 */
1848   - invoiceId?: number;
1849   - notes?: string;
1850   -}
1851   -
1852   -export interface ResearchGroupAccountAddRequest {
1853   - /**
1854   - * @description
1855   - * 关联的账号id
1856   - * @format int64
1857   - */
1858   - accountId?: number;
1859   - /**
1860   - * @description
1861   - * 关联的账号名称
1862   - */
1863   - accountName?: string;
1864   - /**
1865   - * @description
1866   - * 关联的账号手机号
1867   - */
1868   - accountPhone?: string;
1869   - /**
1870   - * @description
1871   - * 课题组id
1872   - * @format int64
1873   - */
1874   - groupId?: number;
1875   -}
1876   -
1877   -export interface ResearchGroupAccountEditRequest {
1878   - /**
1879   - * @description
1880   - * 关联的账号id
1881   - * @format int64
1882   - */
1883   - accountId?: number;
1884   - /**
1885   - * @description
1886   - * 关联的账号名称
1887   - */
1888   - accountName?: string;
1889   - /**
1890   - * @description
1891   - * 关联的账号手机号
1892   - */
1893   - accountPhone?: string;
1894   - /**
1895   - * @description
1896   - * 课题组id
1897   - * @format int64
1898   - */
1899   - groupId?: number;
1900   - /**
1901   - * @description
1902   - * 主键id
1903   - * @format int64
1904   - */
1905   - id?: number;
1906   -}
1907   -
1908   -export interface ResearchGroupAddRequest {
1909   - accounts?: Array<ResearchGroupAccountAddRequest>;
1910   - /**
1911   - * @description
1912   - * 课题组名称
1913   - */
1914   - group?: string;
1915   - /**
1916   - * @description
1917   - * 课题组负责人
1918   - */
1919   - leader?: string;
1920   - members?: Array<ResearchGroupMemberAddRequest>;
  2332 +export interface QueryInvoiceProjectDto {
  2333 + /** @format int32 */
  2334 + current?: number;
  2335 + /** @format int32 */
  2336 + end?: number;
  2337 + nameLike?: string;
  2338 + /** @format int32 */
  2339 + pageSize?: number;
  2340 + /** @format int32 */
  2341 + start?: number;
  2342 + /** @format int32 */
  2343 + total?: number;
1921 2344 }
1922 2345  
1923   -export interface ResearchGroupDeleteRequest {
  2346 +export interface QueryInvoiceRecordDto {
1924 2347 /**
1925 2348 * @description
1926   - * 主键id
  2349 + * 联系人
1927 2350 */
1928   - ids?: Array<number>;
1929   -}
1930   -
1931   -export interface ResearchGroupDetailRequest {
  2351 + contactsLike?: string;
  2352 + /** @format date-time */
  2353 + createTimeGe?: string;
  2354 + /** @format date-time */
  2355 + createTimeLe?: string;
  2356 + /** @format int32 */
  2357 + current?: number;
  2358 + /** @format int32 */
  2359 + end?: number;
1932 2360 /**
1933 2361 * @description
1934   - * 主键id
  2362 + * id
1935 2363 * @format int64
1936 2364 */
1937 2365 id?: number;
1938   -}
1939   -
1940   -export interface ResearchGroupEditRequest {
1941 2366 /**
1942 2367 * @description
1943   - * 课题组预存账号
  2368 + * IdIn
1944 2369 */
1945   - accounts?: Array<ResearchGroupAccountEditRequest>;
  2370 + idIn?: Array<number>;
1946 2371 /**
1947 2372 * @description
1948   - * 课题组名称
  2373 + * 关联发票id
1949 2374 */
1950   - group?: string;
  2375 + invoiceId?: string;
1951 2376 /**
1952 2377 * @description
1953   - * 主键id
1954   - * @format int64
  2378 + * 发票号码
1955 2379 */
1956   - id?: number;
  2380 + invoiceNumber?: string;
1957 2381 /**
1958 2382 * @description
1959   - * 课题组负责人
  2383 + * 发票号码
1960 2384 */
1961   - leader?: string;
  2385 + invoiceNumberLike?: string;
1962 2386 /**
1963 2387 * @description
1964   - * 课题组成员集合
  2388 + * 开票时间
  2389 + * @format date-time
1965 2390 */
1966   - members?: Array<ResearchGroupMemberEditRequest>;
1967   -}
1968   -
1969   -export interface ResearchGroupListRequest {
  2391 + invoicingTimeGe?: string;
1970 2392 /**
1971 2393 * @description
1972   - * 预存账号手机号
  2394 + * 开票时间
  2395 + * @format date-time
1973 2396 */
1974   - accountPhone?: string;
1975   - /** @format int32 */
1976   - current?: number;
1977   - /** @format int32 */
1978   - end?: number;
  2397 + invoicingTimeLe?: string;
1979 2398 /**
1980 2399 * @description
1981   - * 课题组名称
  2400 + * 开票类型
1982 2401 */
1983   - groupName?: string;
  2402 + invoicingType?: string;
1984 2403 /**
1985 2404 * @description
1986   - * 课题组负责人
  2405 + * 是否加急
1987 2406 */
1988   - leaderName?: string;
  2407 + isUrgent?: boolean;
1989 2408 /**
1990 2409 * @description
1991   - * 课题组成员名称
  2410 + * 订单号
  2411 + * @format int64
1992 2412 */
1993   - memberName?: string;
  2413 + mainOrderId?: number;
1994 2414 /**
1995 2415 * @description
1996   - * 课题组成员手机号
  2416 + * 主订单idIn
1997 2417 */
1998   - memberPhone?: string;
1999   - /** @format int32 */
2000   - pageSize?: number;
2001   - /** @format int32 */
2002   - start?: number;
2003   - /** @format int32 */
2004   - total?: number;
2005   -}
2006   -
2007   -export interface ResearchGroupMemberAddRequest {
  2418 + mainOrderIdIn?: Array<number>;
2008 2419 /**
2009 2420 * @description
2010   - * 课题组ID
2011   - * @format int64
  2421 + * 订单号
2012 2422 */
2013   - groupId?: number;
  2423 + mainOrderIdLike?: string;
2014 2424 /**
2015 2425 * @description
2016   - * 成员名称
  2426 + * 是否需要构建发票明细
2017 2427 */
2018   - memberName?: string;
  2428 + needBuildDetails?: boolean;
2019 2429 /**
2020 2430 * @description
2021   - * 成员手机号
  2431 + * 是否需要构建发票明细
2022 2432 */
2023   - memberPhone?: string;
2024   -}
2025   -
2026   -export interface ResearchGroupMemberEditRequest {
  2433 + needBuildSubOrders?: boolean;
  2434 + /** @format int32 */
  2435 + pageSize?: number;
2027 2436 /**
2028 2437 * @description
2029   - * 课题组ID
2030   - * @format int64
  2438 + * 买方名称
2031 2439 */
2032   - groupId?: number;
  2440 + partyANameLike?: string;
2033 2441 /**
2034 2442 * @description
2035   - * 主键id
2036   - * @format int64
  2443 + * 买方电话号码
2037 2444 */
2038   - id?: number;
  2445 + partyAPhoneNumberLike?: string;
2039 2446 /**
2040 2447 * @description
2041   - * 成员名称
  2448 + * 买方税号
2042 2449 */
2043   - memberName?: string;
  2450 + partyATaxid?: string;
2044 2451 /**
2045 2452 * @description
2046   - * 成员手机
  2453 + * 买方税
2047 2454 */
2048   - memberPhone?: string;
2049   -}
2050   -
2051   -export interface ResearchGroupMemberRequestAddRequest {
  2455 + partyATaxidLike?: string;
  2456 + partyB?: string;
2052 2457 /**
2053 2458 * @description
2054   - * 课题组ID
2055   - * @format int64
  2459 + * 卖方名称
2056 2460 */
2057   - groupId?: number;
  2461 + partyBName?: string;
2058 2462 /**
2059 2463 * @description
2060   - * 课题组名称
  2464 + * 销售代表
2061 2465 */
2062   - groupName?: string;
2063   - members?: Array<ResearchGroupMemberAddRequest>;
  2466 + salesCode?: string;
2064 2467 /**
2065 2468 * @description
2066   - * 申请备注
  2469 + * 销售代表
2067 2470 */
2068   - requestNotes?: string;
2069   -}
2070   -
2071   -export interface ResearchGroupMemberRequestDeleteRequest {
  2471 + salesCodeLike?: string;
  2472 + /** @format int32 */
  2473 + start?: number;
2072 2474 /**
2073 2475 * @description
2074   - * 主键id
  2476 + * 发票状态
2075 2477 */
2076   - ids?: Array<number>;
2077   -}
2078   -
2079   -export interface ResearchGroupMemberRequestDetailRequest {
  2478 + status?: string;
2080 2479 /**
2081 2480 * @description
2082   - * 主键id
2083   - * @format int64
  2481 + * 状态非空
2084 2482 */
2085   - id?: number;
2086   -}
2087   -
2088   -export interface ResearchGroupMemberRequestEditRequest {
  2483 + statusIn?: Array<string>;
2089 2484 /**
2090 2485 * @description
2091   - * 课题组ID
2092   - * @format int64
  2486 + * 状态非空
2093 2487 */
2094   - groupId?: number;
  2488 + statusIsNotNull?: boolean;
2095 2489 /**
2096 2490 * @description
2097   - * 课题组名称
  2491 + * 状态为空
2098 2492 */
2099   - groupName?: string;
  2493 + statusIsNull?: boolean;
2100 2494 /**
2101 2495 * @description
2102   - * 主键id
  2496 + * 子订单
2103 2497 * @format int64
2104 2498 */
2105   - id?: number;
  2499 + subOrderId?: number;
2106 2500 /**
2107 2501 * @description
2108   - * 成员名称
  2502 + * 子订单idIn
2109 2503 */
2110   - memberName?: string;
  2504 + subOrderIdIn?: Array<number>;
2111 2505 /**
2112 2506 * @description
2113   - * 成员手机号
  2507 + * 子订单
2114 2508 */
2115   - memberPhone?: string;
  2509 + subOrderIdLike?: string;
  2510 + /** @format int32 */
  2511 + total?: number;
2116 2512 /**
2117 2513 * @description
2118   - * 申请备注
  2514 + * 开票类型
2119 2515 */
2120   - requestNotes?: string;
2121   -}
2122   -
2123   -export interface ResearchGroupMemberRequestsRequest {
  2516 + type?: string;
2124 2517 /**
2125 2518 * @description
2126   - * 审核备注
  2519 + * 用户id
2127 2520 */
2128   - auditNotes?: string;
  2521 + uid?: string;
  2522 +}
  2523 +
  2524 +export interface QueryMainOrderDto {
2129 2525 /**
2130 2526 * @description
2131   - * 审核状态
  2527 + * 收货人姓名
2132 2528 */
2133   - auditStatus?: string;
  2529 + customerName?: string;
  2530 +}
  2531 +
  2532 +export interface QueryReportFormsDto {
2134 2533 /**
2135 2534 * @description
2136   - * 创建人
  2535 + * 是否包含实验设备事业部
2137 2536 */
2138   - createByName?: string;
2139   - /** @format int32 */
2140   - current?: number;
2141   - /** @format int32 */
2142   - end?: number;
  2537 + includeExperimentalEquipment?: boolean;
2143 2538 /**
2144 2539 * @description
2145   - * 课题组名称
  2540 + * 最大金额
  2541 + * @example
  2542 + * 2343
2146 2543 */
2147   - groupName?: string;
  2544 + maxAccount?: number;
2148 2545 /**
2149 2546 * @description
2150   - * 成员名称
  2547 + * 所属部门
2151 2548 */
2152   - memberName?: string;
  2549 + productBelongBusiness?: string;
2153 2550 /**
2154 2551 * @description
2155   - * 成员手机号
  2552 + * 销售代表
2156 2553 */
2157   - memberPhone?: string;
2158   - /** @format int32 */
2159   - pageSize?: number;
  2554 + salesCode?: string;
2160 2555 /**
2161 2556 * @description
2162   - * 申请备注
  2557 + * 统计方式
2163 2558 */
2164   - requestNotes?: string;
2165   - /** @format int32 */
2166   - start?: number;
2167   - /** @format int32 */
2168   - total?: number;
  2559 + statisticsMethod?: string;
  2560 +}
  2561 +
  2562 +export interface ReissueInvoiceDto {
  2563 + /** @format int64 */
  2564 + invoiceId?: number;
  2565 + notes?: string;
2169 2566 }
2170 2567  
2171 2568 export interface ResetPwdVO {
... ... @@ -2207,14 +2604,134 @@ export interface ShippingWarehouseChangeDto {
2207 2604 shippingWarehouse?: string;
2208 2605 }
2209 2606  
  2607 +export interface SubOrder {
  2608 + afterInvoicingStatus?: string;
  2609 + /** @format date-time */
  2610 + afterInvoicingStatusUpdateTime?: string;
  2611 + afterSalesAnnex?: string;
  2612 + afterSalesNotes?: string;
  2613 + afterSalesPlan?: string;
  2614 + annex?: string;
  2615 + applyInvoicingAnnex?: string;
  2616 + applyInvoicingNotes?: string;
  2617 + /** @format date-time */
  2618 + applyTime?: string;
  2619 + /** @format int32 */
  2620 + attrId?: number;
  2621 + checkNotes?: string;
  2622 + /** @format date-time */
  2623 + collectMoneyTime?: string;
  2624 + confirmDeliverNotes?: string;
  2625 + confirmReissueNotes?: string;
  2626 + createByName?: string;
  2627 + /** @format date-time */
  2628 + createTime?: string;
  2629 + /** @format date-time */
  2630 + deadline?: string;
  2631 + ext?: string;
  2632 + extendField?: string;
  2633 + /** @format date-time */
  2634 + financialReceiptIssuanceTime?: string;
  2635 + fullPaymentStatus?: string;
  2636 + /** @format double */
  2637 + goodsVolume?: number;
  2638 + /** @format double */
  2639 + goodsWeight?: number;
  2640 + /** @format int64 */
  2641 + id?: number;
  2642 + image?: string;
  2643 + invoiceApplyUsername?: string;
  2644 + invoiceInformation?: string;
  2645 + /** @format int64 */
  2646 + invoiceRecordId?: number;
  2647 + invoicingCheckAnnex?: string;
  2648 + invoicingNotes?: string;
  2649 + invoicingStatus?: string;
  2650 + /** @format date-time */
  2651 + invoicingTime?: string;
  2652 + invoicingUrgentCause?: string;
  2653 + isUrgent?: boolean;
  2654 + kingdeeErrorMessage?: string;
  2655 + logicDelete?: boolean;
  2656 + logisticsMethod?: string;
  2657 + logisticsNotes?: string;
  2658 + /** @format int64 */
  2659 + mainOrderAmountProportion?: number;
  2660 + /** @format int64 */
  2661 + mainOrderId?: number;
  2662 + materialId?: string;
  2663 + modified?: boolean;
  2664 + modifiedAuditNotes?: string;
  2665 + modifiedAuditStatus?: string;
  2666 + modifiedOptFlag?: string;
  2667 + nextOrderStatus?: string;
  2668 + notes?: string;
  2669 + orderStatus?: string;
  2670 + orderStatusBeforeModify?: string;
  2671 + /** @format date-time */
  2672 + orderStatusUpdateTime?: string;
  2673 + /** @format int32 */
  2674 + packageNumber?: number;
  2675 + parameters?: string;
  2676 + paymentChannel?: string;
  2677 + paymentMethod?: string;
  2678 + paymentReceiptAnnex?: string;
  2679 + paymentReceiptNotes?: string;
  2680 + paymentReceiptStatus?: string;
  2681 + paymentStatus?: string;
  2682 + paymentTransactionId?: string;
  2683 + postAuditNotes?: string;
  2684 + postAuditStatus?: string;
  2685 + /** @format date-time */
  2686 + postAuditStatusUpdateTime?: string;
  2687 + preAfterInvoicingStatus?: string;
  2688 + procureConvertNotes?: string;
  2689 + procureNotes?: string;
  2690 + /** @format date-time */
  2691 + procureOrderDatetime?: string;
  2692 + procureOrderStatus?: string;
  2693 + productBelongBusiness?: string;
  2694 + productCode?: string;
  2695 + /** @format int32 */
  2696 + productId?: number;
  2697 + productName?: string;
  2698 + /** @format int64 */
  2699 + productPrice?: number;
  2700 + /** @format date-time */
  2701 + productionEndTime?: string;
  2702 + /** @format date-time */
  2703 + productionStartTime?: string;
  2704 + productionTimePushStatus?: string;
  2705 + /** @format int32 */
  2706 + quantity?: number;
  2707 + receivingCompany?: string;
  2708 + reissueNotes?: string;
  2709 + serialNumber?: string;
  2710 + shippingWarehouse?: string;
  2711 + /** @format int64 */
  2712 + subOrderPayment?: number;
  2713 + supplierName?: string;
  2714 + supplierNotes?: string;
  2715 + /** @format int64 */
  2716 + totalPayment?: number;
  2717 + /** @format int32 */
  2718 + uid?: number;
  2719 + unit?: string;
  2720 + unitId?: string;
  2721 + updateByName?: string;
  2722 + /** @format date-time */
  2723 + updateTime?: string;
  2724 + urgentInvoiceAuditNotes?: string;
  2725 + /** @format int32 */
  2726 + version?: number;
  2727 +}
  2728 +
2210 2729 export interface SysLogQueryVO {
2211 2730 address?: string;
2212 2731 browser?: string;
2213 2732 /** @format int32 */
2214 2733 current?: number;
2215 2734 description?: string;
2216   - /** @format int32 */
2217   - end?: number;
2218 2735 exceptionDetail?: string;
2219 2736 /** @format int64 */
2220 2737 id?: number;
... ... @@ -2225,8 +2742,6 @@ export interface SysLogQueryVO {
2225 2742 pageSize?: number;
2226 2743 params?: string;
2227 2744 requestIp?: string;
2228   - /** @format int32 */
2229   - start?: number;
2230 2745 /** @format int64 */
2231 2746 time?: number;
2232 2747 /** @format int32 */
... ... @@ -2390,12 +2905,8 @@ export interface UserCenterInfoRequest {
2390 2905 /** @format int32 */
2391 2906 current?: number;
2392 2907 /** @format int32 */
2393   - end?: number;
2394   - /** @format int32 */
2395 2908 pageSize?: number;
2396 2909 /** @format int32 */
2397   - start?: number;
2398   - /** @format int32 */
2399 2910 total?: number;
2400 2911 /**
2401 2912 * @description
... ... @@ -2415,8 +2926,6 @@ export interface UserDetailRequest {
2415 2926 /** @format int32 */
2416 2927 current?: number;
2417 2928 /** @format int32 */
2418   - end?: number;
2419   - /** @format int32 */
2420 2929 pageSize?: number;
2421 2930 /**
2422 2931 * @description
... ... @@ -2424,8 +2933,6 @@ export interface UserDetailRequest {
2424 2933 */
2425 2934 phone?: string;
2426 2935 /** @format int32 */
2427   - start?: number;
2428   - /** @format int32 */
2429 2936 total?: number;
2430 2937 /**
2431 2938 * @description
... ... @@ -2442,8 +2949,6 @@ export interface UserListRequest {
2442 2949 * 创建日期开始时间
2443 2950 */
2444 2951 dateLimit?: string;
2445   - /** @format int32 */
2446   - end?: number;
2447 2952 /**
2448 2953 * @description
2449 2954 * 单位
... ... @@ -2468,23 +2973,10 @@ export interface UserListRequest {
2468 2973 phone?: string;
2469 2974 /**
2470 2975 * @description
2471   - * phones
2472   - */
2473   - phones?: Array<string>;
2474   - /**
2475   - * @description
2476   - * 内部订单系统课题组id
2477   - * @format int64
2478   - */
2479   - researchGroupId?: number;
2480   - /**
2481   - * @description
2482 2976 * salesCode
2483 2977 */
2484 2978 salesCode?: string;
2485 2979 /** @format int32 */
2486   - start?: number;
2487   - /** @format int32 */
2488 2980 total?: number;
2489 2981 /**
2490 2982 * @description
... ... @@ -2494,23 +2986,11 @@ export interface UserListRequest {
2494 2986 uid?: number;
2495 2987 /**
2496 2988 * @description
2497   - * ids
2498   - */
2499   - uids?: Array<number>;
2500   - /**
2501   - * @description
2502 2989 * 用户名
2503 2990 */
2504 2991 username?: string;
2505 2992 }
2506 2993  
2507   -export interface UserNowMoneyCheckRequest {
2508   - phone?: string;
2509   - subPrice?: number;
2510   - /** @format int64 */
2511   - uid?: number;
2512   -}
2513   -
2514 2994 export interface View {
2515 2995 contentType?: string;
2516 2996 }
... ... @@ -2559,6 +3039,44 @@ export interface TsgFile {
2559 3039 writable?: boolean;
2560 3040 }
2561 3041  
  3042 +export interface InvoiceDetail {
  3043 + /** @format int64 */
  3044 + id?: number;
  3045 + /**
  3046 + * @description
  3047 + * 发票id
  3048 + * @format int64
  3049 + */
  3050 + invoiceRecordId?: number;
  3051 + /**
  3052 + * @description
  3053 + * 单价
  3054 + * @format double
  3055 + */
  3056 + price?: number;
  3057 + projectName?: string;
  3058 + /** @format double */
  3059 + quantity?: number;
  3060 + /**
  3061 + * @description
  3062 + * 型号
  3063 + */
  3064 + specification?: string;
  3065 + /** @format int64 */
  3066 + subOrderId?: number;
  3067 + /** @format double */
  3068 + taxPrice?: number;
  3069 + /** @format double */
  3070 + taxRate?: number;
  3071 + /**
  3072 + * @description
  3073 + * 总价
  3074 + * @format double
  3075 + */
  3076 + totalPrice?: number;
  3077 + unit?: string;
  3078 +}
  3079 +
2562 3080 export interface SalesRechargePrepaymentAuditRequest {
2563 3081 /**
2564 3082 * @description
... ... @@ -2575,11 +3093,6 @@ export interface SalesRechargePrepaymentAuditRequest {
2575 3093 * 是否通过
2576 3094 */
2577 3095 pass?: boolean;
2578   - /**
2579   - * @description
2580   - * 手机号
2581   - */
2582   - phone?: string;
2583 3096 }
2584 3097  
2585 3098 export interface SalesRechargePrepaymentCreateRequest {
... ... @@ -2685,8 +3198,6 @@ export interface SalesRechargePrepaymentRequest {
2685 3198 * @format int32
2686 3199 */
2687 3200 enableFlag?: number;
2688   - /** @format int32 */
2689   - end?: number;
2690 3201 /**
2691 3202 * @description
2692 3203 * id
... ... @@ -2731,8 +3242,6 @@ export interface SalesRechargePrepaymentRequest {
2731 3242 * 销售代表
2732 3243 */
2733 3244 salesCode?: string;
2734   - /** @format int32 */
2735   - start?: number;
2736 3245 /**
2737 3246 * @description
2738 3247 * 状态
... ... @@ -2911,38 +3420,6 @@ export interface TsgURL {
2911 3420 userInfo?: string;
2912 3421 }
2913 3422  
2914   -/**
2915   - * @description
2916   - * 保存用户地址请求对象
2917   - */
2918   -export interface UserAddressSaveRequest {
2919   - /**
2920   - * @description
2921   - * 联系电话
2922   - */
2923   - customerContactNumber: string;
2924   - /**
2925   - * @description
2926   - * 客户姓名
2927   - */
2928   - customerName: string;
2929   - /**
2930   - * @description
2931   - * 收货地址
2932   - */
2933   - customerShippingAddress?: string;
2934   - /**
2935   - * @description
2936   - * 客户单位
2937   - */
2938   - institution?: string;
2939   - /**
2940   - * @description
2941   - * 课题组老师
2942   - */
2943   - institutionContactName?: string;
2944   -}
2945   -
2946 3423 export interface UploadPaymentReceiptDTO {
2947 3424 /**
2948 3425 * @description
... ...
src/services/request.ts
... ... @@ -29,12 +29,12 @@ import type {
29 29 ApiOrderEvaluatedRequest,
30 30 ApiQueryOrderDetailRequest,
31 31 ApiQueryOrderStatusCountsRequest,
  32 + ApplyInvoiceDto,
32 33 AuditDto,
33 34 AuditVO,
34 35 CancelInvoiceAndBankStatementDto,
35 36 CancelSendOrderDto,
36 37 CaptchaMessageVO,
37   - CommonAuditRequest,
38 38 CustomFieldRes,
39 39 CustomerCustomerListReq,
40 40 CustomerDetailDto,
... ... @@ -46,6 +46,7 @@ import type {
46 46 Dto,
47 47 InventoryMaterialStockReq,
48 48 InvoiceDto,
  49 + InvoiceRecordDto,
49 50 InvoiceRecordQueryRequest,
50 51 MainOrderqueryRequest,
51 52 MaterialListReply,
... ... @@ -54,6 +55,7 @@ import type {
54 55 MaterialUnitListRes,
55 56 MeasureUnitListRes,
56 57 MessageQueryDTO,
  58 + ModelAndView,
57 59 OrderAddVO,
58 60 OrderAuditLogQueryVO,
59 61 OrderBaseInfoQueryVO,
... ... @@ -68,6 +70,7 @@ import type {
68 70 OrderStagesSelDo,
69 71 OrderUnlockFieldApplyVO,
70 72 OrderUpdateVO,
  73 + OrderZoNingProvinceUserDo,
71 74 ProcureConvertProcureDto,
72 75 ProcureOrderDto,
73 76 ProcurePrintDto,
... ... @@ -78,19 +81,11 @@ import type {
78 81 QueryCustomerInformationDto,
79 82 QueryHistoryRecordDto,
80 83 QueryInvoiceDetailDto,
  84 + QueryInvoiceProjectDto,
  85 + QueryInvoiceRecordDto,
81 86 QueryMainOrderDto,
82 87 QueryReportFormsDto,
83 88 ReissueInvoiceDto,
84   - ResearchGroupAddRequest,
85   - ResearchGroupDeleteRequest,
86   - ResearchGroupDetailRequest,
87   - ResearchGroupEditRequest,
88   - ResearchGroupListRequest,
89   - ResearchGroupMemberRequestAddRequest,
90   - ResearchGroupMemberRequestDeleteRequest,
91   - ResearchGroupMemberRequestDetailRequest,
92   - ResearchGroupMemberRequestEditRequest,
93   - ResearchGroupMemberRequestsRequest,
94 89 ResetPwdVO,
95 90 SalOrderSaveDto,
96 91 SalesRechargePrepaymentAuditRequest,
... ... @@ -112,11 +107,9 @@ import type {
112 107 UpdatePwdVO,
113 108 UploadPaymentReceiptDTO,
114 109 UserAddressListRequest,
115   - UserAddressSaveRequest,
116 110 UserCenterInfoRequest,
117 111 UserDetailRequest,
118 112 UserListRequest,
119   - UserNowMoneyCheckRequest,
120 113 } from './definition';
121 114  
122 115 /** @description request parameter type for postApiLocalStorageUpload */
... ... @@ -1479,78 +1472,6 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() =&gt; {
1479 1472 return request;
1480 1473 })();
1481 1474  
1482   -/** @description request parameter type for postCanrdApiUserInnerOrderSystemAddressSave */
1483   -export interface PostCanrdApiUserInnerOrderSystemAddressSaveOption {
1484   - /**
1485   - * @description
1486   - * request
1487   - */
1488   - body: {
1489   - /**
1490   - @description
1491   - request */
1492   - request: UserAddressSaveRequest;
1493   - };
1494   -}
1495   -
1496   -/** @description response type for postCanrdApiUserInnerOrderSystemAddressSave */
1497   -export interface PostCanrdApiUserInnerOrderSystemAddressSaveResponse {
1498   - /**
1499   - * @description
1500   - * OK
1501   - */
1502   - 200: ServerResult;
1503   - /**
1504   - * @description
1505   - * Created
1506   - */
1507   - 201: any;
1508   - /**
1509   - * @description
1510   - * Unauthorized
1511   - */
1512   - 401: any;
1513   - /**
1514   - * @description
1515   - * Forbidden
1516   - */
1517   - 403: any;
1518   - /**
1519   - * @description
1520   - * Not Found
1521   - */
1522   - 404: any;
1523   -}
1524   -
1525   -export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess =
1526   - PostCanrdApiUserInnerOrderSystemAddressSaveResponse[200];
1527   -/**
1528   - * @description
1529   - * 查询地址信息
1530   - * @tags canrd-mobile-api-controller
1531   - * @produces *
1532   - * @consumes application/json
1533   - */
1534   -export const postCanrdApiUserInnerOrderSystemAddressSave =
1535   - /* #__PURE__ */ (() => {
1536   - const method = 'post';
1537   - const url = '/canrd/api/user/innerOrderSystem/address/save';
1538   - function request(
1539   - option: PostCanrdApiUserInnerOrderSystemAddressSaveOption,
1540   - ): Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess> {
1541   - return requester(request.url, {
1542   - method: request.method,
1543   - ...option,
1544   - }) as unknown as Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess>;
1545   - }
1546   -
1547   - /** http method */
1548   - request.method = method;
1549   - /** request url */
1550   - request.url = url;
1551   - return request;
1552   - })();
1553   -
1554 1475 /** @description request parameter type for postCanrdApiUserList */
1555 1476 export interface PostCanrdApiUserListOption {
1556 1477 /**
... ... @@ -1622,156 +1543,13 @@ export const postCanrdApiUserList = /* #__PURE__ */ (() =&gt; {
1622 1543 return request;
1623 1544 })();
1624 1545  
1625   -/** @description request parameter type for postCanrdApiUserNowMoneyCheck */
1626   -export interface PostCanrdApiUserNowMoneyCheckOption {
1627   - /**
1628   - * @description
1629   - * request
1630   - */
1631   - body: {
1632   - /**
1633   - @description
1634   - request */
1635   - request: UserNowMoneyCheckRequest;
1636   - };
1637   -}
1638   -
1639   -/** @description response type for postCanrdApiUserNowMoneyCheck */
1640   -export interface PostCanrdApiUserNowMoneyCheckResponse {
1641   - /**
1642   - * @description
1643   - * OK
1644   - */
1645   - 200: ServerResult;
1646   - /**
1647   - * @description
1648   - * Created
1649   - */
1650   - 201: any;
1651   - /**
1652   - * @description
1653   - * Unauthorized
1654   - */
1655   - 401: any;
1656   - /**
1657   - * @description
1658   - * Forbidden
1659   - */
1660   - 403: any;
1661   - /**
1662   - * @description
1663   - * Not Found
1664   - */
1665   - 404: any;
1666   -}
1667   -
1668   -export type PostCanrdApiUserNowMoneyCheckResponseSuccess =
1669   - PostCanrdApiUserNowMoneyCheckResponse[200];
1670   -/**
1671   - * @description
1672   - * 检查用户额度
1673   - * @tags canrd-mobile-api-controller
1674   - * @produces *
1675   - * @consumes application/json
1676   - */
1677   -export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => {
1678   - const method = 'post';
1679   - const url = '/canrd/api/user/nowMoney/check';
1680   - function request(
1681   - option: PostCanrdApiUserNowMoneyCheckOption,
1682   - ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> {
1683   - return requester(request.url, {
1684   - method: request.method,
1685   - ...option,
1686   - }) as unknown as Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess>;
1687   - }
1688   -
1689   - /** http method */
1690   - request.method = method;
1691   - /** request url */
1692   - request.url = url;
1693   - return request;
1694   -})();
1695   -
1696   -/** @description request parameter type for postCommonAudit */
1697   -export interface PostCommonAuditOption {
1698   - /**
1699   - * @description
1700   - * request
1701   - */
1702   - body: {
1703   - /**
1704   - @description
1705   - request */
1706   - request: CommonAuditRequest;
1707   - };
1708   -}
1709   -
1710   -/** @description response type for postCommonAudit */
1711   -export interface PostCommonAuditResponse {
1712   - /**
1713   - * @description
1714   - * OK
1715   - */
1716   - 200: ServerResult;
1717   - /**
1718   - * @description
1719   - * Created
1720   - */
1721   - 201: any;
1722   - /**
1723   - * @description
1724   - * Unauthorized
1725   - */
1726   - 401: any;
1727   - /**
1728   - * @description
1729   - * Forbidden
1730   - */
1731   - 403: any;
1732   - /**
1733   - * @description
1734   - * Not Found
1735   - */
1736   - 404: any;
1737   -}
1738   -
1739   -export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200];
1740   -/**
1741   - * @description
1742   - * audit
1743   - * @tags common-controller
1744   - * @produces *
1745   - * @consumes application/json
1746   - */
1747   -export const postCommonAudit = /* #__PURE__ */ (() => {
1748   - const method = 'post';
1749   - const url = '/common/audit';
1750   - function request(
1751   - option: PostCommonAuditOption,
1752   - ): Promise<PostCommonAuditResponseSuccess> {
1753   - return requester(request.url, {
1754   - method: request.method,
1755   - ...option,
1756   - }) as unknown as Promise<PostCommonAuditResponseSuccess>;
1757   - }
1758   -
1759   - /** http method */
1760   - request.method = method;
1761   - /** request url */
1762   - request.url = url;
1763   - return request;
1764   -})();
1765   -
1766 1546 /** @description response type for getError */
1767 1547 export interface GetErrorResponse {
1768 1548 /**
1769 1549 * @description
1770 1550 * OK
1771 1551 */
1772   - 200: {
1773   - [propertyName: string]: any;
1774   - };
  1552 + 200: ModelAndView;
1775 1553 /**
1776 1554 * @description
1777 1555 * Unauthorized
... ... @@ -1792,9 +1570,9 @@ export interface GetErrorResponse {
1792 1570 export type GetErrorResponseSuccess = GetErrorResponse[200];
1793 1571 /**
1794 1572 * @description
1795   - * error
  1573 + * errorHtml
1796 1574 * @tags basic-error-controller
1797   - * @produces *
  1575 + * @produces text/html
1798 1576 */
1799 1577 export const getError = /* #__PURE__ */ (() => {
1800 1578 const method = 'get';
... ... @@ -1818,9 +1596,7 @@ export interface PutErrorResponse {
1818 1596 * @description
1819 1597 * OK
1820 1598 */
1821   - 200: {
1822   - [propertyName: string]: any;
1823   - };
  1599 + 200: ModelAndView;
1824 1600 /**
1825 1601 * @description
1826 1602 * Created
... ... @@ -1846,9 +1622,9 @@ export interface PutErrorResponse {
1846 1622 export type PutErrorResponseSuccess = PutErrorResponse[200];
1847 1623 /**
1848 1624 * @description
1849   - * error
  1625 + * errorHtml
1850 1626 * @tags basic-error-controller
1851   - * @produces *
  1627 + * @produces text/html
1852 1628 * @consumes application/json
1853 1629 */
1854 1630 export const putError = /* #__PURE__ */ (() => {
... ... @@ -1873,9 +1649,7 @@ export interface PostErrorResponse {
1873 1649 * @description
1874 1650 * OK
1875 1651 */
1876   - 200: {
1877   - [propertyName: string]: any;
1878   - };
  1652 + 200: ModelAndView;
1879 1653 /**
1880 1654 * @description
1881 1655 * Created
... ... @@ -1901,9 +1675,9 @@ export interface PostErrorResponse {
1901 1675 export type PostErrorResponseSuccess = PostErrorResponse[200];
1902 1676 /**
1903 1677 * @description
1904   - * error
  1678 + * errorHtml
1905 1679 * @tags basic-error-controller
1906   - * @produces *
  1680 + * @produces text/html
1907 1681 * @consumes application/json
1908 1682 */
1909 1683 export const postError = /* #__PURE__ */ (() => {
... ... @@ -1928,9 +1702,7 @@ export interface DeleteErrorResponse {
1928 1702 * @description
1929 1703 * OK
1930 1704 */
1931   - 200: {
1932   - [propertyName: string]: any;
1933   - };
  1705 + 200: ModelAndView;
1934 1706 /**
1935 1707 * @description
1936 1708 * No Content
... ... @@ -1951,9 +1723,9 @@ export interface DeleteErrorResponse {
1951 1723 export type DeleteErrorResponseSuccess = DeleteErrorResponse[200];
1952 1724 /**
1953 1725 * @description
1954   - * error
  1726 + * errorHtml
1955 1727 * @tags basic-error-controller
1956   - * @produces *
  1728 + * @produces text/html
1957 1729 */
1958 1730 export const deleteError = /* #__PURE__ */ (() => {
1959 1731 const method = 'delete';
... ... @@ -1977,9 +1749,7 @@ export interface OptionsErrorResponse {
1977 1749 * @description
1978 1750 * OK
1979 1751 */
1980   - 200: {
1981   - [propertyName: string]: any;
1982   - };
  1752 + 200: ModelAndView;
1983 1753 /**
1984 1754 * @description
1985 1755 * No Content
... ... @@ -2000,9 +1770,9 @@ export interface OptionsErrorResponse {
2000 1770 export type OptionsErrorResponseSuccess = OptionsErrorResponse[200];
2001 1771 /**
2002 1772 * @description
2003   - * error
  1773 + * errorHtml
2004 1774 * @tags basic-error-controller
2005   - * @produces *
  1775 + * @produces text/html
2006 1776 * @consumes application/json
2007 1777 */
2008 1778 export const optionsError = /* #__PURE__ */ (() => {
... ... @@ -2027,9 +1797,7 @@ export interface HeadErrorResponse {
2027 1797 * @description
2028 1798 * OK
2029 1799 */
2030   - 200: {
2031   - [propertyName: string]: any;
2032   - };
  1800 + 200: ModelAndView;
2033 1801 /**
2034 1802 * @description
2035 1803 * No Content
... ... @@ -2050,9 +1818,9 @@ export interface HeadErrorResponse {
2050 1818 export type HeadErrorResponseSuccess = HeadErrorResponse[200];
2051 1819 /**
2052 1820 * @description
2053   - * error
  1821 + * errorHtml
2054 1822 * @tags basic-error-controller
2055   - * @produces *
  1823 + * @produces text/html
2056 1824 * @consumes application/json
2057 1825 */
2058 1826 export const headError = /* #__PURE__ */ (() => {
... ... @@ -2077,9 +1845,7 @@ export interface PatchErrorResponse {
2077 1845 * @description
2078 1846 * OK
2079 1847 */
2080   - 200: {
2081   - [propertyName: string]: any;
2082   - };
  1848 + 200: ModelAndView;
2083 1849 /**
2084 1850 * @description
2085 1851 * No Content
... ... @@ -2100,9 +1866,9 @@ export interface PatchErrorResponse {
2100 1866 export type PatchErrorResponseSuccess = PatchErrorResponse[200];
2101 1867 /**
2102 1868 * @description
2103   - * error
  1869 + * errorHtml
2104 1870 * @tags basic-error-controller
2105   - * @produces *
  1871 + * @produces text/html
2106 1872 * @consumes application/json
2107 1873 */
2108 1874 export const patchError = /* #__PURE__ */ (() => {
... ... @@ -7028,22 +6794,22 @@ export const postOrderErpOrderStagesPayWayUploadForPayWay =
7028 6794 return request;
7029 6795 })();
7030 6796  
7031   -/** @description request parameter type for postOrderErpProfitAnalysis */
7032   -export interface PostOrderErpProfitAnalysisOption {
  6797 +/** @description request parameter type for deleteOrderErpOrderZoNingDelete */
  6798 +export interface DeleteOrderErpOrderZoNingDeleteOption {
7033 6799 /**
7034 6800 * @description
7035   - * orderProfitAnalysisVo
  6801 + * id
7036 6802 */
7037 6803 body: {
7038 6804 /**
7039 6805 @description
7040   - orderProfitAnalysisVo */
7041   - orderProfitAnalysisVo: OrderProfitAnalysisVo;
  6806 + id */
  6807 + id: number;
7042 6808 };
7043 6809 }
7044 6810  
7045   -/** @description response type for postOrderErpProfitAnalysis */
7046   -export interface PostOrderErpProfitAnalysisResponse {
  6811 +/** @description response type for deleteOrderErpOrderZoNingDelete */
  6812 +export interface DeleteOrderErpOrderZoNingDeleteResponse {
7047 6813 /**
7048 6814 * @description
7049 6815 * OK
... ... @@ -7051,9 +6817,9 @@ export interface PostOrderErpProfitAnalysisResponse {
7051 6817 200: ServerResult;
7052 6818 /**
7053 6819 * @description
7054   - * Created
  6820 + * No Content
7055 6821 */
7056   - 201: any;
  6822 + 204: any;
7057 6823 /**
7058 6824 * @description
7059 6825 * Unauthorized
... ... @@ -7064,32 +6830,26 @@ export interface PostOrderErpProfitAnalysisResponse {
7064 6830 * Forbidden
7065 6831 */
7066 6832 403: any;
7067   - /**
7068   - * @description
7069   - * Not Found
7070   - */
7071   - 404: any;
7072 6833 }
7073 6834  
7074   -export type PostOrderErpProfitAnalysisResponseSuccess =
7075   - PostOrderErpProfitAnalysisResponse[200];
  6835 +export type DeleteOrderErpOrderZoNingDeleteResponseSuccess =
  6836 + DeleteOrderErpOrderZoNingDeleteResponse[200];
7076 6837 /**
7077 6838 * @description
7078   - * analysis
7079   - * @tags order-profit-controller
  6839 + * toDetele
  6840 + * @tags order-zo-ning-controller
7080 6841 * @produces *
7081   - * @consumes application/json
7082 6842 */
7083   -export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => {
7084   - const method = 'post';
7085   - const url = '/order/erp/profit/analysis';
  6843 +export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => {
  6844 + const method = 'delete';
  6845 + const url = '/order/erp/orderZoNing/delete';
7086 6846 function request(
7087   - option: PostOrderErpProfitAnalysisOption,
7088   - ): Promise<PostOrderErpProfitAnalysisResponseSuccess> {
  6847 + option: DeleteOrderErpOrderZoNingDeleteOption,
  6848 + ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> {
7089 6849 return requester(request.url, {
7090 6850 method: request.method,
7091 6851 ...option,
7092   - }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>;
  6852 + }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>;
7093 6853 }
7094 6854  
7095 6855 /** http method */
... ... @@ -7099,22 +6859,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() =&gt; {
7099 6859 return request;
7100 6860 })();
7101 6861  
7102   -/** @description request parameter type for postOrderErpRolesAdd */
7103   -export interface PostOrderErpRolesAddOption {
  6862 +/** @description request parameter type for postOrderErpOrderZoNingSaveOrUpdate */
  6863 +export interface PostOrderErpOrderZoNingSaveOrUpdateOption {
7104 6864 /**
7105 6865 * @description
7106   - * roleVO
  6866 + * orderZoNingProvinceUserDo
7107 6867 */
7108 6868 body: {
7109 6869 /**
7110 6870 @description
7111   - roleVO */
7112   - roleVO: AdminRoleVO;
  6871 + orderZoNingProvinceUserDo */
  6872 + orderZoNingProvinceUserDo: OrderZoNingProvinceUserDo;
7113 6873 };
7114 6874 }
7115 6875  
7116   -/** @description response type for postOrderErpRolesAdd */
7117   -export interface PostOrderErpRolesAddResponse {
  6876 +/** @description response type for postOrderErpOrderZoNingSaveOrUpdate */
  6877 +export interface PostOrderErpOrderZoNingSaveOrUpdateResponse {
7118 6878 /**
7119 6879 * @description
7120 6880 * OK
... ... @@ -7142,25 +6902,25 @@ export interface PostOrderErpRolesAddResponse {
7142 6902 404: any;
7143 6903 }
7144 6904  
7145   -export type PostOrderErpRolesAddResponseSuccess =
7146   - PostOrderErpRolesAddResponse[200];
  6905 +export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess =
  6906 + PostOrderErpOrderZoNingSaveOrUpdateResponse[200];
7147 6907 /**
7148 6908 * @description
7149   - * 新增角色
7150   - * @tags 系统:角色管理
  6909 + * update
  6910 + * @tags order-zo-ning-controller
7151 6911 * @produces *
7152 6912 * @consumes application/json
7153 6913 */
7154   -export const postOrderErpRolesAdd = /* #__PURE__ */ (() => {
  6914 +export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => {
7155 6915 const method = 'post';
7156   - const url = '/order/erp/roles/add';
  6916 + const url = '/order/erp/orderZoNing/saveOrUpdate';
7157 6917 function request(
7158   - option: PostOrderErpRolesAddOption,
7159   - ): Promise<PostOrderErpRolesAddResponseSuccess> {
  6918 + option: PostOrderErpOrderZoNingSaveOrUpdateOption,
  6919 + ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> {
7160 6920 return requester(request.url, {
7161 6921 method: request.method,
7162 6922 ...option,
7163   - }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>;
  6923 + }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>;
7164 6924 }
7165 6925  
7166 6926 /** http method */
... ... @@ -7170,22 +6930,8 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() =&gt; {
7170 6930 return request;
7171 6931 })();
7172 6932  
7173   -/** @description request parameter type for postOrderErpRolesAll */
7174   -export interface PostOrderErpRolesAllOption {
7175   - /**
7176   - * @description
7177   - * queryVO
7178   - */
7179   - body: {
7180   - /**
7181   - @description
7182   - queryVO */
7183   - queryVO: AdminRoleQueryVO;
7184   - };
7185   -}
7186   -
7187   -/** @description response type for postOrderErpRolesAll */
7188   -export interface PostOrderErpRolesAllResponse {
  6933 +/** @description response type for getOrderErpOrderZoNingSelectAll */
  6934 +export interface GetOrderErpOrderZoNingSelectAllResponse {
7189 6935 /**
7190 6936 * @description
7191 6937 * OK
... ... @@ -7193,11 +6939,6 @@ export interface PostOrderErpRolesAllResponse {
7193 6939 200: ServerResult;
7194 6940 /**
7195 6941 * @description
7196   - * Created
7197   - */
7198   - 201: any;
7199   - /**
7200   - * @description
7201 6942 * Unauthorized
7202 6943 */
7203 6944 401: any;
... ... @@ -7213,25 +6954,21 @@ export interface PostOrderErpRolesAllResponse {
7213 6954 404: any;
7214 6955 }
7215 6956  
7216   -export type PostOrderErpRolesAllResponseSuccess =
7217   - PostOrderErpRolesAllResponse[200];
  6957 +export type GetOrderErpOrderZoNingSelectAllResponseSuccess =
  6958 + GetOrderErpOrderZoNingSelectAllResponse[200];
7218 6959 /**
7219 6960 * @description
7220   - * 返回全部的角色
7221   - * @tags 系统:角色管理
  6961 + * 查询
  6962 + * @tags order-zo-ning-controller
7222 6963 * @produces *
7223   - * @consumes application/json
7224 6964 */
7225   -export const postOrderErpRolesAll = /* #__PURE__ */ (() => {
7226   - const method = 'post';
7227   - const url = '/order/erp/roles/all';
7228   - function request(
7229   - option: PostOrderErpRolesAllOption,
7230   - ): Promise<PostOrderErpRolesAllResponseSuccess> {
  6965 +export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => {
  6966 + const method = 'get';
  6967 + const url = '/order/erp/orderZoNing/selectAll';
  6968 + function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> {
7231 6969 return requester(request.url, {
7232 6970 method: request.method,
7233   - ...option,
7234   - }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>;
  6971 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>;
7235 6972 }
7236 6973  
7237 6974 /** http method */
... ... @@ -7241,22 +6978,8 @@ export const postOrderErpRolesAll = /* #__PURE__ */ (() =&gt; {
7241 6978 return request;
7242 6979 })();
7243 6980  
7244   -/** @description request parameter type for postOrderErpRolesAuthMenu */
7245   -export interface PostOrderErpRolesAuthMenuOption {
7246   - /**
7247   - * @description
7248   - * roleVO
7249   - */
7250   - body: {
7251   - /**
7252   - @description
7253   - roleVO */
7254   - roleVO: AdminAuthRoleVO;
7255   - };
7256   -}
7257   -
7258   -/** @description response type for postOrderErpRolesAuthMenu */
7259   -export interface PostOrderErpRolesAuthMenuResponse {
  6981 +/** @description response type for getOrderErpOrderZoNingSelectProvinceAll */
  6982 +export interface GetOrderErpOrderZoNingSelectProvinceAllResponse {
7260 6983 /**
7261 6984 * @description
7262 6985 * OK
... ... @@ -7264,11 +6987,6 @@ export interface PostOrderErpRolesAuthMenuResponse {
7264 6987 200: ServerResult;
7265 6988 /**
7266 6989 * @description
7267   - * Created
7268   - */
7269   - 201: any;
7270   - /**
7271   - * @description
7272 6990 * Unauthorized
7273 6991 */
7274 6992 401: any;
... ... @@ -7284,25 +7002,21 @@ export interface PostOrderErpRolesAuthMenuResponse {
7284 7002 404: any;
7285 7003 }
7286 7004  
7287   -export type PostOrderErpRolesAuthMenuResponseSuccess =
7288   - PostOrderErpRolesAuthMenuResponse[200];
  7005 +export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess =
  7006 + GetOrderErpOrderZoNingSelectProvinceAllResponse[200];
7289 7007 /**
7290 7008 * @description
7291   - * 授权角色菜单
7292   - * @tags 系统:角色管理
  7009 + * 查询所有省份
  7010 + * @tags order-zo-ning-controller
7293 7011 * @produces *
7294   - * @consumes application/json
7295 7012 */
7296   -export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => {
7297   - const method = 'post';
7298   - const url = '/order/erp/roles/auth_menu';
7299   - function request(
7300   - option: PostOrderErpRolesAuthMenuOption,
7301   - ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> {
  7013 +export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => {
  7014 + const method = 'get';
  7015 + const url = '/order/erp/orderZoNing/selectProvinceAll';
  7016 + function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> {
7302 7017 return requester(request.url, {
7303 7018 method: request.method,
7304   - ...option,
7305   - }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>;
  7019 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>;
7306 7020 }
7307 7021  
7308 7022 /** http method */
... ... @@ -7312,22 +7026,8 @@ export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() =&gt; {
7312 7026 return request;
7313 7027 })();
7314 7028  
7315   -/** @description request parameter type for postOrderErpRolesDelete */
7316   -export interface PostOrderErpRolesDeleteOption {
7317   - /**
7318   - * @description
7319   - * queryVO
7320   - */
7321   - body: {
7322   - /**
7323   - @description
7324   - queryVO */
7325   - queryVO: AdminRoleQueryVO;
7326   - };
7327   -}
7328   -
7329   -/** @description response type for postOrderErpRolesDelete */
7330   -export interface PostOrderErpRolesDeleteResponse {
  7029 +/** @description response type for getOrderErpOrderZoNingSelectUserAll */
  7030 +export interface GetOrderErpOrderZoNingSelectUserAllResponse {
7331 7031 /**
7332 7032 * @description
7333 7033 * OK
... ... @@ -7335,11 +7035,6 @@ export interface PostOrderErpRolesDeleteResponse {
7335 7035 200: ServerResult;
7336 7036 /**
7337 7037 * @description
7338   - * Created
7339   - */
7340   - 201: any;
7341   - /**
7342   - * @description
7343 7038 * Unauthorized
7344 7039 */
7345 7040 401: any;
... ... @@ -7355,25 +7050,21 @@ export interface PostOrderErpRolesDeleteResponse {
7355 7050 404: any;
7356 7051 }
7357 7052  
7358   -export type PostOrderErpRolesDeleteResponseSuccess =
7359   - PostOrderErpRolesDeleteResponse[200];
  7053 +export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess =
  7054 + GetOrderErpOrderZoNingSelectUserAllResponse[200];
7360 7055 /**
7361 7056 * @description
7362   - * 删除角色
7363   - * @tags 系统:角色管理
  7057 + * 查询所有销售
  7058 + * @tags order-zo-ning-controller
7364 7059 * @produces *
7365   - * @consumes application/json
7366 7060 */
7367   -export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {
7368   - const method = 'post';
7369   - const url = '/order/erp/roles/delete';
7370   - function request(
7371   - option: PostOrderErpRolesDeleteOption,
7372   - ): Promise<PostOrderErpRolesDeleteResponseSuccess> {
  7061 +export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => {
  7062 + const method = 'get';
  7063 + const url = '/order/erp/orderZoNing/selectUserAll';
  7064 + function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> {
7373 7065 return requester(request.url, {
7374 7066 method: request.method,
7375   - ...option,
7376   - }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>;
  7067 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>;
7377 7068 }
7378 7069  
7379 7070 /** http method */
... ... @@ -7383,22 +7074,22 @@ export const postOrderErpRolesDelete = /* #__PURE__ */ (() =&gt; {
7383 7074 return request;
7384 7075 })();
7385 7076  
7386   -/** @description request parameter type for postOrderErpRolesDetail */
7387   -export interface PostOrderErpRolesDetailOption {
  7077 +/** @description request parameter type for postOrderErpProfitAnalysis */
  7078 +export interface PostOrderErpProfitAnalysisOption {
7388 7079 /**
7389 7080 * @description
7390   - * queryVO
  7081 + * orderProfitAnalysisVo
7391 7082 */
7392 7083 body: {
7393 7084 /**
7394 7085 @description
7395   - queryVO */
7396   - queryVO: AdminRoleQueryVO;
  7086 + orderProfitAnalysisVo */
  7087 + orderProfitAnalysisVo: OrderProfitAnalysisVo;
7397 7088 };
7398 7089 }
7399 7090  
7400   -/** @description response type for postOrderErpRolesDetail */
7401   -export interface PostOrderErpRolesDetailResponse {
  7091 +/** @description response type for postOrderErpProfitAnalysis */
  7092 +export interface PostOrderErpProfitAnalysisResponse {
7402 7093 /**
7403 7094 * @description
7404 7095 * OK
... ... @@ -7426,25 +7117,25 @@ export interface PostOrderErpRolesDetailResponse {
7426 7117 404: any;
7427 7118 }
7428 7119  
7429   -export type PostOrderErpRolesDetailResponseSuccess =
7430   - PostOrderErpRolesDetailResponse[200];
  7120 +export type PostOrderErpProfitAnalysisResponseSuccess =
  7121 + PostOrderErpProfitAnalysisResponse[200];
7431 7122 /**
7432 7123 * @description
7433   - * 获取单个role
7434   - * @tags 系统:角色管理
  7124 + * analysis
  7125 + * @tags order-profit-controller
7435 7126 * @produces *
7436 7127 * @consumes application/json
7437 7128 */
7438   -export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {
  7129 +export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => {
7439 7130 const method = 'post';
7440   - const url = '/order/erp/roles/detail';
  7131 + const url = '/order/erp/profit/analysis';
7441 7132 function request(
7442   - option: PostOrderErpRolesDetailOption,
7443   - ): Promise<PostOrderErpRolesDetailResponseSuccess> {
  7133 + option: PostOrderErpProfitAnalysisOption,
  7134 + ): Promise<PostOrderErpProfitAnalysisResponseSuccess> {
7444 7135 return requester(request.url, {
7445 7136 method: request.method,
7446 7137 ...option,
7447   - }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>;
  7138 + }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>;
7448 7139 }
7449 7140  
7450 7141 /** http method */
... ... @@ -7454,8 +7145,8 @@ export const postOrderErpRolesDetail = /* #__PURE__ */ (() =&gt; {
7454 7145 return request;
7455 7146 })();
7456 7147  
7457   -/** @description request parameter type for postOrderErpRolesEdit */
7458   -export interface PostOrderErpRolesEditOption {
  7148 +/** @description request parameter type for postOrderErpRolesAdd */
  7149 +export interface PostOrderErpRolesAddOption {
7459 7150 /**
7460 7151 * @description
7461 7152 * roleVO
... ... @@ -7468,8 +7159,8 @@ export interface PostOrderErpRolesEditOption {
7468 7159 };
7469 7160 }
7470 7161  
7471   -/** @description response type for postOrderErpRolesEdit */
7472   -export interface PostOrderErpRolesEditResponse {
  7162 +/** @description response type for postOrderErpRolesAdd */
  7163 +export interface PostOrderErpRolesAddResponse {
7473 7164 /**
7474 7165 * @description
7475 7166 * OK
... ... @@ -7497,25 +7188,25 @@ export interface PostOrderErpRolesEditResponse {
7497 7188 404: any;
7498 7189 }
7499 7190  
7500   -export type PostOrderErpRolesEditResponseSuccess =
7501   - PostOrderErpRolesEditResponse[200];
  7191 +export type PostOrderErpRolesAddResponseSuccess =
  7192 + PostOrderErpRolesAddResponse[200];
7502 7193 /**
7503 7194 * @description
7504   - * 修改角色
  7195 + * 新增角色
7505 7196 * @tags 系统:角色管理
7506 7197 * @produces *
7507 7198 * @consumes application/json
7508 7199 */
7509   -export const postOrderErpRolesEdit = /* #__PURE__ */ (() => {
  7200 +export const postOrderErpRolesAdd = /* #__PURE__ */ (() => {
7510 7201 const method = 'post';
7511   - const url = '/order/erp/roles/edit';
  7202 + const url = '/order/erp/roles/add';
7512 7203 function request(
7513   - option: PostOrderErpRolesEditOption,
7514   - ): Promise<PostOrderErpRolesEditResponseSuccess> {
  7204 + option: PostOrderErpRolesAddOption,
  7205 + ): Promise<PostOrderErpRolesAddResponseSuccess> {
7515 7206 return requester(request.url, {
7516 7207 method: request.method,
7517 7208 ...option,
7518   - }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>;
  7209 + }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>;
7519 7210 }
7520 7211  
7521 7212 /** http method */
... ... @@ -7525,8 +7216,8 @@ export const postOrderErpRolesEdit = /* #__PURE__ */ (() =&gt; {
7525 7216 return request;
7526 7217 })();
7527 7218  
7528   -/** @description request parameter type for postOrderErpRolesListByPage */
7529   -export interface PostOrderErpRolesListByPageOption {
  7219 +/** @description request parameter type for postOrderErpRolesAll */
  7220 +export interface PostOrderErpRolesAllOption {
7530 7221 /**
7531 7222 * @description
7532 7223 * queryVO
... ... @@ -7539,8 +7230,8 @@ export interface PostOrderErpRolesListByPageOption {
7539 7230 };
7540 7231 }
7541 7232  
7542   -/** @description response type for postOrderErpRolesListByPage */
7543   -export interface PostOrderErpRolesListByPageResponse {
  7233 +/** @description response type for postOrderErpRolesAll */
  7234 +export interface PostOrderErpRolesAllResponse {
7544 7235 /**
7545 7236 * @description
7546 7237 * OK
... ... @@ -7568,25 +7259,25 @@ export interface PostOrderErpRolesListByPageResponse {
7568 7259 404: any;
7569 7260 }
7570 7261  
7571   -export type PostOrderErpRolesListByPageResponseSuccess =
7572   - PostOrderErpRolesListByPageResponse[200];
  7262 +export type PostOrderErpRolesAllResponseSuccess =
  7263 + PostOrderErpRolesAllResponse[200];
7573 7264 /**
7574 7265 * @description
7575   - * 查询角色
  7266 + * 返回全部的角色
7576 7267 * @tags 系统:角色管理
7577 7268 * @produces *
7578 7269 * @consumes application/json
7579 7270 */
7580   -export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {
  7271 +export const postOrderErpRolesAll = /* #__PURE__ */ (() => {
7581 7272 const method = 'post';
7582   - const url = '/order/erp/roles/list_by_page';
  7273 + const url = '/order/erp/roles/all';
7583 7274 function request(
7584   - option: PostOrderErpRolesListByPageOption,
7585   - ): Promise<PostOrderErpRolesListByPageResponseSuccess> {
  7275 + option: PostOrderErpRolesAllOption,
  7276 + ): Promise<PostOrderErpRolesAllResponseSuccess> {
7586 7277 return requester(request.url, {
7587 7278 method: request.method,
7588 7279 ...option,
7589   - }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>;
  7280 + }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>;
7590 7281 }
7591 7282  
7592 7283 /** http method */
... ... @@ -7596,22 +7287,22 @@ export const postOrderErpRolesListByPage = /* #__PURE__ */ (() =&gt; {
7596 7287 return request;
7597 7288 })();
7598 7289  
7599   -/** @description request parameter type for postOrderErpUsersAdd */
7600   -export interface PostOrderErpUsersAddOption {
  7290 +/** @description request parameter type for postOrderErpRolesAuthMenu */
  7291 +export interface PostOrderErpRolesAuthMenuOption {
7601 7292 /**
7602 7293 * @description
7603   - * userVO
  7294 + * roleVO
7604 7295 */
7605 7296 body: {
7606 7297 /**
7607 7298 @description
7608   - userVO */
7609   - userVO: AdminUserVO;
  7299 + roleVO */
  7300 + roleVO: AdminAuthRoleVO;
7610 7301 };
7611 7302 }
7612 7303  
7613   -/** @description response type for postOrderErpUsersAdd */
7614   -export interface PostOrderErpUsersAddResponse {
  7304 +/** @description response type for postOrderErpRolesAuthMenu */
  7305 +export interface PostOrderErpRolesAuthMenuResponse {
7615 7306 /**
7616 7307 * @description
7617 7308 * OK
... ... @@ -7639,25 +7330,25 @@ export interface PostOrderErpUsersAddResponse {
7639 7330 404: any;
7640 7331 }
7641 7332  
7642   -export type PostOrderErpUsersAddResponseSuccess =
7643   - PostOrderErpUsersAddResponse[200];
  7333 +export type PostOrderErpRolesAuthMenuResponseSuccess =
  7334 + PostOrderErpRolesAuthMenuResponse[200];
7644 7335 /**
7645 7336 * @description
7646   - * 新增用户
7647   - * @tags 系统:用户管理
  7337 + * 授权角色菜单
  7338 + * @tags 系统:角色管理
7648 7339 * @produces *
7649 7340 * @consumes application/json
7650 7341 */
7651   -export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {
  7342 +export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => {
7652 7343 const method = 'post';
7653   - const url = '/order/erp/users/add';
  7344 + const url = '/order/erp/roles/auth_menu';
7654 7345 function request(
7655   - option: PostOrderErpUsersAddOption,
7656   - ): Promise<PostOrderErpUsersAddResponseSuccess> {
  7346 + option: PostOrderErpRolesAuthMenuOption,
  7347 + ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> {
7657 7348 return requester(request.url, {
7658 7349 method: request.method,
7659 7350 ...option,
7660   - }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>;
  7351 + }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>;
7661 7352 }
7662 7353  
7663 7354 /** http method */
... ... @@ -7667,22 +7358,22 @@ export const postOrderErpUsersAdd = /* #__PURE__ */ (() =&gt; {
7667 7358 return request;
7668 7359 })();
7669 7360  
7670   -/** @description request parameter type for postOrderErpUsersAuthRole */
7671   -export interface PostOrderErpUsersAuthRoleOption {
  7361 +/** @description request parameter type for postOrderErpRolesDelete */
  7362 +export interface PostOrderErpRolesDeleteOption {
7672 7363 /**
7673 7364 * @description
7674   - * userVO
  7365 + * queryVO
7675 7366 */
7676 7367 body: {
7677 7368 /**
7678 7369 @description
7679   - userVO */
7680   - userVO: AdminAuthUserVO;
  7370 + queryVO */
  7371 + queryVO: AdminRoleQueryVO;
7681 7372 };
7682 7373 }
7683 7374  
7684   -/** @description response type for postOrderErpUsersAuthRole */
7685   -export interface PostOrderErpUsersAuthRoleResponse {
  7375 +/** @description response type for postOrderErpRolesDelete */
  7376 +export interface PostOrderErpRolesDeleteResponse {
7686 7377 /**
7687 7378 * @description
7688 7379 * OK
... ... @@ -7710,25 +7401,25 @@ export interface PostOrderErpUsersAuthRoleResponse {
7710 7401 404: any;
7711 7402 }
7712 7403  
7713   -export type PostOrderErpUsersAuthRoleResponseSuccess =
7714   - PostOrderErpUsersAuthRoleResponse[200];
  7404 +export type PostOrderErpRolesDeleteResponseSuccess =
  7405 + PostOrderErpRolesDeleteResponse[200];
7715 7406 /**
7716 7407 * @description
7717   - * 授权角色
7718   - * @tags 系统:用户管理
  7408 + * 删除角色
  7409 + * @tags 系统:角色管理
7719 7410 * @produces *
7720 7411 * @consumes application/json
7721 7412 */
7722   -export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {
  7413 +export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {
7723 7414 const method = 'post';
7724   - const url = '/order/erp/users/auth_role';
  7415 + const url = '/order/erp/roles/delete';
7725 7416 function request(
7726   - option: PostOrderErpUsersAuthRoleOption,
7727   - ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {
  7417 + option: PostOrderErpRolesDeleteOption,
  7418 + ): Promise<PostOrderErpRolesDeleteResponseSuccess> {
7728 7419 return requester(request.url, {
7729 7420 method: request.method,
7730 7421 ...option,
7731   - }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>;
  7422 + }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>;
7732 7423 }
7733 7424  
7734 7425 /** http method */
... ... @@ -7738,8 +7429,8 @@ export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() =&gt; {
7738 7429 return request;
7739 7430 })();
7740 7431  
7741   -/** @description request parameter type for postOrderErpUsersDelete */
7742   -export interface PostOrderErpUsersDeleteOption {
  7432 +/** @description request parameter type for postOrderErpRolesDetail */
  7433 +export interface PostOrderErpRolesDetailOption {
7743 7434 /**
7744 7435 * @description
7745 7436 * queryVO
... ... @@ -7748,12 +7439,12 @@ export interface PostOrderErpUsersDeleteOption {
7748 7439 /**
7749 7440 @description
7750 7441 queryVO */
7751   - queryVO: AdminUserQueryVO;
  7442 + queryVO: AdminRoleQueryVO;
7752 7443 };
7753 7444 }
7754 7445  
7755   -/** @description response type for postOrderErpUsersDelete */
7756   -export interface PostOrderErpUsersDeleteResponse {
  7446 +/** @description response type for postOrderErpRolesDetail */
  7447 +export interface PostOrderErpRolesDetailResponse {
7757 7448 /**
7758 7449 * @description
7759 7450 * OK
... ... @@ -7781,25 +7472,25 @@ export interface PostOrderErpUsersDeleteResponse {
7781 7472 404: any;
7782 7473 }
7783 7474  
7784   -export type PostOrderErpUsersDeleteResponseSuccess =
7785   - PostOrderErpUsersDeleteResponse[200];
  7475 +export type PostOrderErpRolesDetailResponseSuccess =
  7476 + PostOrderErpRolesDetailResponse[200];
7786 7477 /**
7787 7478 * @description
7788   - * 删除用户
7789   - * @tags 系统:用户管理
  7479 + * 获取单个role
  7480 + * @tags 系统:角色管理
7790 7481 * @produces *
7791 7482 * @consumes application/json
7792 7483 */
7793   -export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {
  7484 +export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {
7794 7485 const method = 'post';
7795   - const url = '/order/erp/users/delete';
  7486 + const url = '/order/erp/roles/detail';
7796 7487 function request(
7797   - option: PostOrderErpUsersDeleteOption,
7798   - ): Promise<PostOrderErpUsersDeleteResponseSuccess> {
  7488 + option: PostOrderErpRolesDetailOption,
  7489 + ): Promise<PostOrderErpRolesDetailResponseSuccess> {
7799 7490 return requester(request.url, {
7800 7491 method: request.method,
7801 7492 ...option,
7802   - }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>;
  7493 + }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>;
7803 7494 }
7804 7495  
7805 7496 /** http method */
... ... @@ -7809,22 +7500,22 @@ export const postOrderErpUsersDelete = /* #__PURE__ */ (() =&gt; {
7809 7500 return request;
7810 7501 })();
7811 7502  
7812   -/** @description request parameter type for postOrderErpUsersEdit */
7813   -export interface PostOrderErpUsersEditOption {
  7503 +/** @description request parameter type for postOrderErpRolesEdit */
  7504 +export interface PostOrderErpRolesEditOption {
7814 7505 /**
7815 7506 * @description
7816   - * userVO
  7507 + * roleVO
7817 7508 */
7818 7509 body: {
7819 7510 /**
7820 7511 @description
7821   - userVO */
7822   - userVO: AdminUserVO;
  7512 + roleVO */
  7513 + roleVO: AdminRoleVO;
7823 7514 };
7824 7515 }
7825 7516  
7826   -/** @description response type for postOrderErpUsersEdit */
7827   -export interface PostOrderErpUsersEditResponse {
  7517 +/** @description response type for postOrderErpRolesEdit */
  7518 +export interface PostOrderErpRolesEditResponse {
7828 7519 /**
7829 7520 * @description
7830 7521 * OK
... ... @@ -7852,25 +7543,25 @@ export interface PostOrderErpUsersEditResponse {
7852 7543 404: any;
7853 7544 }
7854 7545  
7855   -export type PostOrderErpUsersEditResponseSuccess =
7856   - PostOrderErpUsersEditResponse[200];
  7546 +export type PostOrderErpRolesEditResponseSuccess =
  7547 + PostOrderErpRolesEditResponse[200];
7857 7548 /**
7858 7549 * @description
7859   - * 修改用户
7860   - * @tags 系统:用户管理
  7550 + * 修改角色
  7551 + * @tags 系统:角色管理
7861 7552 * @produces *
7862 7553 * @consumes application/json
7863 7554 */
7864   -export const postOrderErpUsersEdit = /* #__PURE__ */ (() => {
  7555 +export const postOrderErpRolesEdit = /* #__PURE__ */ (() => {
7865 7556 const method = 'post';
7866   - const url = '/order/erp/users/edit';
  7557 + const url = '/order/erp/roles/edit';
7867 7558 function request(
7868   - option: PostOrderErpUsersEditOption,
7869   - ): Promise<PostOrderErpUsersEditResponseSuccess> {
  7559 + option: PostOrderErpRolesEditOption,
  7560 + ): Promise<PostOrderErpRolesEditResponseSuccess> {
7870 7561 return requester(request.url, {
7871 7562 method: request.method,
7872 7563 ...option,
7873   - }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>;
  7564 + }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>;
7874 7565 }
7875 7566  
7876 7567 /** http method */
... ... @@ -7880,8 +7571,8 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() =&gt; {
7880 7571 return request;
7881 7572 })();
7882 7573  
7883   -/** @description request parameter type for postOrderErpUsersListByPage */
7884   -export interface PostOrderErpUsersListByPageOption {
  7574 +/** @description request parameter type for postOrderErpRolesListByPage */
  7575 +export interface PostOrderErpRolesListByPageOption {
7885 7576 /**
7886 7577 * @description
7887 7578 * queryVO
... ... @@ -7890,12 +7581,12 @@ export interface PostOrderErpUsersListByPageOption {
7890 7581 /**
7891 7582 @description
7892 7583 queryVO */
7893   - queryVO: AdminUserQueryVO;
  7584 + queryVO: AdminRoleQueryVO;
7894 7585 };
7895 7586 }
7896 7587  
7897   -/** @description response type for postOrderErpUsersListByPage */
7898   -export interface PostOrderErpUsersListByPageResponse {
  7588 +/** @description response type for postOrderErpRolesListByPage */
  7589 +export interface PostOrderErpRolesListByPageResponse {
7899 7590 /**
7900 7591 * @description
7901 7592 * OK
... ... @@ -7923,25 +7614,25 @@ export interface PostOrderErpUsersListByPageResponse {
7923 7614 404: any;
7924 7615 }
7925 7616  
7926   -export type PostOrderErpUsersListByPageResponseSuccess =
7927   - PostOrderErpUsersListByPageResponse[200];
  7617 +export type PostOrderErpRolesListByPageResponseSuccess =
  7618 + PostOrderErpRolesListByPageResponse[200];
7928 7619 /**
7929 7620 * @description
7930   - * 查询用户
7931   - * @tags 系统:用户管理
  7621 + * 查询角色
  7622 + * @tags 系统:角色管理
7932 7623 * @produces *
7933 7624 * @consumes application/json
7934 7625 */
7935   -export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => {
  7626 +export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {
7936 7627 const method = 'post';
7937   - const url = '/order/erp/users/list_by_page';
  7628 + const url = '/order/erp/roles/list_by_page';
7938 7629 function request(
7939   - option: PostOrderErpUsersListByPageOption,
7940   - ): Promise<PostOrderErpUsersListByPageResponseSuccess> {
  7630 + option: PostOrderErpRolesListByPageOption,
  7631 + ): Promise<PostOrderErpRolesListByPageResponseSuccess> {
7941 7632 return requester(request.url, {
7942 7633 method: request.method,
7943 7634 ...option,
7944   - }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>;
  7635 + }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>;
7945 7636 }
7946 7637  
7947 7638 /** http method */
... ... @@ -7951,22 +7642,22 @@ export const postOrderErpUsersListByPage = /* #__PURE__ */ (() =&gt; {
7951 7642 return request;
7952 7643 })();
7953 7644  
7954   -/** @description request parameter type for postOrderErpUsersReset */
7955   -export interface PostOrderErpUsersResetOption {
  7645 +/** @description request parameter type for postOrderErpUsersAdd */
  7646 +export interface PostOrderErpUsersAddOption {
7956 7647 /**
7957 7648 * @description
7958   - * resetPwdVO
  7649 + * userVO
7959 7650 */
7960 7651 body: {
7961 7652 /**
7962 7653 @description
7963   - resetPwdVO */
7964   - resetPwdVO: ResetPwdVO;
  7654 + userVO */
  7655 + userVO: AdminUserVO;
7965 7656 };
7966 7657 }
7967 7658  
7968   -/** @description response type for postOrderErpUsersReset */
7969   -export interface PostOrderErpUsersResetResponse {
  7659 +/** @description response type for postOrderErpUsersAdd */
  7660 +export interface PostOrderErpUsersAddResponse {
7970 7661 /**
7971 7662 * @description
7972 7663 * OK
... ... @@ -7994,25 +7685,25 @@ export interface PostOrderErpUsersResetResponse {
7994 7685 404: any;
7995 7686 }
7996 7687  
7997   -export type PostOrderErpUsersResetResponseSuccess =
7998   - PostOrderErpUsersResetResponse[200];
  7688 +export type PostOrderErpUsersAddResponseSuccess =
  7689 + PostOrderErpUsersAddResponse[200];
7999 7690 /**
8000 7691 * @description
8001   - * 重置密码
  7692 + * 新增用户
8002 7693 * @tags 系统:用户管理
8003 7694 * @produces *
8004 7695 * @consumes application/json
8005 7696 */
8006   -export const postOrderErpUsersReset = /* #__PURE__ */ (() => {
  7697 +export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {
8007 7698 const method = 'post';
8008   - const url = '/order/erp/users/reset';
  7699 + const url = '/order/erp/users/add';
8009 7700 function request(
8010   - option: PostOrderErpUsersResetOption,
8011   - ): Promise<PostOrderErpUsersResetResponseSuccess> {
  7701 + option: PostOrderErpUsersAddOption,
  7702 + ): Promise<PostOrderErpUsersAddResponseSuccess> {
8012 7703 return requester(request.url, {
8013 7704 method: request.method,
8014 7705 ...option,
8015   - }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>;
  7706 + }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>;
8016 7707 }
8017 7708  
8018 7709 /** http method */
... ... @@ -8022,22 +7713,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() =&gt; {
8022 7713 return request;
8023 7714 })();
8024 7715  
8025   -/** @description request parameter type for postOrderErpUsersUpdatePass */
8026   -export interface PostOrderErpUsersUpdatePassOption {
  7716 +/** @description request parameter type for postOrderErpUsersAuthRole */
  7717 +export interface PostOrderErpUsersAuthRoleOption {
8027 7718 /**
8028 7719 * @description
8029   - * pwdVO
  7720 + * userVO
8030 7721 */
8031 7722 body: {
8032 7723 /**
8033 7724 @description
8034   - pwdVO */
8035   - pwdVO: UpdatePwdVO;
  7725 + userVO */
  7726 + userVO: AdminAuthUserVO;
8036 7727 };
8037 7728 }
8038 7729  
8039   -/** @description response type for postOrderErpUsersUpdatePass */
8040   -export interface PostOrderErpUsersUpdatePassResponse {
  7730 +/** @description response type for postOrderErpUsersAuthRole */
  7731 +export interface PostOrderErpUsersAuthRoleResponse {
8041 7732 /**
8042 7733 * @description
8043 7734 * OK
... ... @@ -8065,25 +7756,25 @@ export interface PostOrderErpUsersUpdatePassResponse {
8065 7756 404: any;
8066 7757 }
8067 7758  
8068   -export type PostOrderErpUsersUpdatePassResponseSuccess =
8069   - PostOrderErpUsersUpdatePassResponse[200];
  7759 +export type PostOrderErpUsersAuthRoleResponseSuccess =
  7760 + PostOrderErpUsersAuthRoleResponse[200];
8070 7761 /**
8071 7762 * @description
8072   - * 修改密码
  7763 + * 授权角色
8073 7764 * @tags 系统:用户管理
8074 7765 * @produces *
8075 7766 * @consumes application/json
8076 7767 */
8077   -export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => {
  7768 +export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {
8078 7769 const method = 'post';
8079   - const url = '/order/erp/users/update_pass';
  7770 + const url = '/order/erp/users/auth_role';
8080 7771 function request(
8081   - option: PostOrderErpUsersUpdatePassOption,
8082   - ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> {
  7772 + option: PostOrderErpUsersAuthRoleOption,
  7773 + ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {
8083 7774 return requester(request.url, {
8084 7775 method: request.method,
8085 7776 ...option,
8086   - }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>;
  7777 + }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>;
8087 7778 }
8088 7779  
8089 7780 /** http method */
... ... @@ -8093,22 +7784,22 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() =&gt; {
8093 7784 return request;
8094 7785 })();
8095 7786  
8096   -/** @description request parameter type for postOrderImportImportWeightAndVolume */
8097   -export interface PostOrderImportImportWeightAndVolumeOption {
  7787 +/** @description request parameter type for postOrderErpUsersDelete */
  7788 +export interface PostOrderErpUsersDeleteOption {
8098 7789 /**
8099 7790 * @description
8100   - * file
  7791 + * queryVO
8101 7792 */
8102   - formData: {
  7793 + body: {
8103 7794 /**
8104 7795 @description
8105   - file */
8106   - file: File;
  7796 + queryVO */
  7797 + queryVO: AdminUserQueryVO;
8107 7798 };
8108 7799 }
8109 7800  
8110   -/** @description response type for postOrderImportImportWeightAndVolume */
8111   -export interface PostOrderImportImportWeightAndVolumeResponse {
  7801 +/** @description response type for postOrderErpUsersDelete */
  7802 +export interface PostOrderErpUsersDeleteResponse {
8112 7803 /**
8113 7804 * @description
8114 7805 * OK
... ... @@ -8136,25 +7827,25 @@ export interface PostOrderImportImportWeightAndVolumeResponse {
8136 7827 404: any;
8137 7828 }
8138 7829  
8139   -export type PostOrderImportImportWeightAndVolumeResponseSuccess =
8140   - PostOrderImportImportWeightAndVolumeResponse[200];
  7830 +export type PostOrderErpUsersDeleteResponseSuccess =
  7831 + PostOrderErpUsersDeleteResponse[200];
8141 7832 /**
8142 7833 * @description
8143   - * 导入重量和体积
8144   - * @tags 导入
  7834 + * 删除用户
  7835 + * @tags 系统:用户管理
8145 7836 * @produces *
8146   - * @consumes multipart/form-data
  7837 + * @consumes application/json
8147 7838 */
8148   -export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => {
  7839 +export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {
8149 7840 const method = 'post';
8150   - const url = '/order/import/importWeightAndVolume';
  7841 + const url = '/order/erp/users/delete';
8151 7842 function request(
8152   - option: PostOrderImportImportWeightAndVolumeOption,
8153   - ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> {
  7843 + option: PostOrderErpUsersDeleteOption,
  7844 + ): Promise<PostOrderErpUsersDeleteResponseSuccess> {
8154 7845 return requester(request.url, {
8155 7846 method: request.method,
8156 7847 ...option,
8157   - }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>;
  7848 + }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>;
8158 7849 }
8159 7850  
8160 7851 /** http method */
... ... @@ -8164,22 +7855,22 @@ export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() =&gt; {
8164 7855 return request;
8165 7856 })();
8166 7857  
8167   -/** @description request parameter type for postPrepaidAudit */
8168   -export interface PostPrepaidAuditOption {
  7858 +/** @description request parameter type for postOrderErpUsersEdit */
  7859 +export interface PostOrderErpUsersEditOption {
8169 7860 /**
8170 7861 * @description
8171   - * request
  7862 + * userVO
8172 7863 */
8173 7864 body: {
8174 7865 /**
8175 7866 @description
8176   - request */
8177   - request: SalesRechargePrepaymentAuditRequest;
  7867 + userVO */
  7868 + userVO: AdminUserVO;
8178 7869 };
8179 7870 }
8180 7871  
8181   -/** @description response type for postPrepaidAudit */
8182   -export interface PostPrepaidAuditResponse {
  7872 +/** @description response type for postOrderErpUsersEdit */
  7873 +export interface PostOrderErpUsersEditResponse {
8183 7874 /**
8184 7875 * @description
8185 7876 * OK
... ... @@ -8207,24 +7898,25 @@ export interface PostPrepaidAuditResponse {
8207 7898 404: any;
8208 7899 }
8209 7900  
8210   -export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200];
  7901 +export type PostOrderErpUsersEditResponseSuccess =
  7902 + PostOrderErpUsersEditResponse[200];
8211 7903 /**
8212 7904 * @description
8213   - * 财务审核
8214   - * @tags prepaid-controller
  7905 + * 修改用户
  7906 + * @tags 系统:用户管理
8215 7907 * @produces *
8216 7908 * @consumes application/json
8217 7909 */
8218   -export const postPrepaidAudit = /* #__PURE__ */ (() => {
  7910 +export const postOrderErpUsersEdit = /* #__PURE__ */ (() => {
8219 7911 const method = 'post';
8220   - const url = '/prepaid/audit';
  7912 + const url = '/order/erp/users/edit';
8221 7913 function request(
8222   - option: PostPrepaidAuditOption,
8223   - ): Promise<PostPrepaidAuditResponseSuccess> {
  7914 + option: PostOrderErpUsersEditOption,
  7915 + ): Promise<PostOrderErpUsersEditResponseSuccess> {
8224 7916 return requester(request.url, {
8225 7917 method: request.method,
8226 7918 ...option,
8227   - }) as unknown as Promise<PostPrepaidAuditResponseSuccess>;
  7919 + }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>;
8228 7920 }
8229 7921  
8230 7922 /** http method */
... ... @@ -8234,22 +7926,22 @@ export const postPrepaidAudit = /* #__PURE__ */ (() =&gt; {
8234 7926 return request;
8235 7927 })();
8236 7928  
8237   -/** @description request parameter type for postPrepaidCreate */
8238   -export interface PostPrepaidCreateOption {
  7929 +/** @description request parameter type for postOrderErpUsersListByPage */
  7930 +export interface PostOrderErpUsersListByPageOption {
8239 7931 /**
8240 7932 * @description
8241   - * request
  7933 + * queryVO
8242 7934 */
8243 7935 body: {
8244 7936 /**
8245 7937 @description
8246   - request */
8247   - request: SalesRechargePrepaymentCreateRequest;
  7938 + queryVO */
  7939 + queryVO: AdminUserQueryVO;
8248 7940 };
8249 7941 }
8250 7942  
8251   -/** @description response type for postPrepaidCreate */
8252   -export interface PostPrepaidCreateResponse {
  7943 +/** @description response type for postOrderErpUsersListByPage */
  7944 +export interface PostOrderErpUsersListByPageResponse {
8253 7945 /**
8254 7946 * @description
8255 7947 * OK
... ... @@ -8277,24 +7969,25 @@ export interface PostPrepaidCreateResponse {
8277 7969 404: any;
8278 7970 }
8279 7971  
8280   -export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200];
  7972 +export type PostOrderErpUsersListByPageResponseSuccess =
  7973 + PostOrderErpUsersListByPageResponse[200];
8281 7974 /**
8282 7975 * @description
8283   - * 新增预存
8284   - * @tags prepaid-controller
  7976 + * 查询用户
  7977 + * @tags 系统:用户管理
8285 7978 * @produces *
8286 7979 * @consumes application/json
8287 7980 */
8288   -export const postPrepaidCreate = /* #__PURE__ */ (() => {
  7981 +export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => {
8289 7982 const method = 'post';
8290   - const url = '/prepaid/create';
  7983 + const url = '/order/erp/users/list_by_page';
8291 7984 function request(
8292   - option: PostPrepaidCreateOption,
8293   - ): Promise<PostPrepaidCreateResponseSuccess> {
  7985 + option: PostOrderErpUsersListByPageOption,
  7986 + ): Promise<PostOrderErpUsersListByPageResponseSuccess> {
8294 7987 return requester(request.url, {
8295 7988 method: request.method,
8296 7989 ...option,
8297   - }) as unknown as Promise<PostPrepaidCreateResponseSuccess>;
  7990 + }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>;
8298 7991 }
8299 7992  
8300 7993 /** http method */
... ... @@ -8304,22 +7997,22 @@ export const postPrepaidCreate = /* #__PURE__ */ (() =&gt; {
8304 7997 return request;
8305 7998 })();
8306 7999  
8307   -/** @description request parameter type for postPrepaidDelete */
8308   -export interface PostPrepaidDeleteOption {
  8000 +/** @description request parameter type for postOrderErpUsersReset */
  8001 +export interface PostOrderErpUsersResetOption {
8309 8002 /**
8310 8003 * @description
8311   - * request
  8004 + * resetPwdVO
8312 8005 */
8313 8006 body: {
8314 8007 /**
8315 8008 @description
8316   - request */
8317   - request: SalesRechargePrepaymentDeleteRequest;
  8009 + resetPwdVO */
  8010 + resetPwdVO: ResetPwdVO;
8318 8011 };
8319 8012 }
8320 8013  
8321   -/** @description response type for postPrepaidDelete */
8322   -export interface PostPrepaidDeleteResponse {
  8014 +/** @description response type for postOrderErpUsersReset */
  8015 +export interface PostOrderErpUsersResetResponse {
8323 8016 /**
8324 8017 * @description
8325 8018 * OK
... ... @@ -8347,24 +8040,25 @@ export interface PostPrepaidDeleteResponse {
8347 8040 404: any;
8348 8041 }
8349 8042  
8350   -export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200];
  8043 +export type PostOrderErpUsersResetResponseSuccess =
  8044 + PostOrderErpUsersResetResponse[200];
8351 8045 /**
8352 8046 * @description
8353   - * 删除预存
8354   - * @tags prepaid-controller
  8047 + * 重置密码
  8048 + * @tags 系统:用户管理
8355 8049 * @produces *
8356 8050 * @consumes application/json
8357 8051 */
8358   -export const postPrepaidDelete = /* #__PURE__ */ (() => {
  8052 +export const postOrderErpUsersReset = /* #__PURE__ */ (() => {
8359 8053 const method = 'post';
8360   - const url = '/prepaid/delete';
  8054 + const url = '/order/erp/users/reset';
8361 8055 function request(
8362   - option: PostPrepaidDeleteOption,
8363   - ): Promise<PostPrepaidDeleteResponseSuccess> {
  8056 + option: PostOrderErpUsersResetOption,
  8057 + ): Promise<PostOrderErpUsersResetResponseSuccess> {
8364 8058 return requester(request.url, {
8365 8059 method: request.method,
8366 8060 ...option,
8367   - }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>;
  8061 + }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>;
8368 8062 }
8369 8063  
8370 8064 /** http method */
... ... @@ -8374,22 +8068,22 @@ export const postPrepaidDelete = /* #__PURE__ */ (() =&gt; {
8374 8068 return request;
8375 8069 })();
8376 8070  
8377   -/** @description request parameter type for postPrepaidList */
8378   -export interface PostPrepaidListOption {
  8071 +/** @description request parameter type for postOrderErpUsersUpdatePass */
  8072 +export interface PostOrderErpUsersUpdatePassOption {
8379 8073 /**
8380 8074 * @description
8381   - * request
  8075 + * pwdVO
8382 8076 */
8383 8077 body: {
8384 8078 /**
8385 8079 @description
8386   - request */
8387   - request: SalesRechargePrepaymentRequest;
8388   - };
  8080 + pwdVO */
  8081 + pwdVO: UpdatePwdVO;
  8082 + };
8389 8083 }
8390 8084  
8391   -/** @description response type for postPrepaidList */
8392   -export interface PostPrepaidListResponse {
  8085 +/** @description response type for postOrderErpUsersUpdatePass */
  8086 +export interface PostOrderErpUsersUpdatePassResponse {
8393 8087 /**
8394 8088 * @description
8395 8089 * OK
... ... @@ -8417,24 +8111,25 @@ export interface PostPrepaidListResponse {
8417 8111 404: any;
8418 8112 }
8419 8113  
8420   -export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200];
  8114 +export type PostOrderErpUsersUpdatePassResponseSuccess =
  8115 + PostOrderErpUsersUpdatePassResponse[200];
8421 8116 /**
8422 8117 * @description
8423   - * 查询列表
8424   - * @tags prepaid-controller
  8118 + * 修改密码
  8119 + * @tags 系统:用户管理
8425 8120 * @produces *
8426 8121 * @consumes application/json
8427 8122 */
8428   -export const postPrepaidList = /* #__PURE__ */ (() => {
  8123 +export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => {
8429 8124 const method = 'post';
8430   - const url = '/prepaid/list';
  8125 + const url = '/order/erp/users/update_pass';
8431 8126 function request(
8432   - option: PostPrepaidListOption,
8433   - ): Promise<PostPrepaidListResponseSuccess> {
  8127 + option: PostOrderErpUsersUpdatePassOption,
  8128 + ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> {
8434 8129 return requester(request.url, {
8435 8130 method: request.method,
8436 8131 ...option,
8437   - }) as unknown as Promise<PostPrepaidListResponseSuccess>;
  8132 + }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>;
8438 8133 }
8439 8134  
8440 8135 /** http method */
... ... @@ -8444,22 +8139,22 @@ export const postPrepaidList = /* #__PURE__ */ (() =&gt; {
8444 8139 return request;
8445 8140 })();
8446 8141  
8447   -/** @description request parameter type for postPrepaidPhoneAvailableList */
8448   -export interface PostPrepaidPhoneAvailableListOption {
  8142 +/** @description request parameter type for postOrderImportImportInvoiceProject */
  8143 +export interface PostOrderImportImportInvoiceProjectOption {
8449 8144 /**
8450 8145 * @description
8451   - * request
  8146 + * file
8452 8147 */
8453   - body: {
  8148 + formData: {
8454 8149 /**
8455 8150 @description
8456   - request */
8457   - request: SalesRechargePrepaymentAuditRequest;
  8151 + file */
  8152 + file: File;
8458 8153 };
8459 8154 }
8460 8155  
8461   -/** @description response type for postPrepaidPhoneAvailableList */
8462   -export interface PostPrepaidPhoneAvailableListResponse {
  8156 +/** @description response type for postOrderImportImportInvoiceProject */
  8157 +export interface PostOrderImportImportInvoiceProjectResponse {
8463 8158 /**
8464 8159 * @description
8465 8160 * OK
... ... @@ -8487,25 +8182,25 @@ export interface PostPrepaidPhoneAvailableListResponse {
8487 8182 404: any;
8488 8183 }
8489 8184  
8490   -export type PostPrepaidPhoneAvailableListResponseSuccess =
8491   - PostPrepaidPhoneAvailableListResponse[200];
  8185 +export type PostOrderImportImportInvoiceProjectResponseSuccess =
  8186 + PostOrderImportImportInvoiceProjectResponse[200];
8492 8187 /**
8493 8188 * @description
8494   - * 财务审核
8495   - * @tags prepaid-controller
  8189 + * 导入发票项目
  8190 + * @tags 导入
8496 8191 * @produces *
8497   - * @consumes application/json
  8192 + * @consumes multipart/form-data
8498 8193 */
8499   -export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => {
  8194 +export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() => {
8500 8195 const method = 'post';
8501   - const url = '/prepaid/phone/available/list';
  8196 + const url = '/order/import/importInvoiceProject';
8502 8197 function request(
8503   - option: PostPrepaidPhoneAvailableListOption,
8504   - ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> {
  8198 + option: PostOrderImportImportInvoiceProjectOption,
  8199 + ): Promise<PostOrderImportImportInvoiceProjectResponseSuccess> {
8505 8200 return requester(request.url, {
8506 8201 method: request.method,
8507 8202 ...option,
8508   - }) as unknown as Promise<PostPrepaidPhoneAvailableListResponseSuccess>;
  8203 + }) as unknown as Promise<PostOrderImportImportInvoiceProjectResponseSuccess>;
8509 8204 }
8510 8205  
8511 8206 /** http method */
... ... @@ -8515,22 +8210,22 @@ export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() =&gt; {
8515 8210 return request;
8516 8211 })();
8517 8212  
8518   -/** @description request parameter type for postPrepaidUpdate */
8519   -export interface PostPrepaidUpdateOption {
  8213 +/** @description request parameter type for postOrderImportImportWeightAndVolume */
  8214 +export interface PostOrderImportImportWeightAndVolumeOption {
8520 8215 /**
8521 8216 * @description
8522   - * request
  8217 + * file
8523 8218 */
8524   - body: {
  8219 + formData: {
8525 8220 /**
8526 8221 @description
8527   - request */
8528   - request: SalesRechargePrepaymentUpdateRequest;
  8222 + file */
  8223 + file: File;
8529 8224 };
8530 8225 }
8531 8226  
8532   -/** @description response type for postPrepaidUpdate */
8533   -export interface PostPrepaidUpdateResponse {
  8227 +/** @description response type for postOrderImportImportWeightAndVolume */
  8228 +export interface PostOrderImportImportWeightAndVolumeResponse {
8534 8229 /**
8535 8230 * @description
8536 8231 * OK
... ... @@ -8558,24 +8253,25 @@ export interface PostPrepaidUpdateResponse {
8558 8253 404: any;
8559 8254 }
8560 8255  
8561   -export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200];
  8256 +export type PostOrderImportImportWeightAndVolumeResponseSuccess =
  8257 + PostOrderImportImportWeightAndVolumeResponse[200];
8562 8258 /**
8563 8259 * @description
8564   - * 修改预存
8565   - * @tags prepaid-controller
  8260 + * 导入重量和体积
  8261 + * @tags 导入
8566 8262 * @produces *
8567   - * @consumes application/json
  8263 + * @consumes multipart/form-data
8568 8264 */
8569   -export const postPrepaidUpdate = /* #__PURE__ */ (() => {
  8265 +export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => {
8570 8266 const method = 'post';
8571   - const url = '/prepaid/update';
  8267 + const url = '/order/import/importWeightAndVolume';
8572 8268 function request(
8573   - option: PostPrepaidUpdateOption,
8574   - ): Promise<PostPrepaidUpdateResponseSuccess> {
  8269 + option: PostOrderImportImportWeightAndVolumeOption,
  8270 + ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> {
8575 8271 return requester(request.url, {
8576 8272 method: request.method,
8577 8273 ...option,
8578   - }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>;
  8274 + }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>;
8579 8275 }
8580 8276  
8581 8277 /** http method */
... ... @@ -8585,8 +8281,8 @@ export const postPrepaidUpdate = /* #__PURE__ */ (() =&gt; {
8585 8281 return request;
8586 8282 })();
8587 8283  
8588   -/** @description request parameter type for postResearchGroupMemberRequestsAdd */
8589   -export interface PostResearchGroupMemberRequestsAddOption {
  8284 +/** @description request parameter type for postPrepaidAudit */
  8285 +export interface PostPrepaidAuditOption {
8590 8286 /**
8591 8287 * @description
8592 8288 * request
... ... @@ -8595,12 +8291,12 @@ export interface PostResearchGroupMemberRequestsAddOption {
8595 8291 /**
8596 8292 @description
8597 8293 request */
8598   - request: ResearchGroupMemberRequestAddRequest;
  8294 + request: SalesRechargePrepaymentAuditRequest;
8599 8295 };
8600 8296 }
8601 8297  
8602   -/** @description response type for postResearchGroupMemberRequestsAdd */
8603   -export interface PostResearchGroupMemberRequestsAddResponse {
  8298 +/** @description response type for postPrepaidAudit */
  8299 +export interface PostPrepaidAuditResponse {
8604 8300 /**
8605 8301 * @description
8606 8302 * OK
... ... @@ -8628,25 +8324,24 @@ export interface PostResearchGroupMemberRequestsAddResponse {
8628 8324 404: any;
8629 8325 }
8630 8326  
8631   -export type PostResearchGroupMemberRequestsAddResponseSuccess =
8632   - PostResearchGroupMemberRequestsAddResponse[200];
  8327 +export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200];
8633 8328 /**
8634 8329 * @description
8635   - * 新增申请信息
8636   - * @tags research-group-member-requests-controller
  8330 + * 财务审核
  8331 + * @tags prepaid-controller
8637 8332 * @produces *
8638 8333 * @consumes application/json
8639 8334 */
8640   -export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => {
  8335 +export const postPrepaidAudit = /* #__PURE__ */ (() => {
8641 8336 const method = 'post';
8642   - const url = '/research/group/member/requests/add';
  8337 + const url = '/prepaid/audit';
8643 8338 function request(
8644   - option: PostResearchGroupMemberRequestsAddOption,
8645   - ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> {
  8339 + option: PostPrepaidAuditOption,
  8340 + ): Promise<PostPrepaidAuditResponseSuccess> {
8646 8341 return requester(request.url, {
8647 8342 method: request.method,
8648 8343 ...option,
8649   - }) as unknown as Promise<PostResearchGroupMemberRequestsAddResponseSuccess>;
  8344 + }) as unknown as Promise<PostPrepaidAuditResponseSuccess>;
8650 8345 }
8651 8346  
8652 8347 /** http method */
... ... @@ -8656,8 +8351,8 @@ export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() =&gt; {
8656 8351 return request;
8657 8352 })();
8658 8353  
8659   -/** @description request parameter type for postResearchGroupMemberRequestsDelete */
8660   -export interface PostResearchGroupMemberRequestsDeleteOption {
  8354 +/** @description request parameter type for postPrepaidCreate */
  8355 +export interface PostPrepaidCreateOption {
8661 8356 /**
8662 8357 * @description
8663 8358 * request
... ... @@ -8666,12 +8361,12 @@ export interface PostResearchGroupMemberRequestsDeleteOption {
8666 8361 /**
8667 8362 @description
8668 8363 request */
8669   - request: ResearchGroupMemberRequestDeleteRequest;
  8364 + request: SalesRechargePrepaymentCreateRequest;
8670 8365 };
8671 8366 }
8672 8367  
8673   -/** @description response type for postResearchGroupMemberRequestsDelete */
8674   -export interface PostResearchGroupMemberRequestsDeleteResponse {
  8368 +/** @description response type for postPrepaidCreate */
  8369 +export interface PostPrepaidCreateResponse {
8675 8370 /**
8676 8371 * @description
8677 8372 * OK
... ... @@ -8699,25 +8394,24 @@ export interface PostResearchGroupMemberRequestsDeleteResponse {
8699 8394 404: any;
8700 8395 }
8701 8396  
8702   -export type PostResearchGroupMemberRequestsDeleteResponseSuccess =
8703   - PostResearchGroupMemberRequestsDeleteResponse[200];
  8397 +export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200];
8704 8398 /**
8705 8399 * @description
8706   - * 删除申请信息
8707   - * @tags research-group-member-requests-controller
  8400 + * 新增预存
  8401 + * @tags prepaid-controller
8708 8402 * @produces *
8709 8403 * @consumes application/json
8710 8404 */
8711   -export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => {
  8405 +export const postPrepaidCreate = /* #__PURE__ */ (() => {
8712 8406 const method = 'post';
8713   - const url = '/research/group/member/requests/delete';
  8407 + const url = '/prepaid/create';
8714 8408 function request(
8715   - option: PostResearchGroupMemberRequestsDeleteOption,
8716   - ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> {
  8409 + option: PostPrepaidCreateOption,
  8410 + ): Promise<PostPrepaidCreateResponseSuccess> {
8717 8411 return requester(request.url, {
8718 8412 method: request.method,
8719 8413 ...option,
8720   - }) as unknown as Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess>;
  8414 + }) as unknown as Promise<PostPrepaidCreateResponseSuccess>;
8721 8415 }
8722 8416  
8723 8417 /** http method */
... ... @@ -8727,8 +8421,8 @@ export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() =&gt; {
8727 8421 return request;
8728 8422 })();
8729 8423  
8730   -/** @description request parameter type for postResearchGroupMemberRequestsDetail */
8731   -export interface PostResearchGroupMemberRequestsDetailOption {
  8424 +/** @description request parameter type for postPrepaidDelete */
  8425 +export interface PostPrepaidDeleteOption {
8732 8426 /**
8733 8427 * @description
8734 8428 * request
... ... @@ -8737,12 +8431,12 @@ export interface PostResearchGroupMemberRequestsDetailOption {
8737 8431 /**
8738 8432 @description
8739 8433 request */
8740   - request: ResearchGroupMemberRequestDetailRequest;
  8434 + request: SalesRechargePrepaymentDeleteRequest;
8741 8435 };
8742 8436 }
8743 8437  
8744   -/** @description response type for postResearchGroupMemberRequestsDetail */
8745   -export interface PostResearchGroupMemberRequestsDetailResponse {
  8438 +/** @description response type for postPrepaidDelete */
  8439 +export interface PostPrepaidDeleteResponse {
8746 8440 /**
8747 8441 * @description
8748 8442 * OK
... ... @@ -8770,25 +8464,24 @@ export interface PostResearchGroupMemberRequestsDetailResponse {
8770 8464 404: any;
8771 8465 }
8772 8466  
8773   -export type PostResearchGroupMemberRequestsDetailResponseSuccess =
8774   - PostResearchGroupMemberRequestsDetailResponse[200];
  8467 +export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200];
8775 8468 /**
8776 8469 * @description
8777   - * 查询申请信息
8778   - * @tags research-group-member-requests-controller
  8470 + * 删除预存
  8471 + * @tags prepaid-controller
8779 8472 * @produces *
8780 8473 * @consumes application/json
8781 8474 */
8782   -export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => {
  8475 +export const postPrepaidDelete = /* #__PURE__ */ (() => {
8783 8476 const method = 'post';
8784   - const url = '/research/group/member/requests/detail';
  8477 + const url = '/prepaid/delete';
8785 8478 function request(
8786   - option: PostResearchGroupMemberRequestsDetailOption,
8787   - ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> {
  8479 + option: PostPrepaidDeleteOption,
  8480 + ): Promise<PostPrepaidDeleteResponseSuccess> {
8788 8481 return requester(request.url, {
8789 8482 method: request.method,
8790 8483 ...option,
8791   - }) as unknown as Promise<PostResearchGroupMemberRequestsDetailResponseSuccess>;
  8484 + }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>;
8792 8485 }
8793 8486  
8794 8487 /** http method */
... ... @@ -8798,8 +8491,8 @@ export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() =&gt; {
8798 8491 return request;
8799 8492 })();
8800 8493  
8801   -/** @description request parameter type for postResearchGroupMemberRequestsEdit */
8802   -export interface PostResearchGroupMemberRequestsEditOption {
  8494 +/** @description request parameter type for postPrepaidList */
  8495 +export interface PostPrepaidListOption {
8803 8496 /**
8804 8497 * @description
8805 8498 * request
... ... @@ -8808,12 +8501,12 @@ export interface PostResearchGroupMemberRequestsEditOption {
8808 8501 /**
8809 8502 @description
8810 8503 request */
8811   - request: ResearchGroupMemberRequestEditRequest;
  8504 + request: SalesRechargePrepaymentRequest;
8812 8505 };
8813 8506 }
8814 8507  
8815   -/** @description response type for postResearchGroupMemberRequestsEdit */
8816   -export interface PostResearchGroupMemberRequestsEditResponse {
  8508 +/** @description response type for postPrepaidList */
  8509 +export interface PostPrepaidListResponse {
8817 8510 /**
8818 8511 * @description
8819 8512 * OK
... ... @@ -8841,25 +8534,24 @@ export interface PostResearchGroupMemberRequestsEditResponse {
8841 8534 404: any;
8842 8535 }
8843 8536  
8844   -export type PostResearchGroupMemberRequestsEditResponseSuccess =
8845   - PostResearchGroupMemberRequestsEditResponse[200];
  8537 +export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200];
8846 8538 /**
8847 8539 * @description
8848   - * 编辑申请信息
8849   - * @tags research-group-member-requests-controller
  8540 + * 查询列表
  8541 + * @tags prepaid-controller
8850 8542 * @produces *
8851 8543 * @consumes application/json
8852 8544 */
8853   -export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => {
  8545 +export const postPrepaidList = /* #__PURE__ */ (() => {
8854 8546 const method = 'post';
8855   - const url = '/research/group/member/requests/edit';
  8547 + const url = '/prepaid/list';
8856 8548 function request(
8857   - option: PostResearchGroupMemberRequestsEditOption,
8858   - ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> {
  8549 + option: PostPrepaidListOption,
  8550 + ): Promise<PostPrepaidListResponseSuccess> {
8859 8551 return requester(request.url, {
8860 8552 method: request.method,
8861 8553 ...option,
8862   - }) as unknown as Promise<PostResearchGroupMemberRequestsEditResponseSuccess>;
  8554 + }) as unknown as Promise<PostPrepaidListResponseSuccess>;
8863 8555 }
8864 8556  
8865 8557 /** http method */
... ... @@ -8869,8 +8561,8 @@ export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() =&gt; {
8869 8561 return request;
8870 8562 })();
8871 8563  
8872   -/** @description request parameter type for postResearchGroupMemberRequestsList */
8873   -export interface PostResearchGroupMemberRequestsListOption {
  8564 +/** @description request parameter type for postPrepaidUpdate */
  8565 +export interface PostPrepaidUpdateOption {
8874 8566 /**
8875 8567 * @description
8876 8568 * request
... ... @@ -8879,12 +8571,12 @@ export interface PostResearchGroupMemberRequestsListOption {
8879 8571 /**
8880 8572 @description
8881 8573 request */
8882   - request: ResearchGroupMemberRequestsRequest;
  8574 + request: SalesRechargePrepaymentUpdateRequest;
8883 8575 };
8884 8576 }
8885 8577  
8886   -/** @description response type for postResearchGroupMemberRequestsList */
8887   -export interface PostResearchGroupMemberRequestsListResponse {
  8578 +/** @description response type for postPrepaidUpdate */
  8579 +export interface PostPrepaidUpdateResponse {
8888 8580 /**
8889 8581 * @description
8890 8582 * OK
... ... @@ -8912,25 +8604,24 @@ export interface PostResearchGroupMemberRequestsListResponse {
8912 8604 404: any;
8913 8605 }
8914 8606  
8915   -export type PostResearchGroupMemberRequestsListResponseSuccess =
8916   - PostResearchGroupMemberRequestsListResponse[200];
  8607 +export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200];
8917 8608 /**
8918 8609 * @description
8919   - * 申请列表
8920   - * @tags research-group-member-requests-controller
  8610 + * 修改预存
  8611 + * @tags prepaid-controller
8921 8612 * @produces *
8922 8613 * @consumes application/json
8923 8614 */
8924   -export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => {
  8615 +export const postPrepaidUpdate = /* #__PURE__ */ (() => {
8925 8616 const method = 'post';
8926   - const url = '/research/group/member/requests/list';
  8617 + const url = '/prepaid/update';
8927 8618 function request(
8928   - option: PostResearchGroupMemberRequestsListOption,
8929   - ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> {
  8619 + option: PostPrepaidUpdateOption,
  8620 + ): Promise<PostPrepaidUpdateResponseSuccess> {
8930 8621 return requester(request.url, {
8931 8622 method: request.method,
8932 8623 ...option,
8933   - }) as unknown as Promise<PostResearchGroupMemberRequestsListResponseSuccess>;
  8624 + }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>;
8934 8625 }
8935 8626  
8936 8627 /** http method */
... ... @@ -8940,22 +8631,22 @@ export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() =&gt; {
8940 8631 return request;
8941 8632 })();
8942 8633  
8943   -/** @description request parameter type for postResearchGroupsAdd */
8944   -export interface PostResearchGroupsAddOption {
  8634 +/** @description request parameter type for postServiceBankStatementDeleteBankStatement */
  8635 +export interface PostServiceBankStatementDeleteBankStatementOption {
8945 8636 /**
8946 8637 * @description
8947   - * request
  8638 + * dto
8948 8639 */
8949 8640 body: {
8950 8641 /**
8951 8642 @description
8952   - request */
8953   - request: ResearchGroupAddRequest;
  8643 + dto */
  8644 + dto: Dto;
8954 8645 };
8955 8646 }
8956 8647  
8957   -/** @description response type for postResearchGroupsAdd */
8958   -export interface PostResearchGroupsAddResponse {
  8648 +/** @description response type for postServiceBankStatementDeleteBankStatement */
  8649 +export interface PostServiceBankStatementDeleteBankStatementResponse {
8959 8650 /**
8960 8651 * @description
8961 8652 * OK
... ... @@ -8983,50 +8674,51 @@ export interface PostResearchGroupsAddResponse {
8983 8674 404: any;
8984 8675 }
8985 8676  
8986   -export type PostResearchGroupsAddResponseSuccess =
8987   - PostResearchGroupsAddResponse[200];
  8677 +export type PostServiceBankStatementDeleteBankStatementResponseSuccess =
  8678 + PostServiceBankStatementDeleteBankStatementResponse[200];
8988 8679 /**
8989 8680 * @description
8990   - * 新增课题组信息
8991   - * @tags research-groups-controller
  8681 + * 删除银行流水
  8682 + * @tags 银行流水
8992 8683 * @produces *
8993 8684 * @consumes application/json
8994 8685 */
8995   -export const postResearchGroupsAdd = /* #__PURE__ */ (() => {
8996   - const method = 'post';
8997   - const url = '/research/groups/add';
8998   - function request(
8999   - option: PostResearchGroupsAddOption,
9000   - ): Promise<PostResearchGroupsAddResponseSuccess> {
9001   - return requester(request.url, {
9002   - method: request.method,
9003   - ...option,
9004   - }) as unknown as Promise<PostResearchGroupsAddResponseSuccess>;
9005   - }
  8686 +export const postServiceBankStatementDeleteBankStatement =
  8687 + /* #__PURE__ */ (() => {
  8688 + const method = 'post';
  8689 + const url = '/service/bankStatement/deleteBankStatement';
  8690 + function request(
  8691 + option: PostServiceBankStatementDeleteBankStatementOption,
  8692 + ): Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess> {
  8693 + return requester(request.url, {
  8694 + method: request.method,
  8695 + ...option,
  8696 + }) as unknown as Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess>;
  8697 + }
9006 8698  
9007   - /** http method */
9008   - request.method = method;
9009   - /** request url */
9010   - request.url = url;
9011   - return request;
9012   -})();
  8699 + /** http method */
  8700 + request.method = method;
  8701 + /** request url */
  8702 + request.url = url;
  8703 + return request;
  8704 + })();
9013 8705  
9014   -/** @description request parameter type for postResearchGroupsDelete */
9015   -export interface PostResearchGroupsDeleteOption {
  8706 +/** @description request parameter type for postServiceBankStatementEditBankStatement */
  8707 +export interface PostServiceBankStatementEditBankStatementOption {
9016 8708 /**
9017 8709 * @description
9018   - * request
  8710 + * dto
9019 8711 */
9020 8712 body: {
9021 8713 /**
9022 8714 @description
9023   - request */
9024   - request: ResearchGroupDeleteRequest;
  8715 + dto */
  8716 + dto: Dto;
9025 8717 };
9026 8718 }
9027 8719  
9028   -/** @description response type for postResearchGroupsDelete */
9029   -export interface PostResearchGroupsDeleteResponse {
  8720 +/** @description response type for postServiceBankStatementEditBankStatement */
  8721 +export interface PostServiceBankStatementEditBankStatementResponse {
9030 8722 /**
9031 8723 * @description
9032 8724 * OK
... ... @@ -9054,55 +8746,42 @@ export interface PostResearchGroupsDeleteResponse {
9054 8746 404: any;
9055 8747 }
9056 8748  
9057   -export type PostResearchGroupsDeleteResponseSuccess =
9058   - PostResearchGroupsDeleteResponse[200];
  8749 +export type PostServiceBankStatementEditBankStatementResponseSuccess =
  8750 + PostServiceBankStatementEditBankStatementResponse[200];
9059 8751 /**
9060 8752 * @description
9061   - * 删除课题组信息
9062   - * @tags research-groups-controller
  8753 + * 编辑银行流水
  8754 + * @tags 银行流水
9063 8755 * @produces *
9064 8756 * @consumes application/json
9065 8757 */
9066   -export const postResearchGroupsDelete = /* #__PURE__ */ (() => {
9067   - const method = 'post';
9068   - const url = '/research/groups/delete';
9069   - function request(
9070   - option: PostResearchGroupsDeleteOption,
9071   - ): Promise<PostResearchGroupsDeleteResponseSuccess> {
9072   - return requester(request.url, {
9073   - method: request.method,
9074   - ...option,
9075   - }) as unknown as Promise<PostResearchGroupsDeleteResponseSuccess>;
9076   - }
9077   -
9078   - /** http method */
9079   - request.method = method;
9080   - /** request url */
9081   - request.url = url;
9082   - return request;
9083   -})();
  8758 +export const postServiceBankStatementEditBankStatement =
  8759 + /* #__PURE__ */ (() => {
  8760 + const method = 'post';
  8761 + const url = '/service/bankStatement/editBankStatement';
  8762 + function request(
  8763 + option: PostServiceBankStatementEditBankStatementOption,
  8764 + ): Promise<PostServiceBankStatementEditBankStatementResponseSuccess> {
  8765 + return requester(request.url, {
  8766 + method: request.method,
  8767 + ...option,
  8768 + }) as unknown as Promise<PostServiceBankStatementEditBankStatementResponseSuccess>;
  8769 + }
9084 8770  
9085   -/** @description request parameter type for postResearchGroupsDetail */
9086   -export interface PostResearchGroupsDetailOption {
9087   - /**
9088   - * @description
9089   - * request
9090   - */
9091   - body: {
9092   - /**
9093   - @description
9094   - request */
9095   - request: ResearchGroupDetailRequest;
9096   - };
9097   -}
  8771 + /** http method */
  8772 + request.method = method;
  8773 + /** request url */
  8774 + request.url = url;
  8775 + return request;
  8776 + })();
9098 8777  
9099   -/** @description response type for postResearchGroupsDetail */
9100   -export interface PostResearchGroupsDetailResponse {
  8778 +/** @description response type for postServiceBankStatementExportTemplate */
  8779 +export interface PostServiceBankStatementExportTemplateResponse {
9101 8780 /**
9102 8781 * @description
9103 8782 * OK
9104 8783 */
9105   - 200: ServerResult;
  8784 + 200: any;
9106 8785 /**
9107 8786 * @description
9108 8787 * Created
... ... @@ -9125,25 +8804,22 @@ export interface PostResearchGroupsDetailResponse {
9125 8804 404: any;
9126 8805 }
9127 8806  
9128   -export type PostResearchGroupsDetailResponseSuccess =
9129   - PostResearchGroupsDetailResponse[200];
  8807 +export type PostServiceBankStatementExportTemplateResponseSuccess =
  8808 + PostServiceBankStatementExportTemplateResponse[200];
9130 8809 /**
9131 8810 * @description
9132   - * 查询课题组信息
9133   - * @tags research-groups-controller
  8811 + * 下载银行流水模板
  8812 + * @tags 银行流水
9134 8813 * @produces *
9135 8814 * @consumes application/json
9136 8815 */
9137   -export const postResearchGroupsDetail = /* #__PURE__ */ (() => {
  8816 +export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() => {
9138 8817 const method = 'post';
9139   - const url = '/research/groups/detail';
9140   - function request(
9141   - option: PostResearchGroupsDetailOption,
9142   - ): Promise<PostResearchGroupsDetailResponseSuccess> {
  8818 + const url = '/service/bankStatement/exportTemplate';
  8819 + function request(): Promise<PostServiceBankStatementExportTemplateResponseSuccess> {
9143 8820 return requester(request.url, {
9144 8821 method: request.method,
9145   - ...option,
9146   - }) as unknown as Promise<PostResearchGroupsDetailResponseSuccess>;
  8822 + }) as unknown as Promise<PostServiceBankStatementExportTemplateResponseSuccess>;
9147 8823 }
9148 8824  
9149 8825 /** http method */
... ... @@ -9153,16 +8829,1040 @@ export const postResearchGroupsDetail = /* #__PURE__ */ (() =&gt; {
9153 8829 return request;
9154 8830 })();
9155 8831  
9156   -/** @description response type for postResearchGroupsDownloadImportTemplate */
9157   -export interface PostResearchGroupsDownloadImportTemplateResponse {
  8832 +/** @description request parameter type for postServiceBankStatementImportBankStatementForm */
  8833 +export interface PostServiceBankStatementImportBankStatementFormOption {
9158 8834 /**
9159 8835 * @description
9160   - * OK
  8836 + * file
9161 8837 */
9162   - 200: any;
9163   - /**
9164   - * @description
9165   - * Created
  8838 + formData: {
  8839 + /**
  8840 + @description
  8841 + file */
  8842 + file: File;
  8843 + };
  8844 +}
  8845 +
  8846 +/** @description response type for postServiceBankStatementImportBankStatementForm */
  8847 +export interface PostServiceBankStatementImportBankStatementFormResponse {
  8848 + /**
  8849 + * @description
  8850 + * OK
  8851 + */
  8852 + 200: ServerResult;
  8853 + /**
  8854 + * @description
  8855 + * Created
  8856 + */
  8857 + 201: any;
  8858 + /**
  8859 + * @description
  8860 + * Unauthorized
  8861 + */
  8862 + 401: any;
  8863 + /**
  8864 + * @description
  8865 + * Forbidden
  8866 + */
  8867 + 403: any;
  8868 + /**
  8869 + * @description
  8870 + * Not Found
  8871 + */
  8872 + 404: any;
  8873 +}
  8874 +
  8875 +export type PostServiceBankStatementImportBankStatementFormResponseSuccess =
  8876 + PostServiceBankStatementImportBankStatementFormResponse[200];
  8877 +/**
  8878 + * @description
  8879 + * 导入银行流水表格
  8880 + * @tags 银行流水
  8881 + * @produces *
  8882 + * @consumes multipart/form-data
  8883 + */
  8884 +export const postServiceBankStatementImportBankStatementForm =
  8885 + /* #__PURE__ */ (() => {
  8886 + const method = 'post';
  8887 + const url = '/service/bankStatement/importBankStatementForm';
  8888 + function request(
  8889 + option: PostServiceBankStatementImportBankStatementFormOption,
  8890 + ): Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess> {
  8891 + return requester(request.url, {
  8892 + method: request.method,
  8893 + ...option,
  8894 + }) as unknown as Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess>;
  8895 + }
  8896 +
  8897 + /** http method */
  8898 + request.method = method;
  8899 + /** request url */
  8900 + request.url = url;
  8901 + return request;
  8902 + })();
  8903 +
  8904 +/** @description request parameter type for postServiceBankStatementQueryBankStatement */
  8905 +export interface PostServiceBankStatementQueryBankStatementOption {
  8906 + /**
  8907 + * @description
  8908 + * dto
  8909 + */
  8910 + body: {
  8911 + /**
  8912 + @description
  8913 + dto */
  8914 + dto: QueryBankStatementDto;
  8915 + };
  8916 +}
  8917 +
  8918 +/** @description response type for postServiceBankStatementQueryBankStatement */
  8919 +export interface PostServiceBankStatementQueryBankStatementResponse {
  8920 + /**
  8921 + * @description
  8922 + * OK
  8923 + */
  8924 + 200: ServerResult;
  8925 + /**
  8926 + * @description
  8927 + * Created
  8928 + */
  8929 + 201: any;
  8930 + /**
  8931 + * @description
  8932 + * Unauthorized
  8933 + */
  8934 + 401: any;
  8935 + /**
  8936 + * @description
  8937 + * Forbidden
  8938 + */
  8939 + 403: any;
  8940 + /**
  8941 + * @description
  8942 + * Not Found
  8943 + */
  8944 + 404: any;
  8945 +}
  8946 +
  8947 +export type PostServiceBankStatementQueryBankStatementResponseSuccess =
  8948 + PostServiceBankStatementQueryBankStatementResponse[200];
  8949 +/**
  8950 + * @description
  8951 + * 查询银行流水
  8952 + * @tags 银行流水
  8953 + * @produces *
  8954 + * @consumes application/json
  8955 + */
  8956 +export const postServiceBankStatementQueryBankStatement =
  8957 + /* #__PURE__ */ (() => {
  8958 + const method = 'post';
  8959 + const url = '/service/bankStatement/queryBankStatement';
  8960 + function request(
  8961 + option: PostServiceBankStatementQueryBankStatementOption,
  8962 + ): Promise<PostServiceBankStatementQueryBankStatementResponseSuccess> {
  8963 + return requester(request.url, {
  8964 + method: request.method,
  8965 + ...option,
  8966 + }) as unknown as Promise<PostServiceBankStatementQueryBankStatementResponseSuccess>;
  8967 + }
  8968 +
  8969 + /** http method */
  8970 + request.method = method;
  8971 + /** request url */
  8972 + request.url = url;
  8973 + return request;
  8974 + })();
  8975 +
  8976 +/** @description response type for postServiceConstAfterInvoicingInvoiceRecordStatus */
  8977 +export interface PostServiceConstAfterInvoicingInvoiceRecordStatusResponse {
  8978 + /**
  8979 + * @description
  8980 + * OK
  8981 + */
  8982 + 200: ServerResult;
  8983 + /**
  8984 + * @description
  8985 + * Created
  8986 + */
  8987 + 201: any;
  8988 + /**
  8989 + * @description
  8990 + * Unauthorized
  8991 + */
  8992 + 401: any;
  8993 + /**
  8994 + * @description
  8995 + * Forbidden
  8996 + */
  8997 + 403: any;
  8998 + /**
  8999 + * @description
  9000 + * Not Found
  9001 + */
  9002 + 404: any;
  9003 +}
  9004 +
  9005 +export type PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess =
  9006 + PostServiceConstAfterInvoicingInvoiceRecordStatusResponse[200];
  9007 +/**
  9008 + * @description
  9009 + * 开票后的开票记录状态
  9010 + * @tags front-const-controller
  9011 + * @produces *
  9012 + * @consumes application/json
  9013 + */
  9014 +export const postServiceConstAfterInvoicingInvoiceRecordStatus =
  9015 + /* #__PURE__ */ (() => {
  9016 + const method = 'post';
  9017 + const url = '/service/const/afterInvoicingInvoiceRecordStatus';
  9018 + function request(): Promise<PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess> {
  9019 + return requester(request.url, {
  9020 + method: request.method,
  9021 + }) as unknown as Promise<PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess>;
  9022 + }
  9023 +
  9024 + /** http method */
  9025 + request.method = method;
  9026 + /** request url */
  9027 + request.url = url;
  9028 + return request;
  9029 + })();
  9030 +
  9031 +/** @description response type for postServiceConstAfterInvoicingStatus */
  9032 +export interface PostServiceConstAfterInvoicingStatusResponse {
  9033 + /**
  9034 + * @description
  9035 + * OK
  9036 + */
  9037 + 200: ServerResult;
  9038 + /**
  9039 + * @description
  9040 + * Created
  9041 + */
  9042 + 201: any;
  9043 + /**
  9044 + * @description
  9045 + * Unauthorized
  9046 + */
  9047 + 401: any;
  9048 + /**
  9049 + * @description
  9050 + * Forbidden
  9051 + */
  9052 + 403: any;
  9053 + /**
  9054 + * @description
  9055 + * Not Found
  9056 + */
  9057 + 404: any;
  9058 +}
  9059 +
  9060 +export type PostServiceConstAfterInvoicingStatusResponseSuccess =
  9061 + PostServiceConstAfterInvoicingStatusResponse[200];
  9062 +/**
  9063 + * @description
  9064 + * 申请开票后状态
  9065 + * @tags front-const-controller
  9066 + * @produces *
  9067 + * @consumes application/json
  9068 + */
  9069 +export const postServiceConstAfterInvoicingStatus = /* #__PURE__ */ (() => {
  9070 + const method = 'post';
  9071 + const url = '/service/const/afterInvoicingStatus';
  9072 + function request(): Promise<PostServiceConstAfterInvoicingStatusResponseSuccess> {
  9073 + return requester(request.url, {
  9074 + method: request.method,
  9075 + }) as unknown as Promise<PostServiceConstAfterInvoicingStatusResponseSuccess>;
  9076 + }
  9077 +
  9078 + /** http method */
  9079 + request.method = method;
  9080 + /** request url */
  9081 + request.url = url;
  9082 + return request;
  9083 +})();
  9084 +
  9085 +/** @description response type for postServiceConstBeforeInvoicingInvoiceRecordStatus */
  9086 +export interface PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse {
  9087 + /**
  9088 + * @description
  9089 + * OK
  9090 + */
  9091 + 200: ServerResult;
  9092 + /**
  9093 + * @description
  9094 + * Created
  9095 + */
  9096 + 201: any;
  9097 + /**
  9098 + * @description
  9099 + * Unauthorized
  9100 + */
  9101 + 401: any;
  9102 + /**
  9103 + * @description
  9104 + * Forbidden
  9105 + */
  9106 + 403: any;
  9107 + /**
  9108 + * @description
  9109 + * Not Found
  9110 + */
  9111 + 404: any;
  9112 +}
  9113 +
  9114 +export type PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess =
  9115 + PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse[200];
  9116 +/**
  9117 + * @description
  9118 + * 开票前的开票记录状态
  9119 + * @tags front-const-controller
  9120 + * @produces *
  9121 + * @consumes application/json
  9122 + */
  9123 +export const postServiceConstBeforeInvoicingInvoiceRecordStatus =
  9124 + /* #__PURE__ */ (() => {
  9125 + const method = 'post';
  9126 + const url = '/service/const/beforeInvoicingInvoiceRecordStatus';
  9127 + function request(): Promise<PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess> {
  9128 + return requester(request.url, {
  9129 + method: request.method,
  9130 + }) as unknown as Promise<PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess>;
  9131 + }
  9132 +
  9133 + /** http method */
  9134 + request.method = method;
  9135 + /** request url */
  9136 + request.url = url;
  9137 + return request;
  9138 + })();
  9139 +
  9140 +/** @description response type for postServiceConstCanApplyAfterInvoicingStatus */
  9141 +export interface PostServiceConstCanApplyAfterInvoicingStatusResponse {
  9142 + /**
  9143 + * @description
  9144 + * OK
  9145 + */
  9146 + 200: ServerResult;
  9147 + /**
  9148 + * @description
  9149 + * Created
  9150 + */
  9151 + 201: any;
  9152 + /**
  9153 + * @description
  9154 + * Unauthorized
  9155 + */
  9156 + 401: any;
  9157 + /**
  9158 + * @description
  9159 + * Forbidden
  9160 + */
  9161 + 403: any;
  9162 + /**
  9163 + * @description
  9164 + * Not Found
  9165 + */
  9166 + 404: any;
  9167 +}
  9168 +
  9169 +export type PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess =
  9170 + PostServiceConstCanApplyAfterInvoicingStatusResponse[200];
  9171 +/**
  9172 + * @description
  9173 + * 开具类型
  9174 + * @tags front-const-controller
  9175 + * @produces *
  9176 + * @consumes application/json
  9177 + */
  9178 +export const postServiceConstCanApplyAfterInvoicingStatus =
  9179 + /* #__PURE__ */ (() => {
  9180 + const method = 'post';
  9181 + const url = '/service/const/canApplyAfterInvoicingStatus';
  9182 + function request(): Promise<PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess> {
  9183 + return requester(request.url, {
  9184 + method: request.method,
  9185 + }) as unknown as Promise<PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess>;
  9186 + }
  9187 +
  9188 + /** http method */
  9189 + request.method = method;
  9190 + /** request url */
  9191 + request.url = url;
  9192 + return request;
  9193 + })();
  9194 +
  9195 +/** @description response type for postServiceConstGetPayeeEnum */
  9196 +export interface PostServiceConstGetPayeeEnumResponse {
  9197 + /**
  9198 + * @description
  9199 + * OK
  9200 + */
  9201 + 200: ServerResult;
  9202 + /**
  9203 + * @description
  9204 + * Created
  9205 + */
  9206 + 201: any;
  9207 + /**
  9208 + * @description
  9209 + * Unauthorized
  9210 + */
  9211 + 401: any;
  9212 + /**
  9213 + * @description
  9214 + * Forbidden
  9215 + */
  9216 + 403: any;
  9217 + /**
  9218 + * @description
  9219 + * Not Found
  9220 + */
  9221 + 404: any;
  9222 +}
  9223 +
  9224 +export type PostServiceConstGetPayeeEnumResponseSuccess =
  9225 + PostServiceConstGetPayeeEnumResponse[200];
  9226 +/**
  9227 + * @description
  9228 + * 获取收款方
  9229 + * @tags front-const-controller
  9230 + * @produces *
  9231 + * @consumes application/json
  9232 + */
  9233 +export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() => {
  9234 + const method = 'post';
  9235 + const url = '/service/const/getPayeeEnum';
  9236 + function request(): Promise<PostServiceConstGetPayeeEnumResponseSuccess> {
  9237 + return requester(request.url, {
  9238 + method: request.method,
  9239 + }) as unknown as Promise<PostServiceConstGetPayeeEnumResponseSuccess>;
  9240 + }
  9241 +
  9242 + /** http method */
  9243 + request.method = method;
  9244 + /** request url */
  9245 + request.url = url;
  9246 + return request;
  9247 +})();
  9248 +
  9249 +/** @description response type for postServiceConstInvoiceType */
  9250 +export interface PostServiceConstInvoiceTypeResponse {
  9251 + /**
  9252 + * @description
  9253 + * OK
  9254 + */
  9255 + 200: ServerResult;
  9256 + /**
  9257 + * @description
  9258 + * Created
  9259 + */
  9260 + 201: any;
  9261 + /**
  9262 + * @description
  9263 + * Unauthorized
  9264 + */
  9265 + 401: any;
  9266 + /**
  9267 + * @description
  9268 + * Forbidden
  9269 + */
  9270 + 403: any;
  9271 + /**
  9272 + * @description
  9273 + * Not Found
  9274 + */
  9275 + 404: any;
  9276 +}
  9277 +
  9278 +export type PostServiceConstInvoiceTypeResponseSuccess =
  9279 + PostServiceConstInvoiceTypeResponse[200];
  9280 +/**
  9281 + * @description
  9282 + * 发票类型
  9283 + * @tags front-const-controller
  9284 + * @produces *
  9285 + * @consumes application/json
  9286 + */
  9287 +export const postServiceConstInvoiceType = /* #__PURE__ */ (() => {
  9288 + const method = 'post';
  9289 + const url = '/service/const/invoiceType';
  9290 + function request(): Promise<PostServiceConstInvoiceTypeResponseSuccess> {
  9291 + return requester(request.url, {
  9292 + method: request.method,
  9293 + }) as unknown as Promise<PostServiceConstInvoiceTypeResponseSuccess>;
  9294 + }
  9295 +
  9296 + /** http method */
  9297 + request.method = method;
  9298 + /** request url */
  9299 + request.url = url;
  9300 + return request;
  9301 +})();
  9302 +
  9303 +/** @description response type for postServiceConstInvoicingType */
  9304 +export interface PostServiceConstInvoicingTypeResponse {
  9305 + /**
  9306 + * @description
  9307 + * OK
  9308 + */
  9309 + 200: ServerResult;
  9310 + /**
  9311 + * @description
  9312 + * Created
  9313 + */
  9314 + 201: any;
  9315 + /**
  9316 + * @description
  9317 + * Unauthorized
  9318 + */
  9319 + 401: any;
  9320 + /**
  9321 + * @description
  9322 + * Forbidden
  9323 + */
  9324 + 403: any;
  9325 + /**
  9326 + * @description
  9327 + * Not Found
  9328 + */
  9329 + 404: any;
  9330 +}
  9331 +
  9332 +export type PostServiceConstInvoicingTypeResponseSuccess =
  9333 + PostServiceConstInvoicingTypeResponse[200];
  9334 +/**
  9335 + * @description
  9336 + * 开具类型
  9337 + * @tags front-const-controller
  9338 + * @produces *
  9339 + * @consumes application/json
  9340 + */
  9341 +export const postServiceConstInvoicingType = /* #__PURE__ */ (() => {
  9342 + const method = 'post';
  9343 + const url = '/service/const/invoicingType';
  9344 + function request(): Promise<PostServiceConstInvoicingTypeResponseSuccess> {
  9345 + return requester(request.url, {
  9346 + method: request.method,
  9347 + }) as unknown as Promise<PostServiceConstInvoicingTypeResponseSuccess>;
  9348 + }
  9349 +
  9350 + /** http method */
  9351 + request.method = method;
  9352 + /** request url */
  9353 + request.url = url;
  9354 + return request;
  9355 +})();
  9356 +
  9357 +/** @description request parameter type for postServiceConstListInvoiceDetailNames */
  9358 +export interface PostServiceConstListInvoiceDetailNamesOption {
  9359 + /**
  9360 + * @description
  9361 + * queryInvoiceProjectDto
  9362 + */
  9363 + body: {
  9364 + /**
  9365 + @description
  9366 + queryInvoiceProjectDto */
  9367 + queryInvoiceProjectDto: QueryInvoiceProjectDto;
  9368 + };
  9369 +}
  9370 +
  9371 +/** @description response type for postServiceConstListInvoiceDetailNames */
  9372 +export interface PostServiceConstListInvoiceDetailNamesResponse {
  9373 + /**
  9374 + * @description
  9375 + * OK
  9376 + */
  9377 + 200: ServerResult;
  9378 + /**
  9379 + * @description
  9380 + * Created
  9381 + */
  9382 + 201: any;
  9383 + /**
  9384 + * @description
  9385 + * Unauthorized
  9386 + */
  9387 + 401: any;
  9388 + /**
  9389 + * @description
  9390 + * Forbidden
  9391 + */
  9392 + 403: any;
  9393 + /**
  9394 + * @description
  9395 + * Not Found
  9396 + */
  9397 + 404: any;
  9398 +}
  9399 +
  9400 +export type PostServiceConstListInvoiceDetailNamesResponseSuccess =
  9401 + PostServiceConstListInvoiceDetailNamesResponse[200];
  9402 +/**
  9403 + * @description
  9404 + * 根据公司名获取收款方
  9405 + * @tags front-const-controller
  9406 + * @produces *
  9407 + * @consumes application/json
  9408 + */
  9409 +export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() => {
  9410 + const method = 'post';
  9411 + const url = '/service/const/listInvoiceDetailNames';
  9412 + function request(
  9413 + option: PostServiceConstListInvoiceDetailNamesOption,
  9414 + ): Promise<PostServiceConstListInvoiceDetailNamesResponseSuccess> {
  9415 + return requester(request.url, {
  9416 + method: request.method,
  9417 + ...option,
  9418 + }) as unknown as Promise<PostServiceConstListInvoiceDetailNamesResponseSuccess>;
  9419 + }
  9420 +
  9421 + /** http method */
  9422 + request.method = method;
  9423 + /** request url */
  9424 + request.url = url;
  9425 + return request;
  9426 +})();
  9427 +
  9428 +/** @description response type for postServiceConstNotCanModifyInvoiceRecordStatus */
  9429 +export interface PostServiceConstNotCanModifyInvoiceRecordStatusResponse {
  9430 + /**
  9431 + * @description
  9432 + * OK
  9433 + */
  9434 + 200: ServerResult;
  9435 + /**
  9436 + * @description
  9437 + * Created
  9438 + */
  9439 + 201: any;
  9440 + /**
  9441 + * @description
  9442 + * Unauthorized
  9443 + */
  9444 + 401: any;
  9445 + /**
  9446 + * @description
  9447 + * Forbidden
  9448 + */
  9449 + 403: any;
  9450 + /**
  9451 + * @description
  9452 + * Not Found
  9453 + */
  9454 + 404: any;
  9455 +}
  9456 +
  9457 +export type PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess =
  9458 + PostServiceConstNotCanModifyInvoiceRecordStatusResponse[200];
  9459 +/**
  9460 + * @description
  9461 + * 不能修改的开票记录状态
  9462 + * @tags front-const-controller
  9463 + * @produces *
  9464 + * @consumes application/json
  9465 + */
  9466 +export const postServiceConstNotCanModifyInvoiceRecordStatus =
  9467 + /* #__PURE__ */ (() => {
  9468 + const method = 'post';
  9469 + const url = '/service/const/notCanModifyInvoiceRecordStatus';
  9470 + function request(): Promise<PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess> {
  9471 + return requester(request.url, {
  9472 + method: request.method,
  9473 + }) as unknown as Promise<PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess>;
  9474 + }
  9475 +
  9476 + /** http method */
  9477 + request.method = method;
  9478 + /** request url */
  9479 + request.url = url;
  9480 + return request;
  9481 + })();
  9482 +
  9483 +/** @description request parameter type for getServiceInvoiceListInvoiceProject */
  9484 +export interface GetServiceInvoiceListInvoiceProjectOption {
  9485 + /** @format int32 */
  9486 + query?: {
  9487 + /**
  9488 + @format int32 */
  9489 + current?: number;
  9490 + /**
  9491 + @format int32 */
  9492 + end?: number;
  9493 + nameLike?: string;
  9494 + /**
  9495 + @format int32 */
  9496 + pageSize?: number;
  9497 + /**
  9498 + @format int32 */
  9499 + start?: number;
  9500 + /**
  9501 + @format int32 */
  9502 + total?: number;
  9503 + };
  9504 +}
  9505 +
  9506 +/** @description response type for getServiceInvoiceListInvoiceProject */
  9507 +export interface GetServiceInvoiceListInvoiceProjectResponse {
  9508 + /**
  9509 + * @description
  9510 + * OK
  9511 + */
  9512 + 200: any;
  9513 + /**
  9514 + * @description
  9515 + * Unauthorized
  9516 + */
  9517 + 401: any;
  9518 + /**
  9519 + * @description
  9520 + * Forbidden
  9521 + */
  9522 + 403: any;
  9523 + /**
  9524 + * @description
  9525 + * Not Found
  9526 + */
  9527 + 404: any;
  9528 +}
  9529 +
  9530 +export type GetServiceInvoiceListInvoiceProjectResponseSuccess =
  9531 + GetServiceInvoiceListInvoiceProjectResponse[200];
  9532 +/**
  9533 + * @description
  9534 + * invoiceProjectList
  9535 + * @tags 发票
  9536 + * @produces *
  9537 + */
  9538 +export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() => {
  9539 + const method = 'get';
  9540 + const url = '/service/invoice/ListInvoiceProject';
  9541 + function request(
  9542 + option?: GetServiceInvoiceListInvoiceProjectOption,
  9543 + ): Promise<GetServiceInvoiceListInvoiceProjectResponseSuccess> {
  9544 + return requester(request.url, {
  9545 + method: request.method,
  9546 + ...option,
  9547 + }) as unknown as Promise<GetServiceInvoiceListInvoiceProjectResponseSuccess>;
  9548 + }
  9549 +
  9550 + /** http method */
  9551 + request.method = method;
  9552 + /** request url */
  9553 + request.url = url;
  9554 + return request;
  9555 +})();
  9556 +
  9557 +/** @description request parameter type for postServiceInvoiceAddInvoice */
  9558 +export interface PostServiceInvoiceAddInvoiceOption {
  9559 + /**
  9560 + * @description
  9561 + * dto
  9562 + */
  9563 + body: {
  9564 + /**
  9565 + @description
  9566 + dto */
  9567 + dto: InvoiceDto;
  9568 + };
  9569 +}
  9570 +
  9571 +/** @description response type for postServiceInvoiceAddInvoice */
  9572 +export interface PostServiceInvoiceAddInvoiceResponse {
  9573 + /**
  9574 + * @description
  9575 + * OK
  9576 + */
  9577 + 200: ServerResult;
  9578 + /**
  9579 + * @description
  9580 + * Created
  9581 + */
  9582 + 201: any;
  9583 + /**
  9584 + * @description
  9585 + * Unauthorized
  9586 + */
  9587 + 401: any;
  9588 + /**
  9589 + * @description
  9590 + * Forbidden
  9591 + */
  9592 + 403: any;
  9593 + /**
  9594 + * @description
  9595 + * Not Found
  9596 + */
  9597 + 404: any;
  9598 +}
  9599 +
  9600 +export type PostServiceInvoiceAddInvoiceResponseSuccess =
  9601 + PostServiceInvoiceAddInvoiceResponse[200];
  9602 +/**
  9603 + * @description
  9604 + * 添加发票
  9605 + * @tags 发票
  9606 + * @produces *
  9607 + * @consumes application/json
  9608 + */
  9609 +export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => {
  9610 + const method = 'post';
  9611 + const url = '/service/invoice/addInvoice';
  9612 + function request(
  9613 + option: PostServiceInvoiceAddInvoiceOption,
  9614 + ): Promise<PostServiceInvoiceAddInvoiceResponseSuccess> {
  9615 + return requester(request.url, {
  9616 + method: request.method,
  9617 + ...option,
  9618 + }) as unknown as Promise<PostServiceInvoiceAddInvoiceResponseSuccess>;
  9619 + }
  9620 +
  9621 + /** http method */
  9622 + request.method = method;
  9623 + /** request url */
  9624 + request.url = url;
  9625 + return request;
  9626 +})();
  9627 +
  9628 +/** @description request parameter type for postServiceInvoiceApplyInvoice */
  9629 +export interface PostServiceInvoiceApplyInvoiceOption {
  9630 + /**
  9631 + * @description
  9632 + * dto
  9633 + */
  9634 + body: {
  9635 + /**
  9636 + @description
  9637 + dto */
  9638 + dto: ApplyInvoiceDto;
  9639 + };
  9640 +}
  9641 +
  9642 +/** @description response type for postServiceInvoiceApplyInvoice */
  9643 +export interface PostServiceInvoiceApplyInvoiceResponse {
  9644 + /**
  9645 + * @description
  9646 + * OK
  9647 + */
  9648 + 200: ServerResult;
  9649 + /**
  9650 + * @description
  9651 + * Created
  9652 + */
  9653 + 201: any;
  9654 + /**
  9655 + * @description
  9656 + * Unauthorized
  9657 + */
  9658 + 401: any;
  9659 + /**
  9660 + * @description
  9661 + * Forbidden
  9662 + */
  9663 + 403: any;
  9664 + /**
  9665 + * @description
  9666 + * Not Found
  9667 + */
  9668 + 404: any;
  9669 +}
  9670 +
  9671 +export type PostServiceInvoiceApplyInvoiceResponseSuccess =
  9672 + PostServiceInvoiceApplyInvoiceResponse[200];
  9673 +/**
  9674 + * @description
  9675 + * 申请开票
  9676 + * @tags 发票
  9677 + * @produces *
  9678 + * @consumes application/json
  9679 + */
  9680 +export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() => {
  9681 + const method = 'post';
  9682 + const url = '/service/invoice/applyInvoice';
  9683 + function request(
  9684 + option: PostServiceInvoiceApplyInvoiceOption,
  9685 + ): Promise<PostServiceInvoiceApplyInvoiceResponseSuccess> {
  9686 + return requester(request.url, {
  9687 + method: request.method,
  9688 + ...option,
  9689 + }) as unknown as Promise<PostServiceInvoiceApplyInvoiceResponseSuccess>;
  9690 + }
  9691 +
  9692 + /** http method */
  9693 + request.method = method;
  9694 + /** request url */
  9695 + request.url = url;
  9696 + return request;
  9697 +})();
  9698 +
  9699 +/** @description request parameter type for postServiceInvoiceCancelApply */
  9700 +export interface PostServiceInvoiceCancelApplyOption {
  9701 + /**
  9702 + * @description
  9703 + * dto
  9704 + */
  9705 + body: {
  9706 + /**
  9707 + @description
  9708 + dto */
  9709 + dto: Dto;
  9710 + };
  9711 +}
  9712 +
  9713 +/** @description response type for postServiceInvoiceCancelApply */
  9714 +export interface PostServiceInvoiceCancelApplyResponse {
  9715 + /**
  9716 + * @description
  9717 + * OK
  9718 + */
  9719 + 200: ServerResult;
  9720 + /**
  9721 + * @description
  9722 + * Created
  9723 + */
  9724 + 201: any;
  9725 + /**
  9726 + * @description
  9727 + * Unauthorized
  9728 + */
  9729 + 401: any;
  9730 + /**
  9731 + * @description
  9732 + * Forbidden
  9733 + */
  9734 + 403: any;
  9735 + /**
  9736 + * @description
  9737 + * Not Found
  9738 + */
  9739 + 404: any;
  9740 +}
  9741 +
  9742 +export type PostServiceInvoiceCancelApplyResponseSuccess =
  9743 + PostServiceInvoiceCancelApplyResponse[200];
  9744 +/**
  9745 + * @description
  9746 + * 取消申请
  9747 + * @tags 发票
  9748 + * @produces *
  9749 + * @consumes application/json
  9750 + */
  9751 +export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() => {
  9752 + const method = 'post';
  9753 + const url = '/service/invoice/cancelApply';
  9754 + function request(
  9755 + option: PostServiceInvoiceCancelApplyOption,
  9756 + ): Promise<PostServiceInvoiceCancelApplyResponseSuccess> {
  9757 + return requester(request.url, {
  9758 + method: request.method,
  9759 + ...option,
  9760 + }) as unknown as Promise<PostServiceInvoiceCancelApplyResponseSuccess>;
  9761 + }
  9762 +
  9763 + /** http method */
  9764 + request.method = method;
  9765 + /** request url */
  9766 + request.url = url;
  9767 + return request;
  9768 +})();
  9769 +
  9770 +/** @description request parameter type for postServiceInvoiceCancelInvoiceAndBankStatement */
  9771 +export interface PostServiceInvoiceCancelInvoiceAndBankStatementOption {
  9772 + /**
  9773 + * @description
  9774 + * dto
  9775 + */
  9776 + body: {
  9777 + /**
  9778 + @description
  9779 + dto */
  9780 + dto: CancelInvoiceAndBankStatementDto;
  9781 + };
  9782 +}
  9783 +
  9784 +/** @description response type for postServiceInvoiceCancelInvoiceAndBankStatement */
  9785 +export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse {
  9786 + /**
  9787 + * @description
  9788 + * OK
  9789 + */
  9790 + 200: ServerResult;
  9791 + /**
  9792 + * @description
  9793 + * Created
  9794 + */
  9795 + 201: any;
  9796 + /**
  9797 + * @description
  9798 + * Unauthorized
  9799 + */
  9800 + 401: any;
  9801 + /**
  9802 + * @description
  9803 + * Forbidden
  9804 + */
  9805 + 403: any;
  9806 + /**
  9807 + * @description
  9808 + * Not Found
  9809 + */
  9810 + 404: any;
  9811 +}
  9812 +
  9813 +export type PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess =
  9814 + PostServiceInvoiceCancelInvoiceAndBankStatementResponse[200];
  9815 +/**
  9816 + * @description
  9817 + * 取消发票与银行流水的关联
  9818 + * @tags 发票
  9819 + * @produces *
  9820 + * @consumes application/json
  9821 + */
  9822 +export const postServiceInvoiceCancelInvoiceAndBankStatement =
  9823 + /* #__PURE__ */ (() => {
  9824 + const method = 'post';
  9825 + const url = '/service/invoice/cancelInvoiceAndBankStatement';
  9826 + function request(
  9827 + option: PostServiceInvoiceCancelInvoiceAndBankStatementOption,
  9828 + ): Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess> {
  9829 + return requester(request.url, {
  9830 + method: request.method,
  9831 + ...option,
  9832 + }) as unknown as Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess>;
  9833 + }
  9834 +
  9835 + /** http method */
  9836 + request.method = method;
  9837 + /** request url */
  9838 + request.url = url;
  9839 + return request;
  9840 + })();
  9841 +
  9842 +/** @description request parameter type for postServiceInvoiceDealInvoicingResult */
  9843 +export interface PostServiceInvoiceDealInvoicingResultOption {
  9844 + /**
  9845 + * @description
  9846 + * dto
  9847 + */
  9848 + body: {
  9849 + /**
  9850 + @description
  9851 + dto */
  9852 + dto: Dto;
  9853 + };
  9854 +}
  9855 +
  9856 +/** @description response type for postServiceInvoiceDealInvoicingResult */
  9857 +export interface PostServiceInvoiceDealInvoicingResultResponse {
  9858 + /**
  9859 + * @description
  9860 + * OK
  9861 + */
  9862 + 200: ServerResult;
  9863 + /**
  9864 + * @description
  9865 + * Created
9166 9866 */
9167 9867 201: any;
9168 9868 /**
... ... @@ -9182,22 +9882,25 @@ export interface PostResearchGroupsDownloadImportTemplateResponse {
9182 9882 404: any;
9183 9883 }
9184 9884  
9185   -export type PostResearchGroupsDownloadImportTemplateResponseSuccess =
9186   - PostResearchGroupsDownloadImportTemplateResponse[200];
  9885 +export type PostServiceInvoiceDealInvoicingResultResponseSuccess =
  9886 + PostServiceInvoiceDealInvoicingResultResponse[200];
9187 9887 /**
9188 9888 * @description
9189   - * 课题组导入模板下载
9190   - * @tags research-groups-controller
  9889 + * 拉取开票结果
  9890 + * @tags 发票
9191 9891 * @produces *
9192 9892 * @consumes application/json
9193 9893 */
9194   -export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => {
  9894 +export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() => {
9195 9895 const method = 'post';
9196   - const url = '/research/groups/download/importTemplate';
9197   - function request(): Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess> {
  9896 + const url = '/service/invoice/dealInvoicingResult';
  9897 + function request(
  9898 + option: PostServiceInvoiceDealInvoicingResultOption,
  9899 + ): Promise<PostServiceInvoiceDealInvoicingResultResponseSuccess> {
9198 9900 return requester(request.url, {
9199 9901 method: request.method,
9200   - }) as unknown as Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess>;
  9902 + ...option,
  9903 + }) as unknown as Promise<PostServiceInvoiceDealInvoicingResultResponseSuccess>;
9201 9904 }
9202 9905  
9203 9906 /** http method */
... ... @@ -9207,22 +9910,22 @@ export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() =&gt; {
9207 9910 return request;
9208 9911 })();
9209 9912  
9210   -/** @description request parameter type for postResearchGroupsEdit */
9211   -export interface PostResearchGroupsEditOption {
  9913 +/** @description request parameter type for postServiceInvoiceDeleteInvoice */
  9914 +export interface PostServiceInvoiceDeleteInvoiceOption {
9212 9915 /**
9213 9916 * @description
9214   - * request
  9917 + * dto
9215 9918 */
9216 9919 body: {
9217 9920 /**
9218 9921 @description
9219   - request */
9220   - request: ResearchGroupEditRequest;
  9922 + dto */
  9923 + dto: Dto;
9221 9924 };
9222 9925 }
9223 9926  
9224   -/** @description response type for postResearchGroupsEdit */
9225   -export interface PostResearchGroupsEditResponse {
  9927 +/** @description response type for postServiceInvoiceDeleteInvoice */
  9928 +export interface PostServiceInvoiceDeleteInvoiceResponse {
9226 9929 /**
9227 9930 * @description
9228 9931 * OK
... ... @@ -9250,25 +9953,25 @@ export interface PostResearchGroupsEditResponse {
9250 9953 404: any;
9251 9954 }
9252 9955  
9253   -export type PostResearchGroupsEditResponseSuccess =
9254   - PostResearchGroupsEditResponse[200];
  9956 +export type PostServiceInvoiceDeleteInvoiceResponseSuccess =
  9957 + PostServiceInvoiceDeleteInvoiceResponse[200];
9255 9958 /**
9256 9959 * @description
9257   - * 编辑课题组信息
9258   - * @tags research-groups-controller
  9960 + * 删除发票
  9961 + * @tags 发票
9259 9962 * @produces *
9260 9963 * @consumes application/json
9261 9964 */
9262   -export const postResearchGroupsEdit = /* #__PURE__ */ (() => {
  9965 +export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => {
9263 9966 const method = 'post';
9264   - const url = '/research/groups/edit';
  9967 + const url = '/service/invoice/deleteInvoice';
9265 9968 function request(
9266   - option: PostResearchGroupsEditOption,
9267   - ): Promise<PostResearchGroupsEditResponseSuccess> {
  9969 + option: PostServiceInvoiceDeleteInvoiceOption,
  9970 + ): Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess> {
9268 9971 return requester(request.url, {
9269 9972 method: request.method,
9270 9973 ...option,
9271   - }) as unknown as Promise<PostResearchGroupsEditResponseSuccess>;
  9974 + }) as unknown as Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess>;
9272 9975 }
9273 9976  
9274 9977 /** http method */
... ... @@ -9278,22 +9981,24 @@ export const postResearchGroupsEdit = /* #__PURE__ */ (() =&gt; {
9278 9981 return request;
9279 9982 })();
9280 9983  
9281   -/** @description request parameter type for postResearchGroupsImport */
9282   -export interface PostResearchGroupsImportOption {
  9984 +/** @description request parameter type for postServiceInvoiceDownloadInvoice */
  9985 +export interface PostServiceInvoiceDownloadInvoiceOption {
9283 9986 /**
9284 9987 * @description
9285   - * file
  9988 + * recodId
  9989 + * @format int64
9286 9990 */
9287   - formData: {
  9991 + query?: {
9288 9992 /**
9289 9993 @description
9290   - file */
9291   - file: File;
  9994 + recodId
  9995 + @format int64 */
  9996 + recodId?: number;
9292 9997 };
9293 9998 }
9294 9999  
9295   -/** @description response type for postResearchGroupsImport */
9296   -export interface PostResearchGroupsImportResponse {
  10000 +/** @description response type for postServiceInvoiceDownloadInvoice */
  10001 +export interface PostServiceInvoiceDownloadInvoiceResponse {
9297 10002 /**
9298 10003 * @description
9299 10004 * OK
... ... @@ -9321,25 +10026,25 @@ export interface PostResearchGroupsImportResponse {
9321 10026 404: any;
9322 10027 }
9323 10028  
9324   -export type PostResearchGroupsImportResponseSuccess =
9325   - PostResearchGroupsImportResponse[200];
  10029 +export type PostServiceInvoiceDownloadInvoiceResponseSuccess =
  10030 + PostServiceInvoiceDownloadInvoiceResponse[200];
9326 10031 /**
9327 10032 * @description
9328   - * 课题组信息导入
9329   - * @tags research-groups-controller
  10033 + * 下载开票
  10034 + * @tags 发票
9330 10035 * @produces *
9331   - * @consumes multipart/form-data
  10036 + * @consumes application/json
9332 10037 */
9333   -export const postResearchGroupsImport = /* #__PURE__ */ (() => {
  10038 +export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() => {
9334 10039 const method = 'post';
9335   - const url = '/research/groups/import';
  10040 + const url = '/service/invoice/downloadInvoice';
9336 10041 function request(
9337   - option: PostResearchGroupsImportOption,
9338   - ): Promise<PostResearchGroupsImportResponseSuccess> {
  10042 + option?: PostServiceInvoiceDownloadInvoiceOption,
  10043 + ): Promise<PostServiceInvoiceDownloadInvoiceResponseSuccess> {
9339 10044 return requester(request.url, {
9340 10045 method: request.method,
9341 10046 ...option,
9342   - }) as unknown as Promise<PostResearchGroupsImportResponseSuccess>;
  10047 + }) as unknown as Promise<PostServiceInvoiceDownloadInvoiceResponseSuccess>;
9343 10048 }
9344 10049  
9345 10050 /** http method */
... ... @@ -9349,32 +10054,13 @@ export const postResearchGroupsImport = /* #__PURE__ */ (() =&gt; {
9349 10054 return request;
9350 10055 })();
9351 10056  
9352   -/** @description request parameter type for postResearchGroupsList */
9353   -export interface PostResearchGroupsListOption {
9354   - /**
9355   - * @description
9356   - * request
9357   - */
9358   - body: {
9359   - /**
9360   - @description
9361   - request */
9362   - request: ResearchGroupListRequest;
9363   - };
9364   -}
9365   -
9366   -/** @description response type for postResearchGroupsList */
9367   -export interface PostResearchGroupsListResponse {
  10057 +/** @description response type for getServiceInvoiceExportInvoiceDetailsTemplate */
  10058 +export interface GetServiceInvoiceExportInvoiceDetailsTemplateResponse {
9368 10059 /**
9369 10060 * @description
9370 10061 * OK
9371 10062 */
9372   - 200: ServerResult;
9373   - /**
9374   - * @description
9375   - * Created
9376   - */
9377   - 201: any;
  10063 + 200: any;
9378 10064 /**
9379 10065 * @description
9380 10066 * Unauthorized
... ... @@ -9392,36 +10078,33 @@ export interface PostResearchGroupsListResponse {
9392 10078 404: any;
9393 10079 }
9394 10080  
9395   -export type PostResearchGroupsListResponseSuccess =
9396   - PostResearchGroupsListResponse[200];
  10081 +export type GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess =
  10082 + GetServiceInvoiceExportInvoiceDetailsTemplateResponse[200];
9397 10083 /**
9398 10084 * @description
9399   - * 课题组列表
9400   - * @tags research-groups-controller
  10085 + * 导出发票明细模板
  10086 + * @tags 发票
9401 10087 * @produces *
9402   - * @consumes application/json
9403 10088 */
9404   -export const postResearchGroupsList = /* #__PURE__ */ (() => {
9405   - const method = 'post';
9406   - const url = '/research/groups/list';
9407   - function request(
9408   - option: PostResearchGroupsListOption,
9409   - ): Promise<PostResearchGroupsListResponseSuccess> {
9410   - return requester(request.url, {
9411   - method: request.method,
9412   - ...option,
9413   - }) as unknown as Promise<PostResearchGroupsListResponseSuccess>;
9414   - }
  10089 +export const getServiceInvoiceExportInvoiceDetailsTemplate =
  10090 + /* #__PURE__ */ (() => {
  10091 + const method = 'get';
  10092 + const url = '/service/invoice/exportInvoiceDetailsTemplate';
  10093 + function request(): Promise<GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess> {
  10094 + return requester(request.url, {
  10095 + method: request.method,
  10096 + }) as unknown as Promise<GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess>;
  10097 + }
9415 10098  
9416   - /** http method */
9417   - request.method = method;
9418   - /** request url */
9419   - request.url = url;
9420   - return request;
9421   -})();
  10099 + /** http method */
  10100 + request.method = method;
  10101 + /** request url */
  10102 + request.url = url;
  10103 + return request;
  10104 + })();
9422 10105  
9423   -/** @description request parameter type for postServiceBankStatementDeleteBankStatement */
9424   -export interface PostServiceBankStatementDeleteBankStatementOption {
  10106 +/** @description request parameter type for postServiceInvoiceExportInvoiceRecords */
  10107 +export interface PostServiceInvoiceExportInvoiceRecordsOption {
9425 10108 /**
9426 10109 * @description
9427 10110 * dto
... ... @@ -9430,17 +10113,17 @@ export interface PostServiceBankStatementDeleteBankStatementOption {
9430 10113 /**
9431 10114 @description
9432 10115 dto */
9433   - dto: Dto;
  10116 + dto: QueryInvoiceRecordDto;
9434 10117 };
9435 10118 }
9436 10119  
9437   -/** @description response type for postServiceBankStatementDeleteBankStatement */
9438   -export interface PostServiceBankStatementDeleteBankStatementResponse {
  10120 +/** @description response type for postServiceInvoiceExportInvoiceRecords */
  10121 +export interface PostServiceInvoiceExportInvoiceRecordsResponse {
9439 10122 /**
9440 10123 * @description
9441 10124 * OK
9442 10125 */
9443   - 200: ServerResult;
  10126 + 200: any;
9444 10127 /**
9445 10128 * @description
9446 10129 * Created
... ... @@ -9463,37 +10146,36 @@ export interface PostServiceBankStatementDeleteBankStatementResponse {
9463 10146 404: any;
9464 10147 }
9465 10148  
9466   -export type PostServiceBankStatementDeleteBankStatementResponseSuccess =
9467   - PostServiceBankStatementDeleteBankStatementResponse[200];
  10149 +export type PostServiceInvoiceExportInvoiceRecordsResponseSuccess =
  10150 + PostServiceInvoiceExportInvoiceRecordsResponse[200];
9468 10151 /**
9469 10152 * @description
9470   - * 删除银行流水
9471   - * @tags 银行流水
  10153 + * exportInvoiceRecords
  10154 + * @tags 发票
9472 10155 * @produces *
9473 10156 * @consumes application/json
9474 10157 */
9475   -export const postServiceBankStatementDeleteBankStatement =
9476   - /* #__PURE__ */ (() => {
9477   - const method = 'post';
9478   - const url = '/service/bankStatement/deleteBankStatement';
9479   - function request(
9480   - option: PostServiceBankStatementDeleteBankStatementOption,
9481   - ): Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess> {
9482   - return requester(request.url, {
9483   - method: request.method,
9484   - ...option,
9485   - }) as unknown as Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess>;
9486   - }
  10158 +export const postServiceInvoiceExportInvoiceRecords = /* #__PURE__ */ (() => {
  10159 + const method = 'post';
  10160 + const url = '/service/invoice/exportInvoiceRecords';
  10161 + function request(
  10162 + option: PostServiceInvoiceExportInvoiceRecordsOption,
  10163 + ): Promise<PostServiceInvoiceExportInvoiceRecordsResponseSuccess> {
  10164 + return requester(request.url, {
  10165 + method: request.method,
  10166 + ...option,
  10167 + }) as unknown as Promise<PostServiceInvoiceExportInvoiceRecordsResponseSuccess>;
  10168 + }
9487 10169  
9488   - /** http method */
9489   - request.method = method;
9490   - /** request url */
9491   - request.url = url;
9492   - return request;
9493   - })();
  10170 + /** http method */
  10171 + request.method = method;
  10172 + /** request url */
  10173 + request.url = url;
  10174 + return request;
  10175 +})();
9494 10176  
9495   -/** @description request parameter type for postServiceBankStatementEditBankStatement */
9496   -export interface PostServiceBankStatementEditBankStatementOption {
  10177 +/** @description request parameter type for postServiceInvoiceFindInvoice */
  10178 +export interface PostServiceInvoiceFindInvoiceOption {
9497 10179 /**
9498 10180 * @description
9499 10181 * dto
... ... @@ -9506,8 +10188,8 @@ export interface PostServiceBankStatementEditBankStatementOption {
9506 10188 };
9507 10189 }
9508 10190  
9509   -/** @description response type for postServiceBankStatementEditBankStatement */
9510   -export interface PostServiceBankStatementEditBankStatementResponse {
  10191 +/** @description response type for postServiceInvoiceFindInvoice */
  10192 +export interface PostServiceInvoiceFindInvoiceResponse {
9511 10193 /**
9512 10194 * @description
9513 10195 * OK
... ... @@ -9535,42 +10217,57 @@ export interface PostServiceBankStatementEditBankStatementResponse {
9535 10217 404: any;
9536 10218 }
9537 10219  
9538   -export type PostServiceBankStatementEditBankStatementResponseSuccess =
9539   - PostServiceBankStatementEditBankStatementResponse[200];
  10220 +export type PostServiceInvoiceFindInvoiceResponseSuccess =
  10221 + PostServiceInvoiceFindInvoiceResponse[200];
9540 10222 /**
9541 10223 * @description
9542   - * 编辑银行流水
9543   - * @tags 银行流水
  10224 + * 不分页查询发票
  10225 + * @tags 发票
9544 10226 * @produces *
9545 10227 * @consumes application/json
9546 10228 */
9547   -export const postServiceBankStatementEditBankStatement =
9548   - /* #__PURE__ */ (() => {
9549   - const method = 'post';
9550   - const url = '/service/bankStatement/editBankStatement';
9551   - function request(
9552   - option: PostServiceBankStatementEditBankStatementOption,
9553   - ): Promise<PostServiceBankStatementEditBankStatementResponseSuccess> {
9554   - return requester(request.url, {
9555   - method: request.method,
9556   - ...option,
9557   - }) as unknown as Promise<PostServiceBankStatementEditBankStatementResponseSuccess>;
9558   - }
  10229 +export const postServiceInvoiceFindInvoice = /* #__PURE__ */ (() => {
  10230 + const method = 'post';
  10231 + const url = '/service/invoice/findInvoice';
  10232 + function request(
  10233 + option: PostServiceInvoiceFindInvoiceOption,
  10234 + ): Promise<PostServiceInvoiceFindInvoiceResponseSuccess> {
  10235 + return requester(request.url, {
  10236 + method: request.method,
  10237 + ...option,
  10238 + }) as unknown as Promise<PostServiceInvoiceFindInvoiceResponseSuccess>;
  10239 + }
9559 10240  
9560   - /** http method */
9561   - request.method = method;
9562   - /** request url */
9563   - request.url = url;
9564   - return request;
9565   - })();
  10241 + /** http method */
  10242 + request.method = method;
  10243 + /** request url */
  10244 + request.url = url;
  10245 + return request;
  10246 +})();
9566 10247  
9567   -/** @description response type for postServiceBankStatementExportTemplate */
9568   -export interface PostServiceBankStatementExportTemplateResponse {
  10248 +/** @description request parameter type for postServiceInvoiceGetInvoiceRecord */
  10249 +export interface PostServiceInvoiceGetInvoiceRecordOption {
  10250 + /**
  10251 + * @description
  10252 + * id
  10253 + * @format int64
  10254 + */
  10255 + query?: {
  10256 + /**
  10257 + @description
  10258 + id
  10259 + @format int64 */
  10260 + id?: number;
  10261 + };
  10262 +}
  10263 +
  10264 +/** @description response type for postServiceInvoiceGetInvoiceRecord */
  10265 +export interface PostServiceInvoiceGetInvoiceRecordResponse {
9569 10266 /**
9570 10267 * @description
9571 10268 * OK
9572 10269 */
9573   - 200: any;
  10270 + 200: ServerResult;
9574 10271 /**
9575 10272 * @description
9576 10273 * Created
... ... @@ -9593,22 +10290,25 @@ export interface PostServiceBankStatementExportTemplateResponse {
9593 10290 404: any;
9594 10291 }
9595 10292  
9596   -export type PostServiceBankStatementExportTemplateResponseSuccess =
9597   - PostServiceBankStatementExportTemplateResponse[200];
  10293 +export type PostServiceInvoiceGetInvoiceRecordResponseSuccess =
  10294 + PostServiceInvoiceGetInvoiceRecordResponse[200];
9598 10295 /**
9599 10296 * @description
9600   - * 下载银行流水模板
9601   - * @tags 银行流水
  10297 + * 获取开票记录
  10298 + * @tags 发票
9602 10299 * @produces *
9603 10300 * @consumes application/json
9604 10301 */
9605   -export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() => {
  10302 +export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() => {
9606 10303 const method = 'post';
9607   - const url = '/service/bankStatement/exportTemplate';
9608   - function request(): Promise<PostServiceBankStatementExportTemplateResponseSuccess> {
  10304 + const url = '/service/invoice/getInvoiceRecord';
  10305 + function request(
  10306 + option?: PostServiceInvoiceGetInvoiceRecordOption,
  10307 + ): Promise<PostServiceInvoiceGetInvoiceRecordResponseSuccess> {
9609 10308 return requester(request.url, {
9610 10309 method: request.method,
9611   - }) as unknown as Promise<PostServiceBankStatementExportTemplateResponseSuccess>;
  10310 + ...option,
  10311 + }) as unknown as Promise<PostServiceInvoiceGetInvoiceRecordResponseSuccess>;
9612 10312 }
9613 10313  
9614 10314 /** http method */
... ... @@ -9618,22 +10318,38 @@ export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() =&gt; {
9618 10318 return request;
9619 10319 })();
9620 10320  
9621   -/** @description request parameter type for postServiceBankStatementImportBankStatementForm */
9622   -export interface PostServiceBankStatementImportBankStatementFormOption {
  10321 +/** @description request parameter type for postServiceInvoiceImportInvoiceDetails */
  10322 +export interface PostServiceInvoiceImportInvoiceDetailsOption {
9623 10323 /**
9624 10324 * @description
9625   - * file
  10325 + * detailsExcel
9626 10326 */
9627 10327 formData: {
9628 10328 /**
9629 10329 @description
9630   - file */
9631   - file: File;
  10330 + detailsExcel */
  10331 + detailsExcel: File;
9632 10332 };
9633 10333 }
9634 10334  
9635   -/** @description response type for postServiceBankStatementImportBankStatementForm */
9636   -export interface PostServiceBankStatementImportBankStatementFormResponse {
  10335 +/** @description request parameter type for postServiceInvoiceImportInvoiceDetails */
  10336 +export interface PostServiceInvoiceImportInvoiceDetailsOption {
  10337 + /**
  10338 + * @description
  10339 + * invoiceRecordId
  10340 + * @format int64
  10341 + */
  10342 + query: {
  10343 + /**
  10344 + @description
  10345 + invoiceRecordId
  10346 + @format int64 */
  10347 + invoiceRecordId: number;
  10348 + };
  10349 +}
  10350 +
  10351 +/** @description response type for postServiceInvoiceImportInvoiceDetails */
  10352 +export interface PostServiceInvoiceImportInvoiceDetailsResponse {
9637 10353 /**
9638 10354 * @description
9639 10355 * OK
... ... @@ -9661,37 +10377,36 @@ export interface PostServiceBankStatementImportBankStatementFormResponse {
9661 10377 404: any;
9662 10378 }
9663 10379  
9664   -export type PostServiceBankStatementImportBankStatementFormResponseSuccess =
9665   - PostServiceBankStatementImportBankStatementFormResponse[200];
  10380 +export type PostServiceInvoiceImportInvoiceDetailsResponseSuccess =
  10381 + PostServiceInvoiceImportInvoiceDetailsResponse[200];
9666 10382 /**
9667 10383 * @description
9668   - * 导入银行流水表格
9669   - * @tags 银行流水
  10384 + * 导入发票明细
  10385 + * @tags 发票
9670 10386 * @produces *
9671 10387 * @consumes multipart/form-data
9672 10388 */
9673   -export const postServiceBankStatementImportBankStatementForm =
9674   - /* #__PURE__ */ (() => {
9675   - const method = 'post';
9676   - const url = '/service/bankStatement/importBankStatementForm';
9677   - function request(
9678   - option: PostServiceBankStatementImportBankStatementFormOption,
9679   - ): Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess> {
9680   - return requester(request.url, {
9681   - method: request.method,
9682   - ...option,
9683   - }) as unknown as Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess>;
9684   - }
  10389 +export const postServiceInvoiceImportInvoiceDetails = /* #__PURE__ */ (() => {
  10390 + const method = 'post';
  10391 + const url = '/service/invoice/importInvoiceDetails';
  10392 + function request(
  10393 + option: PostServiceInvoiceImportInvoiceDetailsOption,
  10394 + ): Promise<PostServiceInvoiceImportInvoiceDetailsResponseSuccess> {
  10395 + return requester(request.url, {
  10396 + method: request.method,
  10397 + ...option,
  10398 + }) as unknown as Promise<PostServiceInvoiceImportInvoiceDetailsResponseSuccess>;
  10399 + }
9685 10400  
9686   - /** http method */
9687   - request.method = method;
9688   - /** request url */
9689   - request.url = url;
9690   - return request;
9691   - })();
  10401 + /** http method */
  10402 + request.method = method;
  10403 + /** request url */
  10404 + request.url = url;
  10405 + return request;
  10406 +})();
9692 10407  
9693   -/** @description request parameter type for postServiceBankStatementQueryBankStatement */
9694   -export interface PostServiceBankStatementQueryBankStatementOption {
  10408 +/** @description request parameter type for postServiceInvoiceInvoiceWriteOff */
  10409 +export interface PostServiceInvoiceInvoiceWriteOffOption {
9695 10410 /**
9696 10411 * @description
9697 10412 * dto
... ... @@ -9700,12 +10415,12 @@ export interface PostServiceBankStatementQueryBankStatementOption {
9700 10415 /**
9701 10416 @description
9702 10417 dto */
9703   - dto: QueryBankStatementDto;
  10418 + dto: Dto;
9704 10419 };
9705 10420 }
9706 10421  
9707   -/** @description response type for postServiceBankStatementQueryBankStatement */
9708   -export interface PostServiceBankStatementQueryBankStatementResponse {
  10422 +/** @description response type for postServiceInvoiceInvoiceWriteOff */
  10423 +export interface PostServiceInvoiceInvoiceWriteOffResponse {
9709 10424 /**
9710 10425 * @description
9711 10426 * OK
... ... @@ -9733,37 +10448,36 @@ export interface PostServiceBankStatementQueryBankStatementResponse {
9733 10448 404: any;
9734 10449 }
9735 10450  
9736   -export type PostServiceBankStatementQueryBankStatementResponseSuccess =
9737   - PostServiceBankStatementQueryBankStatementResponse[200];
  10451 +export type PostServiceInvoiceInvoiceWriteOffResponseSuccess =
  10452 + PostServiceInvoiceInvoiceWriteOffResponse[200];
9738 10453 /**
9739 10454 * @description
9740   - * 查询银行流水
9741   - * @tags 银行流水
  10455 + * 发票核销
  10456 + * @tags 发票
9742 10457 * @produces *
9743 10458 * @consumes application/json
9744 10459 */
9745   -export const postServiceBankStatementQueryBankStatement =
9746   - /* #__PURE__ */ (() => {
9747   - const method = 'post';
9748   - const url = '/service/bankStatement/queryBankStatement';
9749   - function request(
9750   - option: PostServiceBankStatementQueryBankStatementOption,
9751   - ): Promise<PostServiceBankStatementQueryBankStatementResponseSuccess> {
9752   - return requester(request.url, {
9753   - method: request.method,
9754   - ...option,
9755   - }) as unknown as Promise<PostServiceBankStatementQueryBankStatementResponseSuccess>;
9756   - }
  10460 +export const postServiceInvoiceInvoiceWriteOff = /* #__PURE__ */ (() => {
  10461 + const method = 'post';
  10462 + const url = '/service/invoice/invoiceWriteOff';
  10463 + function request(
  10464 + option: PostServiceInvoiceInvoiceWriteOffOption,
  10465 + ): Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess> {
  10466 + return requester(request.url, {
  10467 + method: request.method,
  10468 + ...option,
  10469 + }) as unknown as Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess>;
  10470 + }
9757 10471  
9758   - /** http method */
9759   - request.method = method;
9760   - /** request url */
9761   - request.url = url;
9762   - return request;
9763   - })();
  10472 + /** http method */
  10473 + request.method = method;
  10474 + /** request url */
  10475 + request.url = url;
  10476 + return request;
  10477 +})();
9764 10478  
9765   -/** @description request parameter type for postServiceInvoiceAddInvoice */
9766   -export interface PostServiceInvoiceAddInvoiceOption {
  10479 +/** @description request parameter type for postServiceInvoiceInvoicing */
  10480 +export interface PostServiceInvoiceInvoicingOption {
9767 10481 /**
9768 10482 * @description
9769 10483 * dto
... ... @@ -9772,12 +10486,12 @@ export interface PostServiceInvoiceAddInvoiceOption {
9772 10486 /**
9773 10487 @description
9774 10488 dto */
9775   - dto: InvoiceDto;
  10489 + dto: Dto;
9776 10490 };
9777 10491 }
9778 10492  
9779   -/** @description response type for postServiceInvoiceAddInvoice */
9780   -export interface PostServiceInvoiceAddInvoiceResponse {
  10493 +/** @description response type for postServiceInvoiceInvoicing */
  10494 +export interface PostServiceInvoiceInvoicingResponse {
9781 10495 /**
9782 10496 * @description
9783 10497 * OK
... ... @@ -9805,25 +10519,25 @@ export interface PostServiceInvoiceAddInvoiceResponse {
9805 10519 404: any;
9806 10520 }
9807 10521  
9808   -export type PostServiceInvoiceAddInvoiceResponseSuccess =
9809   - PostServiceInvoiceAddInvoiceResponse[200];
  10522 +export type PostServiceInvoiceInvoicingResponseSuccess =
  10523 + PostServiceInvoiceInvoicingResponse[200];
9810 10524 /**
9811 10525 * @description
9812   - * 添加发
  10526 + *
9813 10527 * @tags 发票
9814 10528 * @produces *
9815 10529 * @consumes application/json
9816 10530 */
9817   -export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => {
  10531 +export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() => {
9818 10532 const method = 'post';
9819   - const url = '/service/invoice/addInvoice';
  10533 + const url = '/service/invoice/invoicing';
9820 10534 function request(
9821   - option: PostServiceInvoiceAddInvoiceOption,
9822   - ): Promise<PostServiceInvoiceAddInvoiceResponseSuccess> {
  10535 + option: PostServiceInvoiceInvoicingOption,
  10536 + ): Promise<PostServiceInvoiceInvoicingResponseSuccess> {
9823 10537 return requester(request.url, {
9824 10538 method: request.method,
9825 10539 ...option,
9826   - }) as unknown as Promise<PostServiceInvoiceAddInvoiceResponseSuccess>;
  10540 + }) as unknown as Promise<PostServiceInvoiceInvoicingResponseSuccess>;
9827 10541 }
9828 10542  
9829 10543 /** http method */
... ... @@ -9833,8 +10547,8 @@ export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() =&gt; {
9833 10547 return request;
9834 10548 })();
9835 10549  
9836   -/** @description request parameter type for postServiceInvoiceCancelInvoiceAndBankStatement */
9837   -export interface PostServiceInvoiceCancelInvoiceAndBankStatementOption {
  10550 +/** @description request parameter type for postServiceInvoiceModifyRecord */
  10551 +export interface PostServiceInvoiceModifyRecordOption {
9838 10552 /**
9839 10553 * @description
9840 10554 * dto
... ... @@ -9843,12 +10557,12 @@ export interface PostServiceInvoiceCancelInvoiceAndBankStatementOption {
9843 10557 /**
9844 10558 @description
9845 10559 dto */
9846   - dto: CancelInvoiceAndBankStatementDto;
  10560 + dto: InvoiceRecordDto;
9847 10561 };
9848 10562 }
9849 10563  
9850   -/** @description response type for postServiceInvoiceCancelInvoiceAndBankStatement */
9851   -export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse {
  10564 +/** @description response type for postServiceInvoiceModifyRecord */
  10565 +export interface PostServiceInvoiceModifyRecordResponse {
9852 10566 /**
9853 10567 * @description
9854 10568 * OK
... ... @@ -9876,37 +10590,36 @@ export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse {
9876 10590 404: any;
9877 10591 }
9878 10592  
9879   -export type PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess =
9880   - PostServiceInvoiceCancelInvoiceAndBankStatementResponse[200];
  10593 +export type PostServiceInvoiceModifyRecordResponseSuccess =
  10594 + PostServiceInvoiceModifyRecordResponse[200];
9881 10595 /**
9882 10596 * @description
9883   - * 取消发票与银行流水的关联
  10597 + * 修改开票记录
9884 10598 * @tags 发票
9885 10599 * @produces *
9886 10600 * @consumes application/json
9887 10601 */
9888   -export const postServiceInvoiceCancelInvoiceAndBankStatement =
9889   - /* #__PURE__ */ (() => {
9890   - const method = 'post';
9891   - const url = '/service/invoice/cancelInvoiceAndBankStatement';
9892   - function request(
9893   - option: PostServiceInvoiceCancelInvoiceAndBankStatementOption,
9894   - ): Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess> {
9895   - return requester(request.url, {
9896   - method: request.method,
9897   - ...option,
9898   - }) as unknown as Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess>;
9899   - }
  10602 +export const postServiceInvoiceModifyRecord = /* #__PURE__ */ (() => {
  10603 + const method = 'post';
  10604 + const url = '/service/invoice/modifyRecord';
  10605 + function request(
  10606 + option: PostServiceInvoiceModifyRecordOption,
  10607 + ): Promise<PostServiceInvoiceModifyRecordResponseSuccess> {
  10608 + return requester(request.url, {
  10609 + method: request.method,
  10610 + ...option,
  10611 + }) as unknown as Promise<PostServiceInvoiceModifyRecordResponseSuccess>;
  10612 + }
9900 10613  
9901   - /** http method */
9902   - request.method = method;
9903   - /** request url */
9904   - request.url = url;
9905   - return request;
9906   - })();
  10614 + /** http method */
  10615 + request.method = method;
  10616 + /** request url */
  10617 + request.url = url;
  10618 + return request;
  10619 +})();
9907 10620  
9908   -/** @description request parameter type for postServiceInvoiceDeleteInvoice */
9909   -export interface PostServiceInvoiceDeleteInvoiceOption {
  10621 +/** @description request parameter type for postServiceInvoiceQueryInvoice */
  10622 +export interface PostServiceInvoiceQueryInvoiceOption {
9910 10623 /**
9911 10624 * @description
9912 10625 * dto
... ... @@ -9919,8 +10632,8 @@ export interface PostServiceInvoiceDeleteInvoiceOption {
9919 10632 };
9920 10633 }
9921 10634  
9922   -/** @description response type for postServiceInvoiceDeleteInvoice */
9923   -export interface PostServiceInvoiceDeleteInvoiceResponse {
  10635 +/** @description response type for postServiceInvoiceQueryInvoice */
  10636 +export interface PostServiceInvoiceQueryInvoiceResponse {
9924 10637 /**
9925 10638 * @description
9926 10639 * OK
... ... @@ -9948,25 +10661,25 @@ export interface PostServiceInvoiceDeleteInvoiceResponse {
9948 10661 404: any;
9949 10662 }
9950 10663  
9951   -export type PostServiceInvoiceDeleteInvoiceResponseSuccess =
9952   - PostServiceInvoiceDeleteInvoiceResponse[200];
  10664 +export type PostServiceInvoiceQueryInvoiceResponseSuccess =
  10665 + PostServiceInvoiceQueryInvoiceResponse[200];
9953 10666 /**
9954 10667 * @description
9955   - * 删除发票
  10668 + * 发票页查询
9956 10669 * @tags 发票
9957 10670 * @produces *
9958 10671 * @consumes application/json
9959 10672 */
9960   -export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => {
  10673 +export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => {
9961 10674 const method = 'post';
9962   - const url = '/service/invoice/deleteInvoice';
  10675 + const url = '/service/invoice/queryInvoice';
9963 10676 function request(
9964   - option: PostServiceInvoiceDeleteInvoiceOption,
9965   - ): Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess> {
  10677 + option: PostServiceInvoiceQueryInvoiceOption,
  10678 + ): Promise<PostServiceInvoiceQueryInvoiceResponseSuccess> {
9966 10679 return requester(request.url, {
9967 10680 method: request.method,
9968 10681 ...option,
9969   - }) as unknown as Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess>;
  10682 + }) as unknown as Promise<PostServiceInvoiceQueryInvoiceResponseSuccess>;
9970 10683 }
9971 10684  
9972 10685 /** http method */
... ... @@ -9976,8 +10689,8 @@ export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() =&gt; {
9976 10689 return request;
9977 10690 })();
9978 10691  
9979   -/** @description request parameter type for postServiceInvoiceFindInvoice */
9980   -export interface PostServiceInvoiceFindInvoiceOption {
  10692 +/** @description request parameter type for postServiceInvoiceQueryInvoiceDetail */
  10693 +export interface PostServiceInvoiceQueryInvoiceDetailOption {
9981 10694 /**
9982 10695 * @description
9983 10696 * dto
... ... @@ -9986,12 +10699,12 @@ export interface PostServiceInvoiceFindInvoiceOption {
9986 10699 /**
9987 10700 @description
9988 10701 dto */
9989   - dto: Dto;
  10702 + dto: QueryInvoiceDetailDto;
9990 10703 };
9991 10704 }
9992 10705  
9993   -/** @description response type for postServiceInvoiceFindInvoice */
9994   -export interface PostServiceInvoiceFindInvoiceResponse {
  10706 +/** @description response type for postServiceInvoiceQueryInvoiceDetail */
  10707 +export interface PostServiceInvoiceQueryInvoiceDetailResponse {
9995 10708 /**
9996 10709 * @description
9997 10710 * OK
... ... @@ -10019,25 +10732,25 @@ export interface PostServiceInvoiceFindInvoiceResponse {
10019 10732 404: any;
10020 10733 }
10021 10734  
10022   -export type PostServiceInvoiceFindInvoiceResponseSuccess =
10023   - PostServiceInvoiceFindInvoiceResponse[200];
  10735 +export type PostServiceInvoiceQueryInvoiceDetailResponseSuccess =
  10736 + PostServiceInvoiceQueryInvoiceDetailResponse[200];
10024 10737 /**
10025 10738 * @description
10026   - * 不分页查询发票
  10739 + * 查看发票详情
10027 10740 * @tags 发票
10028 10741 * @produces *
10029 10742 * @consumes application/json
10030 10743 */
10031   -export const postServiceInvoiceFindInvoice = /* #__PURE__ */ (() => {
  10744 +export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => {
10032 10745 const method = 'post';
10033   - const url = '/service/invoice/findInvoice';
  10746 + const url = '/service/invoice/queryInvoiceDetail';
10034 10747 function request(
10035   - option: PostServiceInvoiceFindInvoiceOption,
10036   - ): Promise<PostServiceInvoiceFindInvoiceResponseSuccess> {
  10748 + option: PostServiceInvoiceQueryInvoiceDetailOption,
  10749 + ): Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess> {
10037 10750 return requester(request.url, {
10038 10751 method: request.method,
10039 10752 ...option,
10040   - }) as unknown as Promise<PostServiceInvoiceFindInvoiceResponseSuccess>;
  10753 + }) as unknown as Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess>;
10041 10754 }
10042 10755  
10043 10756 /** http method */
... ... @@ -10047,8 +10760,8 @@ export const postServiceInvoiceFindInvoice = /* #__PURE__ */ (() =&gt; {
10047 10760 return request;
10048 10761 })();
10049 10762  
10050   -/** @description request parameter type for postServiceInvoiceInvoiceWriteOff */
10051   -export interface PostServiceInvoiceInvoiceWriteOffOption {
  10763 +/** @description request parameter type for postServiceInvoiceQueryInvoiceRecordList */
  10764 +export interface PostServiceInvoiceQueryInvoiceRecordListOption {
10052 10765 /**
10053 10766 * @description
10054 10767 * dto
... ... @@ -10057,12 +10770,12 @@ export interface PostServiceInvoiceInvoiceWriteOffOption {
10057 10770 /**
10058 10771 @description
10059 10772 dto */
10060   - dto: Dto;
  10773 + dto: QueryInvoiceRecordDto;
10061 10774 };
10062 10775 }
10063 10776  
10064   -/** @description response type for postServiceInvoiceInvoiceWriteOff */
10065   -export interface PostServiceInvoiceInvoiceWriteOffResponse {
  10777 +/** @description response type for postServiceInvoiceQueryInvoiceRecordList */
  10778 +export interface PostServiceInvoiceQueryInvoiceRecordListResponse {
10066 10779 /**
10067 10780 * @description
10068 10781 * OK
... ... @@ -10090,25 +10803,25 @@ export interface PostServiceInvoiceInvoiceWriteOffResponse {
10090 10803 404: any;
10091 10804 }
10092 10805  
10093   -export type PostServiceInvoiceInvoiceWriteOffResponseSuccess =
10094   - PostServiceInvoiceInvoiceWriteOffResponse[200];
  10806 +export type PostServiceInvoiceQueryInvoiceRecordListResponseSuccess =
  10807 + PostServiceInvoiceQueryInvoiceRecordListResponse[200];
10095 10808 /**
10096 10809 * @description
10097   - * 发票核销
  10810 + * 获取开票记录列表
10098 10811 * @tags 发票
10099 10812 * @produces *
10100 10813 * @consumes application/json
10101 10814 */
10102   -export const postServiceInvoiceInvoiceWriteOff = /* #__PURE__ */ (() => {
  10815 +export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() => {
10103 10816 const method = 'post';
10104   - const url = '/service/invoice/invoiceWriteOff';
  10817 + const url = '/service/invoice/queryInvoiceRecordList';
10105 10818 function request(
10106   - option: PostServiceInvoiceInvoiceWriteOffOption,
10107   - ): Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess> {
  10819 + option: PostServiceInvoiceQueryInvoiceRecordListOption,
  10820 + ): Promise<PostServiceInvoiceQueryInvoiceRecordListResponseSuccess> {
10108 10821 return requester(request.url, {
10109 10822 method: request.method,
10110 10823 ...option,
10111   - }) as unknown as Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess>;
  10824 + }) as unknown as Promise<PostServiceInvoiceQueryInvoiceRecordListResponseSuccess>;
10112 10825 }
10113 10826  
10114 10827 /** http method */
... ... @@ -10118,8 +10831,57 @@ export const postServiceInvoiceInvoiceWriteOff = /* #__PURE__ */ (() =&gt; {
10118 10831 return request;
10119 10832 })();
10120 10833  
10121   -/** @description request parameter type for postServiceInvoiceQueryInvoice */
10122   -export interface PostServiceInvoiceQueryInvoiceOption {
  10834 +/** @description response type for getServiceInvoiceQueryReadyInvoiceRecordList */
  10835 +export interface GetServiceInvoiceQueryReadyInvoiceRecordListResponse {
  10836 + /**
  10837 + * @description
  10838 + * OK
  10839 + */
  10840 + 200: ServerResult;
  10841 + /**
  10842 + * @description
  10843 + * Unauthorized
  10844 + */
  10845 + 401: any;
  10846 + /**
  10847 + * @description
  10848 + * Forbidden
  10849 + */
  10850 + 403: any;
  10851 + /**
  10852 + * @description
  10853 + * Not Found
  10854 + */
  10855 + 404: any;
  10856 +}
  10857 +
  10858 +export type GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess =
  10859 + GetServiceInvoiceQueryReadyInvoiceRecordListResponse[200];
  10860 +/**
  10861 + * @description
  10862 + * 获取要开票记录列表
  10863 + * @tags 发票
  10864 + * @produces *
  10865 + */
  10866 +export const getServiceInvoiceQueryReadyInvoiceRecordList =
  10867 + /* #__PURE__ */ (() => {
  10868 + const method = 'get';
  10869 + const url = '/service/invoice/queryReadyInvoiceRecordList';
  10870 + function request(): Promise<GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess> {
  10871 + return requester(request.url, {
  10872 + method: request.method,
  10873 + }) as unknown as Promise<GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess>;
  10874 + }
  10875 +
  10876 + /** http method */
  10877 + request.method = method;
  10878 + /** request url */
  10879 + request.url = url;
  10880 + return request;
  10881 + })();
  10882 +
  10883 +/** @description request parameter type for postServiceInvoiceReissue */
  10884 +export interface PostServiceInvoiceReissueOption {
10123 10885 /**
10124 10886 * @description
10125 10887 * dto
... ... @@ -10128,12 +10890,12 @@ export interface PostServiceInvoiceQueryInvoiceOption {
10128 10890 /**
10129 10891 @description
10130 10892 dto */
10131   - dto: Dto;
  10893 + dto: ReissueInvoiceDto;
10132 10894 };
10133 10895 }
10134 10896  
10135   -/** @description response type for postServiceInvoiceQueryInvoice */
10136   -export interface PostServiceInvoiceQueryInvoiceResponse {
  10897 +/** @description response type for postServiceInvoiceReissue */
  10898 +export interface PostServiceInvoiceReissueResponse {
10137 10899 /**
10138 10900 * @description
10139 10901 * OK
... ... @@ -10161,25 +10923,25 @@ export interface PostServiceInvoiceQueryInvoiceResponse {
10161 10923 404: any;
10162 10924 }
10163 10925  
10164   -export type PostServiceInvoiceQueryInvoiceResponseSuccess =
10165   - PostServiceInvoiceQueryInvoiceResponse[200];
  10926 +export type PostServiceInvoiceReissueResponseSuccess =
  10927 + PostServiceInvoiceReissueResponse[200];
10166 10928 /**
10167 10929 * @description
10168   - * 发票页查询
  10930 + * 重新开票
10169 10931 * @tags 发票
10170 10932 * @produces *
10171 10933 * @consumes application/json
10172 10934 */
10173   -export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => {
  10935 +export const postServiceInvoiceReissue = /* #__PURE__ */ (() => {
10174 10936 const method = 'post';
10175   - const url = '/service/invoice/queryInvoice';
  10937 + const url = '/service/invoice/reissue';
10176 10938 function request(
10177   - option: PostServiceInvoiceQueryInvoiceOption,
10178   - ): Promise<PostServiceInvoiceQueryInvoiceResponseSuccess> {
  10939 + option: PostServiceInvoiceReissueOption,
  10940 + ): Promise<PostServiceInvoiceReissueResponseSuccess> {
10179 10941 return requester(request.url, {
10180 10942 method: request.method,
10181 10943 ...option,
10182   - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceResponseSuccess>;
  10944 + }) as unknown as Promise<PostServiceInvoiceReissueResponseSuccess>;
10183 10945 }
10184 10946  
10185 10947 /** http method */
... ... @@ -10189,8 +10951,8 @@ export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() =&gt; {
10189 10951 return request;
10190 10952 })();
10191 10953  
10192   -/** @description request parameter type for postServiceInvoiceQueryInvoiceDetail */
10193   -export interface PostServiceInvoiceQueryInvoiceDetailOption {
  10954 +/** @description request parameter type for postServiceInvoiceReissueAudit */
  10955 +export interface PostServiceInvoiceReissueAuditOption {
10194 10956 /**
10195 10957 * @description
10196 10958 * dto
... ... @@ -10199,12 +10961,12 @@ export interface PostServiceInvoiceQueryInvoiceDetailOption {
10199 10961 /**
10200 10962 @description
10201 10963 dto */
10202   - dto: QueryInvoiceDetailDto;
  10964 + dto: AuditDto;
10203 10965 };
10204 10966 }
10205 10967  
10206   -/** @description response type for postServiceInvoiceQueryInvoiceDetail */
10207   -export interface PostServiceInvoiceQueryInvoiceDetailResponse {
  10968 +/** @description response type for postServiceInvoiceReissueAudit */
  10969 +export interface PostServiceInvoiceReissueAuditResponse {
10208 10970 /**
10209 10971 * @description
10210 10972 * OK
... ... @@ -10232,25 +10994,25 @@ export interface PostServiceInvoiceQueryInvoiceDetailResponse {
10232 10994 404: any;
10233 10995 }
10234 10996  
10235   -export type PostServiceInvoiceQueryInvoiceDetailResponseSuccess =
10236   - PostServiceInvoiceQueryInvoiceDetailResponse[200];
  10997 +export type PostServiceInvoiceReissueAuditResponseSuccess =
  10998 + PostServiceInvoiceReissueAuditResponse[200];
10237 10999 /**
10238 11000 * @description
10239   - * 查看发票详情
  11001 + * 重新开票审核
10240 11002 * @tags 发票
10241 11003 * @produces *
10242 11004 * @consumes application/json
10243 11005 */
10244   -export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => {
  11006 +export const postServiceInvoiceReissueAudit = /* #__PURE__ */ (() => {
10245 11007 const method = 'post';
10246   - const url = '/service/invoice/queryInvoiceDetail';
  11008 + const url = '/service/invoice/reissueAudit';
10247 11009 function request(
10248   - option: PostServiceInvoiceQueryInvoiceDetailOption,
10249   - ): Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess> {
  11010 + option: PostServiceInvoiceReissueAuditOption,
  11011 + ): Promise<PostServiceInvoiceReissueAuditResponseSuccess> {
10250 11012 return requester(request.url, {
10251 11013 method: request.method,
10252 11014 ...option,
10253   - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess>;
  11015 + }) as unknown as Promise<PostServiceInvoiceReissueAuditResponseSuccess>;
10254 11016 }
10255 11017  
10256 11018 /** http method */
... ... @@ -10260,8 +11022,8 @@ export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() =&gt; {
10260 11022 return request;
10261 11023 })();
10262 11024  
10263   -/** @description request parameter type for postServiceInvoiceReissue */
10264   -export interface PostServiceInvoiceReissueOption {
  11025 +/** @description request parameter type for postServiceInvoiceUrgentInvoicing */
  11026 +export interface PostServiceInvoiceUrgentInvoicingOption {
10265 11027 /**
10266 11028 * @description
10267 11029 * dto
... ... @@ -10270,12 +11032,12 @@ export interface PostServiceInvoiceReissueOption {
10270 11032 /**
10271 11033 @description
10272 11034 dto */
10273   - dto: ReissueInvoiceDto;
  11035 + dto: AuditDto;
10274 11036 };
10275 11037 }
10276 11038  
10277   -/** @description response type for postServiceInvoiceReissue */
10278   -export interface PostServiceInvoiceReissueResponse {
  11039 +/** @description response type for postServiceInvoiceUrgentInvoicing */
  11040 +export interface PostServiceInvoiceUrgentInvoicingResponse {
10279 11041 /**
10280 11042 * @description
10281 11043 * OK
... ... @@ -10303,25 +11065,25 @@ export interface PostServiceInvoiceReissueResponse {
10303 11065 404: any;
10304 11066 }
10305 11067  
10306   -export type PostServiceInvoiceReissueResponseSuccess =
10307   - PostServiceInvoiceReissueResponse[200];
  11068 +export type PostServiceInvoiceUrgentInvoicingResponseSuccess =
  11069 + PostServiceInvoiceUrgentInvoicingResponse[200];
10308 11070 /**
10309 11071 * @description
10310   - * 重新开票
  11072 + * 加急开票审核
10311 11073 * @tags 发票
10312 11074 * @produces *
10313 11075 * @consumes application/json
10314 11076 */
10315   -export const postServiceInvoiceReissue = /* #__PURE__ */ (() => {
  11077 +export const postServiceInvoiceUrgentInvoicing = /* #__PURE__ */ (() => {
10316 11078 const method = 'post';
10317   - const url = '/service/invoice/reissue';
  11079 + const url = '/service/invoice/urgentInvoicing';
10318 11080 function request(
10319   - option: PostServiceInvoiceReissueOption,
10320   - ): Promise<PostServiceInvoiceReissueResponseSuccess> {
  11081 + option: PostServiceInvoiceUrgentInvoicingOption,
  11082 + ): Promise<PostServiceInvoiceUrgentInvoicingResponseSuccess> {
10321 11083 return requester(request.url, {
10322 11084 method: request.method,
10323 11085 ...option,
10324   - }) as unknown as Promise<PostServiceInvoiceReissueResponseSuccess>;
  11086 + }) as unknown as Promise<PostServiceInvoiceUrgentInvoicingResponseSuccess>;
10325 11087 }
10326 11088  
10327 11089 /** http method */
... ...