Commit fc0281959e5ce160ee886687ad84afc56c092a76

Authored by 曾国涛
2 parents 80092cd1 e0b4e44b

Merge branch 'master' into warning

# Conflicts:
#	src/pages/Invoice/Invoice/components/AddBankStatementModal.tsx
#	src/pages/Invoice/Invoice/components/InvoiceVerificationModal.tsx
#	src/pages/Invoice/Invoice/components/invoiceWriteOffModal.tsx
#	src/pages/Invoice/InvoiceVerification/index.tsx
#	src/pages/Order/Order/index.tsx
#	src/services/request.ts
src/pages/Invoice/Invoice/components/AddBankStatementModal.tsx
... ... @@ -14,11 +14,21 @@ export default ({ getRows, onFinish }) => {
14 14 dataIndex: 'id',
15 15 },
16 16 {
  17 + title: '编号',
  18 + hideInTable: true,
  19 + dataIndex: 'id',
  20 + },
  21 + {
17 22 title: '流水号',
18 23 hideInSearch: true,
19 24 dataIndex: 'serialNumber',
20 25 },
21 26 {
  27 + title: '流水号',
  28 + hideInTable: true,
  29 + dataIndex: 'serialNumber',
  30 + },
  31 + {
22 32 title: '收款时间',
23 33 dataIndex: 'collectionDatetime',
24 34 hideInSearch: true,
... ... @@ -26,7 +36,7 @@ export default ({ getRows, onFinish }) => {
26 36 },
27 37 {
28 38 title: '收款方',
29   - hideInTable: true,
  39 + hideInSearch: true,
30 40 dataIndex: 'payeeText',
31 41 },
32 42 {
... ...
src/pages/Invoice/Invoice/components/InvoiceVerificationModal.tsx
... ... @@ -20,7 +20,6 @@ export default ({ invoiceId, setVisible, onClose }) => {
20 20 const [bankChooseModalVisible, setBankChooseModalVisible] = useState(false);
21 21 const [invoiceInfo, setInvoiceInfo] = useState({});
22 22 const [relationOrderIds, setRelationOrderIds] = useState([]);
23   - const [setRelationBankStatements] = useState([]);
24 23 const actionRef = useRef<ActionType>();
25 24  
26 25 const loadInvoiceData = async () => {
... ... @@ -31,7 +30,6 @@ export default ({ invoiceId, setVisible, onClose }) =&gt; {
31 30 setInvoiceInfo(res.data);
32 31 setRelationOrderIds(res.data.mainOrderIds);
33 32 console.log('bs:' + res.data.bankStatementDtos);
34   - setRelationBankStatements(res.data.bankStatementDtos);
35 33 }
36 34 };
37 35  
... ... @@ -117,6 +115,18 @@ export default ({ invoiceId, setVisible, onClose }) =&gt; {
117 115 },
118 116 {
119 117 key: '11',
  118 + label: '订单类型',
  119 + children: invoiceInfo?.orderTypeText,
  120 + span: 12,
  121 + },
  122 + {
  123 + key: '12',
  124 + label: '绑定流水号',
  125 + children: invoiceInfo?.serialNumbersTextByOrder,
  126 + span: 12,
  127 + },
  128 + {
  129 + key: '13',
120 130 label: '备注',
121 131 children: invoiceInfo?.notes,
122 132 span: 24,
... ...
src/pages/Invoice/Invoice/components/invoiceWriteOffModal.tsx
... ... @@ -30,24 +30,29 @@ export default ({ getData, triggerButton, readOnly }) =&gt; {
30 30 {
31 31 title: '发票号码',
32 32 dataIndex: 'invoiceNumber',
  33 + ellipsis: true,
33 34 },
34 35 {
35 36 title: '收款方',
36 37 dataIndex: 'payeeText',
  38 + ellipsis: true,
37 39 },
38 40 {
39 41 title: '付款方',
40 42 dataIndex: 'purchaser',
  43 + ellipsis: true,
41 44 },
42 45 {
43 46 title: '金额',
44 47 dataIndex: 'money',
45 48 valueType: 'money',
  49 + ellipsis: true,
46 50 },
47 51 {
48 52 title: '日期',
49 53 dataIndex: 'invoicingTime',
50 54 valueType: 'date',
  55 + ellipsis: true,
51 56 },
52 57 ];
53 58 if (!readOnly) {
... ... @@ -84,24 +89,29 @@ export default ({ getData, triggerButton, readOnly }) =&gt; {
84 89 {
85 90 title: '流水号',
86 91 dataIndex: 'serialNumber',
  92 + ellipsis: true,
87 93 },
88 94 {
89 95 title: '收款方',
90 96 dataIndex: 'payeeText',
  97 + ellipsis: true,
91 98 },
92 99 {
93 100 title: '付款方',
94 101 dataIndex: 'payer',
  102 + ellipsis: true,
95 103 },
96 104 {
97 105 title: '金额',
98 106 dataIndex: 'amount',
99 107 valueType: 'money',
  108 + ellipsis: true,
100 109 },
101 110 {
102 111 title: '日期',
103 112 dataIndex: 'collectionDatetime',
104 113 valueType: 'date',
  114 + ellipsis: true,
105 115 },
106 116 ];
107 117 columns.push({
... ... @@ -153,9 +163,9 @@ export default ({ getData, triggerButton, readOnly }) =&gt; {
153 163 return getData();
154 164 }}
155 165 /*initialValues={{
156   - invoiceWriteOffId:invoiceWriteOffId,
157   - invoices:originInvoices,
158   - }}*/
  166 + invoiceWriteOffId:invoiceWriteOffId,
  167 + invoices:originInvoices,
  168 + }}*/
159 169 >
160 170 <ProFormText name={'invoiceWriteOffId'} hidden={true}></ProFormText>
161 171  
... ...
src/pages/Invoice/Invoice/index.tsx
... ... @@ -11,6 +11,7 @@ import {
11 11 postServiceInvoiceGetWriteOffRecord,
12 12 postServiceInvoiceQueryInvoice,
13 13 } from '@/services';
  14 +import { orderExport } from '@/services/order';
14 15 import { enumValueToLabel, formatDateTime } from '@/utils';
15 16 import { formatDate } from '@/utils/time';
16 17 import { ActionType, ProTable } from '@ant-design/pro-components';
... ... @@ -23,6 +24,7 @@ const InvoiceRecord = () =&gt; {
23 24 const [invoiceVerificationVisible, setInvoiceVerificationVisible] =
24 25 useState(false);
25 26 const [invoiceId, setInvoiceId] = useState(undefined);
  27 + const [messageApi, contextHolder] = message.useMessage();
26 28 const reloadInvoiceTable = () => {
27 29 invoiceActionRef.current?.reload();
28 30 };
... ... @@ -216,6 +218,31 @@ const InvoiceRecord = () =&gt; {
216 218 rowKey="id"
217 219 search={{
218 220 labelWidth: 'auto',
  221 + optionRender: (searchConfig, formProps, dom) => [
  222 + ...dom.reverse(),
  223 + <Button
  224 + key="out"
  225 + onClick={() => {
  226 + const values = searchConfig?.form?.getFieldsValue();
  227 + messageApi.open({
  228 + type: 'loading',
  229 + content: '导出中...',
  230 + duration: 0,
  231 + });
  232 + orderExport(
  233 + '/api/service/invoice/exportInvoices',
  234 + '发票.xlsx',
  235 + 'POST',
  236 + values,
  237 + () => {
  238 + messageApi.destroy();
  239 + },
  240 + );
  241 + }}
  242 + >
  243 + 导出
  244 + </Button>,
  245 + ],
219 246 }}
220 247 options={{
221 248 setting: {
... ... @@ -265,6 +292,7 @@ const InvoiceRecord = () =&gt; {
265 292 ) : (
266 293 ''
267 294 )}
  295 + {contextHolder}
268 296 </div>
269 297 );
270 298 };
... ...
src/pages/Invoice/InvoiceVerification/index.tsx
... ... @@ -16,6 +16,7 @@ import {
16 16 postServiceBankStatementQueryBankStatement,
17 17 postServiceInvoiceGetWriteOffRecord,
18 18 } from '@/services';
  19 +import { orderExport } from '@/services/order';
19 20 import { enumValueToLabel, formatDateTime } from '@/utils';
20 21 import { formatDate } from '@/utils/time';
21 22 import { PlusOutlined } from '@ant-design/icons';
... ... @@ -29,6 +30,7 @@ const InvoiceRecord = () =&gt; {
29 30 const [bankImportModalVisible, setBankImportModalVisible] = useState(false);
30 31 const [invoiceVerificationVisible, setInvoiceVerificationVisible] =
31 32 useState(false);
  33 + const [messageApi, contextHolder] = message.useMessage();
32 34 const [invoiceId] = useState(undefined);
33 35 const [invoiceRecordDetailVisible, setInvoiceRecordDetailVisible] =
34 36 useState(false);
... ... @@ -139,6 +141,7 @@ const InvoiceRecord = () =&gt; {
139 141 btns.push(
140 142 <InvoiceWriteOffModal
141 143 getData={async () => {
  144 + console.log(record.writeOffId);
142 145 const res = await postServiceInvoiceGetWriteOffRecord({
143 146 data: { id: record.writeOffId },
144 147 });
... ... @@ -225,6 +228,31 @@ const InvoiceRecord = () =&gt; {
225 228 rowKey="id"
226 229 search={{
227 230 labelWidth: 'auto',
  231 + optionRender: (searchConfig, formProps, dom) => [
  232 + ...dom.reverse(),
  233 + <Button
  234 + key="out"
  235 + onClick={() => {
  236 + const values = searchConfig?.form?.getFieldsValue();
  237 + messageApi.open({
  238 + type: 'loading',
  239 + content: '导出中...',
  240 + duration: 0,
  241 + });
  242 + orderExport(
  243 + '/api/service/invoice/exportBankStatements',
  244 + '银行流水.xlsx',
  245 + 'POST',
  246 + values,
  247 + () => {
  248 + messageApi.destroy();
  249 + },
  250 + );
  251 + }}
  252 + >
  253 + 导出
  254 + </Button>,
  255 + ],
228 256 }}
229 257 options={{
230 258 setting: {
... ... @@ -283,6 +311,7 @@ const InvoiceRecord = () =&gt; {
283 311 ) : (
284 312 ''
285 313 )}
  314 + {contextHolder}
286 315 </div>
287 316 );
288 317 };
... ...
src/pages/Invoice/constant.tsx
... ... @@ -78,6 +78,43 @@ export const INVOICE_COLUMNS = [
78 78 hideInTable: true,
79 79 },
80 80 {
  81 + title: '订单状态',
  82 + dataIndex: 'orderTypeText',
  83 + valueType: 'text',
  84 + width: 180,
  85 + },
  86 + {
  87 + title: '绑定流水号',
  88 + dataIndex: 'serialNumbersTextByOrder',
  89 +
  90 + valueType: 'text',
  91 + width: 180,
  92 + },
  93 + {
  94 + title: '是否预付款',
  95 + dataIndex: 'orderIsPrePay',
  96 + valueType: 'select',
  97 + valueEnum: {
  98 + true: {
  99 + text: '是',
  100 + status: true,
  101 + },
  102 + false: {
  103 + text: '否',
  104 + status: false,
  105 + },
  106 + },
  107 + hideInTable: true,
  108 + width: 180,
  109 + },
  110 + {
  111 + title: '绑定流水号',
  112 + dataIndex: 'serialNumberLike',
  113 + hideInTable: true,
  114 + valueType: 'text',
  115 + width: 180,
  116 + },
  117 + {
81 118 title: '购买方',
82 119 dataIndex: 'purchaser',
83 120 valueType: 'text',
... ...
src/pages/Order/Order/index.tsx
... ... @@ -211,6 +211,7 @@ const OrderPage = () =&gt; {
211 211 const [ids, setIds] = useState([]);
212 212 const [recordOptNode, setRecordOptNode] = useState(null);
213 213 const roleCode = userInfo?.roleSmallVO?.code;
  214 + const roles = userInfo?.roles;
214 215 const canMergeInvoicing = useMemo(() => {
215 216 if (subOrderSelectedMap.size === 0) {
216 217 return false;
... ... @@ -224,6 +225,7 @@ const OrderPage = () =&gt; {
224 225 .every((subItem) => subItem.paths.includes('applyInvoicing_old'));
225 226 }, [selectedSubOrderKeys]);
226 227  
  228 + console.log(JSON.stringify(userInfo));
227 229 const triggerRecordOptNode = async (id) => {
228 230 const res = await postServiceOrderGetCurrentOptNode({
229 231 query: {
... ... @@ -2092,8 +2094,9 @@ const OrderPage = () =&gt; {
2092 2094 title="已和客户确认发票??"
2093 2095 text="确认发票"
2094 2096 onConfirm={async () => {
  2097 + let body = { ids: [optRecord.id] };
2095 2098 const data = await postServiceOrderConfirmInvoice({
2096   - data: [optRecord.id],
  2099 + data: body,
2097 2100 });
2098 2101 if (data.result === RESPONSE_CODE.SUCCESS) {
2099 2102 message.success(data.message);
... ... @@ -2104,7 +2107,6 @@ const OrderPage = () =&gt; {
2104 2107 ) : (
2105 2108 ''
2106 2109 )}
2107   -
2108 2110 {optRecord.paths?.includes('orderCancel') ? (
2109 2111 <ButtonConfirm
2110 2112 className="p-0"
... ... @@ -3885,12 +3887,15 @@ const OrderPage = () =&gt; {
3885 3887 title="已和客户确认发票?"
3886 3888 text="确认发票"
3887 3889 onConfirm={async () => {
3888   - const data = await postServiceOrderConfirmInvoice({
3889   - data: [
  3890 + let body = {
  3891 + ids: [
3890 3892 ...record.subOrderInformationLists.map(
3891 3893 (subOrder) => subOrder.id,
3892 3894 ),
3893 3895 ],
  3896 + };
  3897 + const data = await postServiceOrderConfirmInvoice({
  3898 + data: body,
3894 3899 });
3895 3900 if (data.result === RESPONSE_CODE.SUCCESS) {
3896 3901 message.success(data.message);
... ... @@ -4038,7 +4043,7 @@ const OrderPage = () =&gt; {
4038 4043 /**
4039 4044 * 采购的订单状态筛选内容
4040 4045 */
4041   - if (roleCode === 'procure' && item.dataIndex === 'orderStatus') {
  4046 + if (roles.includes('PROCURE') && item.dataIndex === 'orderStatus') {
4042 4047 item.valueEnum = enumToProTableEnumValue(
4043 4048 PROCURE_PRIMARY_ORDER_STATUS_OPTIONS,
4044 4049 );
... ... @@ -4050,7 +4055,12 @@ const OrderPage = () =&gt; {
4050 4055 /**
4051 4056 * 采购可以筛选供应商备注
4052 4057 */
4053   - if ((roleCode === 'procure' || roleCode === 'admin') && !isSupplier()) {
  4058 + if (
  4059 + (roleCode === 'procure' ||
  4060 + roles.includes('PROCURE') ||
  4061 + roleCode === 'admin') &&
  4062 + !isSupplier()
  4063 + ) {
4054 4064 mainOrdersColumns.push({
4055 4065 title: '供应商备注',
4056 4066 width: 120,
... ... @@ -4063,7 +4073,12 @@ const OrderPage = () =&gt; {
4063 4073 /**
4064 4074 * 采购可以筛选其他采购
4065 4075 */
4066   - if ((roleCode === 'procure' || roleCode === 'admin') && !isSupplier()) {
  4076 + if (
  4077 + (roleCode === 'procure' ||
  4078 + roles.includes('PROCURE') ||
  4079 + roleCode === 'admin') &&
  4080 + !isSupplier()
  4081 + ) {
4067 4082 mainOrdersColumns.push({
4068 4083 title: '采购名称',
4069 4084 width: 120,
... ... @@ -4083,7 +4098,12 @@ const OrderPage = () =&gt; {
4083 4098 /**
4084 4099 * 排除采购
4085 4100 */
4086   - if ((roleCode === 'procure' || roleCode === 'admin') && !isSupplier()) {
  4101 + if (
  4102 + (roleCode === 'procure' ||
  4103 + roles.includes('PROCURE') ||
  4104 + roleCode === 'admin') &&
  4105 + !isSupplier()
  4106 + ) {
4087 4107 mainOrdersColumns.push({
4088 4108 title: '采购排除',
4089 4109 width: 120,
... ... @@ -4118,7 +4138,11 @@ const OrderPage = () =&gt; {
4118 4138 }
4119 4139  
4120 4140 //判断是否是采购,是的话新增一个筛选条件
4121   - if (roleCode === 'procure' || roleCode === 'admin') {
  4141 + if (
  4142 + roleCode === 'procure' ||
  4143 + roles.includes('PROCURE') ||
  4144 + roleCode === 'admin'
  4145 + ) {
4122 4146 mainOrdersColumns.push({
4123 4147 title: isSupplier() ? '下单状态' : '采购下单状态',
4124 4148 dataIndex: 'procureOrderStatus',
... ... @@ -4147,7 +4171,7 @@ const OrderPage = () =&gt; {
4147 4171 }
4148 4172  
4149 4173 //采购可以筛选出需要处理的订单
4150   - if (roleCode === 'procure' && !isSupplier()) {
  4174 + if (roles.includes('PROCURE') && !isSupplier()) {
4151 4175 radios.push(<Radio value={60}>其他采购</Radio>);
4152 4176 radios.push(<Radio value={10}>待处理</Radio>);
4153 4177 }
... ... @@ -4331,7 +4355,7 @@ const OrderPage = () =&gt; {
4331 4355 key="out"
4332 4356 onClick={() => {
4333 4357 setIsMainOrder(true);
4334   - if (roleCode === 'procure') {
  4358 + if (roles.includes('PROCURE')) {
4335 4359 setProcureCheckModalVisible(true);
4336 4360 }
4337 4361  
... ...
src/pages/ResearchGroup/components/ResearchGroupAddModal.tsx
... ... @@ -267,9 +267,15 @@ export default ({ setVisible, researchGroupId, onClose }) =&gt; {
267 267 let uidIdMap = new Map(
268 268 accounts.map((item: any) => [item.accountId, item.id]),
269 269 );
270   - let res = await postCanrdApiUserList({
271   - data: { uids: accountIds, phones: phones },
272   - });
  270 + let data = {};
  271 + if (accountIds.length > 0) {
  272 + data = { ...data, uids: accountIds };
  273 + }
  274 + if (phones.length > 0) {
  275 + data = { ...data, phones: phones };
  276 + }
  277 +
  278 + let res = await postCanrdApiUserList({ data });
273 279 if (res && res.result === RESPONSE_CODE.SUCCESS) {
274 280 let accountList = res?.data?.data;
275 281 console.log(accountList);
... ...
src/services/definition.ts
... ... @@ -3,82 +3,82 @@
3 3 /** Do not modify manually.
4 4 content is generated automatically by `ts-gear`. */
5 5 export type ModelAndViewStatus =
6   - | "100 CONTINUE"
7   - | "101 SWITCHING_PROTOCOLS"
8   - | "102 PROCESSING"
9   - | "103 CHECKPOINT"
10   - | "200 OK"
11   - | "201 CREATED"
12   - | "202 ACCEPTED"
13   - | "203 NON_AUTHORITATIVE_INFORMATION"
14   - | "204 NO_CONTENT"
15   - | "205 RESET_CONTENT"
16   - | "206 PARTIAL_CONTENT"
17   - | "207 MULTI_STATUS"
18   - | "208 ALREADY_REPORTED"
19   - | "226 IM_USED"
20   - | "300 MULTIPLE_CHOICES"
21   - | "301 MOVED_PERMANENTLY"
22   - | "302 FOUND"
23   - | "302 MOVED_TEMPORARILY"
24   - | "303 SEE_OTHER"
25   - | "304 NOT_MODIFIED"
26   - | "305 USE_PROXY"
27   - | "307 TEMPORARY_REDIRECT"
28   - | "308 PERMANENT_REDIRECT"
29   - | "400 BAD_REQUEST"
30   - | "401 UNAUTHORIZED"
31   - | "402 PAYMENT_REQUIRED"
32   - | "403 FORBIDDEN"
33   - | "404 NOT_FOUND"
34   - | "405 METHOD_NOT_ALLOWED"
35   - | "406 NOT_ACCEPTABLE"
36   - | "407 PROXY_AUTHENTICATION_REQUIRED"
37   - | "408 REQUEST_TIMEOUT"
38   - | "409 CONFLICT"
39   - | "410 GONE"
40   - | "411 LENGTH_REQUIRED"
41   - | "412 PRECONDITION_FAILED"
42   - | "413 PAYLOAD_TOO_LARGE"
43   - | "413 REQUEST_ENTITY_TOO_LARGE"
44   - | "414 URI_TOO_LONG"
45   - | "414 REQUEST_URI_TOO_LONG"
46   - | "415 UNSUPPORTED_MEDIA_TYPE"
47   - | "416 REQUESTED_RANGE_NOT_SATISFIABLE"
48   - | "417 EXPECTATION_FAILED"
49   - | "418 I_AM_A_TEAPOT"
50   - | "419 INSUFFICIENT_SPACE_ON_RESOURCE"
51   - | "420 METHOD_FAILURE"
52   - | "421 DESTINATION_LOCKED"
53   - | "422 UNPROCESSABLE_ENTITY"
54   - | "423 LOCKED"
55   - | "424 FAILED_DEPENDENCY"
56   - | "425 TOO_EARLY"
57   - | "426 UPGRADE_REQUIRED"
58   - | "428 PRECONDITION_REQUIRED"
59   - | "429 TOO_MANY_REQUESTS"
60   - | "431 REQUEST_HEADER_FIELDS_TOO_LARGE"
61   - | "451 UNAVAILABLE_FOR_LEGAL_REASONS"
62   - | "500 INTERNAL_SERVER_ERROR"
63   - | "501 NOT_IMPLEMENTED"
64   - | "502 BAD_GATEWAY"
65   - | "503 SERVICE_UNAVAILABLE"
66   - | "504 GATEWAY_TIMEOUT"
67   - | "505 HTTP_VERSION_NOT_SUPPORTED"
68   - | "506 VARIANT_ALSO_NEGOTIATES"
69   - | "507 INSUFFICIENT_STORAGE"
70   - | "508 LOOP_DETECTED"
71   - | "509 BANDWIDTH_LIMIT_EXCEEDED"
72   - | "510 NOT_EXTENDED"
73   - | "511 NETWORK_AUTHENTICATION_REQUIRED";
  6 + | '100 CONTINUE'
  7 + | '101 SWITCHING_PROTOCOLS'
  8 + | '102 PROCESSING'
  9 + | '103 CHECKPOINT'
  10 + | '200 OK'
  11 + | '201 CREATED'
  12 + | '202 ACCEPTED'
  13 + | '203 NON_AUTHORITATIVE_INFORMATION'
  14 + | '204 NO_CONTENT'
  15 + | '205 RESET_CONTENT'
  16 + | '206 PARTIAL_CONTENT'
  17 + | '207 MULTI_STATUS'
  18 + | '208 ALREADY_REPORTED'
  19 + | '226 IM_USED'
  20 + | '300 MULTIPLE_CHOICES'
  21 + | '301 MOVED_PERMANENTLY'
  22 + | '302 FOUND'
  23 + | '302 MOVED_TEMPORARILY'
  24 + | '303 SEE_OTHER'
  25 + | '304 NOT_MODIFIED'
  26 + | '305 USE_PROXY'
  27 + | '307 TEMPORARY_REDIRECT'
  28 + | '308 PERMANENT_REDIRECT'
  29 + | '400 BAD_REQUEST'
  30 + | '401 UNAUTHORIZED'
  31 + | '402 PAYMENT_REQUIRED'
  32 + | '403 FORBIDDEN'
  33 + | '404 NOT_FOUND'
  34 + | '405 METHOD_NOT_ALLOWED'
  35 + | '406 NOT_ACCEPTABLE'
  36 + | '407 PROXY_AUTHENTICATION_REQUIRED'
  37 + | '408 REQUEST_TIMEOUT'
  38 + | '409 CONFLICT'
  39 + | '410 GONE'
  40 + | '411 LENGTH_REQUIRED'
  41 + | '412 PRECONDITION_FAILED'
  42 + | '413 PAYLOAD_TOO_LARGE'
  43 + | '413 REQUEST_ENTITY_TOO_LARGE'
  44 + | '414 URI_TOO_LONG'
  45 + | '414 REQUEST_URI_TOO_LONG'
  46 + | '415 UNSUPPORTED_MEDIA_TYPE'
  47 + | '416 REQUESTED_RANGE_NOT_SATISFIABLE'
  48 + | '417 EXPECTATION_FAILED'
  49 + | '418 I_AM_A_TEAPOT'
  50 + | '419 INSUFFICIENT_SPACE_ON_RESOURCE'
  51 + | '420 METHOD_FAILURE'
  52 + | '421 DESTINATION_LOCKED'
  53 + | '422 UNPROCESSABLE_ENTITY'
  54 + | '423 LOCKED'
  55 + | '424 FAILED_DEPENDENCY'
  56 + | '425 TOO_EARLY'
  57 + | '426 UPGRADE_REQUIRED'
  58 + | '428 PRECONDITION_REQUIRED'
  59 + | '429 TOO_MANY_REQUESTS'
  60 + | '431 REQUEST_HEADER_FIELDS_TOO_LARGE'
  61 + | '451 UNAVAILABLE_FOR_LEGAL_REASONS'
  62 + | '500 INTERNAL_SERVER_ERROR'
  63 + | '501 NOT_IMPLEMENTED'
  64 + | '502 BAD_GATEWAY'
  65 + | '503 SERVICE_UNAVAILABLE'
  66 + | '504 GATEWAY_TIMEOUT'
  67 + | '505 HTTP_VERSION_NOT_SUPPORTED'
  68 + | '506 VARIANT_ALSO_NEGOTIATES'
  69 + | '507 INSUFFICIENT_STORAGE'
  70 + | '508 LOOP_DETECTED'
  71 + | '509 BANDWIDTH_LIMIT_EXCEEDED'
  72 + | '510 NOT_EXTENDED'
  73 + | '511 NETWORK_AUTHENTICATION_REQUIRED';
74 74 export type ProcureReturnBillDtoSendStore =
75   - | "DALANG_WAREHOUSE"
76   - | "HOUJIE_WAREHOUSE";
  75 + | 'DALANG_WAREHOUSE'
  76 + | 'HOUJIE_WAREHOUSE';
77 77 export type ProcureReturnBillDtoStatus =
78   - | "AUDIT_NOTPASS"
79   - | "WAIT_SEND"
80   - | "SENDED"
81   - | "WAIT_AUDIT";
  78 + | 'AUDIT_NOTPASS'
  79 + | 'WAIT_SEND'
  80 + | 'SENDED'
  81 + | 'WAIT_AUDIT';
82 82 export interface AdminAuthRoleVO {
83 83 menuIds?: Array<number>;
84 84 /** @format int64 */
... ... @@ -1465,11 +1465,20 @@ export interface InvoiceDto {
1465 1465 invoiceStatus?: string;
1466 1466 /**
1467 1467 * @description
  1468 + * 发票类型
  1469 + */
  1470 + invoiceStatusText?: string;
  1471 + /**
  1472 + * @description
1468 1473 * 开票日期
1469 1474 * @format date-time
1470 1475 */
1471 1476 invoicingTime?: string;
1472 1477 invoicingType?: string;
  1478 + /**
  1479 + * @description
  1480 + * 开具类型
  1481 + */
1473 1482 invoicingTypeText?: string;
1474 1483 logicDelete?: boolean;
1475 1484 /**
... ... @@ -1501,6 +1510,11 @@ export interface InvoiceDto {
1501 1510 payeeText?: string;
1502 1511 /**
1503 1512 * @description
  1513 + * 收款单位
  1514 + */
  1515 + payeeText?: string;
  1516 + /**
  1517 + * @description
1504 1518 * 购买方
1505 1519 */
1506 1520 purchaser?: string;
... ... @@ -3693,6 +3707,9 @@ export interface SubOrder {
3693 3707 id?: number;
3694 3708 image?: string;
3695 3709 invoiceApplyUsername?: string;
  3710 + invoiceConfirmStatus?: string;
  3711 + /** @format date-time */
  3712 + invoiceConfirmStatusDatetime?: string;
3696 3713 invoiceInformation?: string;
3697 3714 /** @format int64 */
3698 3715 invoiceRecordId?: number;
... ...
src/services/request.ts
... ... @@ -2,148 +2,149 @@
2 2 /* tslint:disable */
3 3 /** Do not modify manually.
4 4 content is generated automatically by `ts-gear`. */
5   -import { request as requester } from "umi";
  5 +import { request as requester } from 'umi';
6 6 import type {
  7 + AdminAuthRoleVO,
  8 + AdminAuthUserVO,
7 9 AdminClientDto,
8   - ServerResult,
9   - QueryCommunicationInfoDto,
10   - ClientCommunicationInfo,
11   - QueryClientDto,
  10 + AdminDeptQueryVO,
  11 + AdminDeptVO,
  12 + AdminInvoicingAccountDTO,
  13 + AdminJobQueryVO,
  14 + AdminJobVO,
  15 + AdminMenuQueryVO,
  16 + AdminMenuVO,
  17 + AdminRoleQueryVO,
  18 + AdminRoleVO,
  19 + AdminUserLoginByPhoneVO,
  20 + AdminUserLoginByPwdVO,
  21 + AdminUserModifyPwdVO,
  22 + AdminUserPasswordRecoverEmailVO,
  23 + AdminUserQueryVO,
  24 + AdminUserRegisterVO,
  25 + AdminUserVO,
12 26 ApiApplyAddressModifyRequest,
13 27 ApiApplyAfterSalesRequest,
14   - ApiOrderConfirmReceiveRequest,
15 28 ApiCreateOrderRequest,
  29 + ApiOrderConfirmReceiveRequest,
16 30 ApiOrderCustomersRequest,
17 31 ApiOrderEvaluatedRequest,
18   - MainOrderqueryRequest,
19   - InvoiceRecordQueryRequest,
20 32 ApiQueryOrderDetailRequest,
21 33 ApiQueryOrderStatusCountsRequest,
22   - Dto,
23   - StoreOrderInvoiceRequest,
24   - UserAddressListRequest,
25   - UserCenterInfoRequest,
26   - UserDetailRequest,
27   - UserAddressSaveRequest,
28   - UserListRequest,
29   - UserNowMoneyCheckRequest,
  34 + ApplyInvoiceDTO,
  35 + AuditDto,
  36 + AuditVO,
  37 + CancelInvoiceAndBankStatementDto,
  38 + CancelSendOrderDto,
  39 + CaptchaMessageVO,
  40 + ClientCommunicationInfo,
30 41 CommonAuditRequest,
31   - OrderMainProDo,
32   - DistrictDo,
33   - DistrictSearchDo,
  42 + CompanyInfo,
  43 + CompanyInfoDto,
  44 + CustomFieldRes,
34 45 CustomerCustomerListReq,
35   - CustomerListRes,
36 46 CustomerDetailDto,
37 47 CustomerDetailRes,
  48 + CustomerListRes,
38 49 CustomerSaveReq,
39   - SaveReply,
40   - MaterialMaterialListReq,
41   - MaterialListReply,
  50 + DictionaryQueryVO,
  51 + DictionaryVO,
  52 + DistrictDo,
  53 + DistrictSearchDo,
  54 + Dto,
42 55 InventoryMaterialStockReq,
  56 + InvoiceDto,
  57 + InvoiceRecordDTO,
  58 + InvoiceRecordQueryRequest,
  59 + MainOrderqueryRequest,
  60 + MaterialListReply,
  61 + MaterialMaterialListReq,
43 62 MaterialStockRes,
44   - UnitMaterialUnitListReq,
45 63 MaterialUnitListRes,
46   - UnitMeasureUnitListReq,
47 64 MeasureUnitListRes,
48   - SalOrderSaveDto,
49   - SystemCustomFieldReq,
50   - CustomFieldRes,
51   - UseOldInvoicingDto,
52   - QueryUseOldInvoicingDto,
53   - OrderFieldLockApplyQueryVO,
54   - AuditVO,
55   - OrderAuditLogQueryVO,
56   - AdminUserLoginByPhoneVO,
57   - AdminUserLoginByPwdVO,
58   - AdminUserModifyPwdVO,
59   - AdminUserRegisterVO,
60   - AdminUserPasswordRecoverEmailVO,
61   - TokenApiDto,
62   - CaptchaMessageVO,
63   - AdminDeptVO,
64   - AdminDeptQueryVO,
65   - DictionaryVO,
66   - DictionaryQueryVO,
67   - AdminJobVO,
68   - AdminJobQueryVO,
69   - SysLogQueryVO,
70   - AdminMenuVO,
71   - AdminMenuQueryVO,
72 65 MessageQueryDTO,
73   - OrderOptLogQueryVO,
  66 + ModelAndView,
74 67 OrderAddVO,
  68 + OrderAuditLogQueryVO,
75 69 OrderBaseInfoQueryVO,
76   - OrderUpdateVO,
77   - OrderUnlockFieldApplyVO,
78   - OrderStagesFromDo,
  70 + OrderFieldLockApplyQueryVO,
  71 + OrderMainProDo,
  72 + OrderOptLogQueryVO,
  73 + OrderProfitAnalysisVo,
79 74 OrderStagesCheckDo,
80 75 OrderStagesDelDo,
81   - OrderStagesSelDo,
  76 + OrderStagesFromDo,
82 77 OrderStagesPayWay,
83 78 OrderStagesPayWayDo,
84 79 OrderStagesPayWayFileDo,
  80 + OrderStagesSelDo,
  81 + OrderUnlockFieldApplyVO,
  82 + OrderUpdateVO,
85 83 OrderZoNingProvinceUserDo,
86   - OrderProfitAnalysisVo,
87   - AdminRoleVO,
88   - AdminRoleQueryVO,
89   - AdminAuthRoleVO,
90   - AdminUserVO,
91   - AdminAuthUserVO,
92   - AdminUserQueryVO,
93   - ResetPwdVO,
94   - UpdatePwdVO,
95   - SalesRechargePrepaymentAuditRequest,
96   - SalesRechargePrepaymentCreateRequest,
97   - SalesRechargePrepaymentDeleteRequest,
98   - SalesRechargePrepaymentRequest,
99   - SalesRechargePrepaymentUpdateRequest,
100   - ProcureReturnBillDto,
101   - ProcureReturnBillApprovalDto,
102   - QueryProcureReturnBillDto,
103   - ResearchGroupMemberRequestAddRequest,
104   - ResearchGroupMemberRequestDeleteRequest,
105   - ResearchGroupMemberRequestDetailRequest,
106   - ResearchGroupMemberRequestEditRequest,
107   - ResearchGroupMemberRequestsRequest,
108   - ResearchGroupAddRequest,
109   - ResearchGroupDeleteRequest,
110   - ResearchGroupDetailRequest,
111   - ResearchGroupEditRequest,
112   - ResearchGroupListRequest,
113   - QueryBankStatementDto,
114   - QueryInvoiceProjectDto,
115   - InvoiceDto,
116   - AdminInvoicingAccountDTO,
117   - ApplyInvoiceDTO,
118   - CancelInvoiceAndBankStatementDto,
119   - QueryInvoiceRecordDto,
120   - QueryWriteOffRecordDto,
121   - InvoiceRecordDTO,
122   - CompanyInfoDto,
123   - CompanyInfo,
124   - QueryInvoiceDetailDto,
125   - ReissueInvoiceDto,
126   - AuditDto,
127   - WarningOrderWhiteListDto,
128   - WarningUserWhiteListDto,
129   - CancelSendOrderDto,
130 84 ProcureConvertProcureDto,
131 85 ProcureOrderDto,
132 86 ProcurePrintDto,
  87 + ProcureReturnBillApprovalDto,
  88 + ProcureReturnBillDto,
  89 + ProductInformationDto,
133 90 QueryAfterSalesInfoSnapshotDto,
  91 + QueryAnnexDto,
  92 + QueryBankStatementDto,
  93 + QueryClientDto,
  94 + QueryCommunicationInfoDto,
134 95 QueryCustomerInformationDto,
135   - QueryMainOrderDto,
136 96 QueryHistoryRecordDto,
137   - ProductInformationDto,
  97 + QueryInvoiceDetailDto,
  98 + QueryInvoiceProjectDto,
  99 + QueryInvoiceRecordDto,
  100 + QueryMainOrderDto,
  101 + QueryProcureReturnBillDto,
138 102 QueryReportFormsDto,
  103 + QueryUseOldInvoicingDto,
  104 + QueryWarningOrderWhiteListDto,
  105 + QueryWarningUserWhiteListDto,
  106 + QueryWriteOffRecordDto,
  107 + ReissueInvoiceDto,
  108 + ResearchGroupAddRequest,
  109 + ResearchGroupDeleteRequest,
  110 + ResearchGroupDetailRequest,
  111 + ResearchGroupEditRequest,
  112 + ResearchGroupListRequest,
  113 + ResearchGroupMemberRequestAddRequest,
  114 + ResearchGroupMemberRequestDeleteRequest,
  115 + ResearchGroupMemberRequestDetailRequest,
  116 + ResearchGroupMemberRequestEditRequest,
  117 + ResearchGroupMemberRequestsRequest,
  118 + ResetPwdVO,
  119 + SalOrderSaveDto,
  120 + SalesRechargePrepaymentAuditRequest,
  121 + SalesRechargePrepaymentCreateRequest,
  122 + SalesRechargePrepaymentDeleteRequest,
  123 + SalesRechargePrepaymentRequest,
  124 + SalesRechargePrepaymentUpdateRequest,
  125 + SaveReply,
  126 + ServerResult,
139 127 ShippingWarehouseChangeDto,
  128 + StoreOrderInvoiceRequest,
  129 + SysLogQueryVO,
  130 + SystemCustomFieldReq,
140 131 ToProcureAuditDto,
141   - QueryAnnexDto,
  132 + TokenApiDto,
  133 + UnitMaterialUnitListReq,
  134 + UnitMeasureUnitListReq,
142 135 UpdateHirePurchaseDto,
  136 + UpdatePwdVO,
143 137 UploadPaymentReceiptDTO,
144   - QueryWarningOrderWhiteListDto,
145   - QueryWarningUserWhiteListDto,
146   -} from "./definition";
  138 + UseOldInvoicingDto,
  139 + UserAddressListRequest,
  140 + UserAddressSaveRequest,
  141 + UserCenterInfoRequest,
  142 + UserDetailRequest,
  143 + UserListRequest,
  144 + UserNowMoneyCheckRequest,
  145 + WarningOrderWhiteListDto,
  146 + WarningUserWhiteListDto,
  147 +} from './definition';
147 148  
148 149 /** @description request parameter type for postAdminClientAddAdminClient */
149 150 export interface PostAdminClientAddAdminClientOption {
... ... @@ -198,10 +199,10 @@ export type PostAdminClientAddAdminClientResponseSuccess =
198 199 * @consumes application/json
199 200 */
200 201 export const postAdminClientAddAdminClient = /* #__PURE__ */ (() => {
201   - const method = "post";
202   - const url = "/admin/client/addAdminClient";
  202 + const method = 'post';
  203 + const url = '/admin/client/addAdminClient';
203 204 function request(
204   - option: PostAdminClientAddAdminClientOption
  205 + option: PostAdminClientAddAdminClientOption,
205 206 ): Promise<PostAdminClientAddAdminClientResponseSuccess> {
206 207 return requester(request.url, {
207 208 method: request.method,
... ... @@ -269,10 +270,10 @@ export type PostAdminClientAddClientComunicationInfoResponseSuccess =
269 270 * @consumes application/json
270 271 */
271 272 export const postAdminClientAddClientComunicationInfo = /* #__PURE__ */ (() => {
272   - const method = "post";
273   - const url = "/admin/client/addClientComunicationInfo";
  273 + const method = 'post';
  274 + const url = '/admin/client/addClientComunicationInfo';
274 275 function request(
275   - option: PostAdminClientAddClientComunicationInfoOption
  276 + option: PostAdminClientAddClientComunicationInfoOption,
276 277 ): Promise<PostAdminClientAddClientComunicationInfoResponseSuccess> {
277 278 return requester(request.url, {
278 279 method: request.method,
... ... @@ -341,10 +342,10 @@ export type PostAdminClientAddOrModifyClientComunicationInfoResponseSuccess =
341 342 */
342 343 export const postAdminClientAddOrModifyClientComunicationInfo =
343 344 /* #__PURE__ */ (() => {
344   - const method = "post";
345   - const url = "/admin/client/addOrModifyClientComunicationInfo";
  345 + const method = 'post';
  346 + const url = '/admin/client/addOrModifyClientComunicationInfo';
346 347 function request(
347   - option: PostAdminClientAddOrModifyClientComunicationInfoOption
  348 + option: PostAdminClientAddOrModifyClientComunicationInfoOption,
348 349 ): Promise<PostAdminClientAddOrModifyClientComunicationInfoResponseSuccess> {
349 350 return requester(request.url, {
350 351 method: request.method,
... ... @@ -398,8 +399,8 @@ export type PostAdminClientDownloadImportTemplateResponseSuccess =
398 399 * @consumes application/json
399 400 */
400 401 export const postAdminClientDownloadImportTemplate = /* #__PURE__ */ (() => {
401   - const method = "post";
402   - const url = "/admin/client/downloadImportTemplate";
  402 + const method = 'post';
  403 + const url = '/admin/client/downloadImportTemplate';
403 404 function request(): Promise<PostAdminClientDownloadImportTemplateResponseSuccess> {
404 405 return requester(request.url, {
405 406 method: request.method,
... ... @@ -466,10 +467,10 @@ export type PostAdminClientExportClientsResponseSuccess =
466 467 * @consumes application/json
467 468 */
468 469 export const postAdminClientExportClients = /* #__PURE__ */ (() => {
469   - const method = "post";
470   - const url = "/admin/client/exportClients";
  470 + const method = 'post';
  471 + const url = '/admin/client/exportClients';
471 472 function request(
472   - option: PostAdminClientExportClientsOption
  473 + option: PostAdminClientExportClientsOption,
473 474 ): Promise<PostAdminClientExportClientsResponseSuccess> {
474 475 return requester(request.url, {
475 476 method: request.method,
... ... @@ -523,8 +524,8 @@ export type PostAdminClientGetStatisticalDataResponseSuccess =
523 524 * @consumes application/json
524 525 */
525 526 export const postAdminClientGetStatisticalData = /* #__PURE__ */ (() => {
526   - const method = "post";
527   - const url = "/admin/client/getStatisticalData";
  527 + const method = 'post';
  528 + const url = '/admin/client/getStatisticalData';
528 529 function request(): Promise<PostAdminClientGetStatisticalDataResponseSuccess> {
529 530 return requester(request.url, {
530 531 method: request.method,
... ... @@ -591,10 +592,10 @@ export type PostAdminClientImportClientResponseSuccess =
591 592 * @consumes multipart/form-data
592 593 */
593 594 export const postAdminClientImportClient = /* #__PURE__ */ (() => {
594   - const method = "post";
595   - const url = "/admin/client/importClient";
  595 + const method = 'post';
  596 + const url = '/admin/client/importClient';
596 597 function request(
597   - option: PostAdminClientImportClientOption
  598 + option: PostAdminClientImportClientOption,
598 599 ): Promise<PostAdminClientImportClientResponseSuccess> {
599 600 return requester(request.url, {
600 601 method: request.method,
... ... @@ -663,10 +664,10 @@ export type PostAdminClientModifyClientComunicationInfoResponseSuccess =
663 664 */
664 665 export const postAdminClientModifyClientComunicationInfo =
665 666 /* #__PURE__ */ (() => {
666   - const method = "post";
667   - const url = "/admin/client/modifyClientComunicationInfo";
  667 + const method = 'post';
  668 + const url = '/admin/client/modifyClientComunicationInfo';
668 669 function request(
669   - option: PostAdminClientModifyClientComunicationInfoOption
  670 + option: PostAdminClientModifyClientComunicationInfoOption,
670 671 ): Promise<PostAdminClientModifyClientComunicationInfoResponseSuccess> {
671 672 return requester(request.url, {
672 673 method: request.method,
... ... @@ -734,10 +735,10 @@ export type PostAdminClientModifyClientInfoResponseSuccess =
734 735 * @consumes application/json
735 736 */
736 737 export const postAdminClientModifyClientInfo = /* #__PURE__ */ (() => {
737   - const method = "post";
738   - const url = "/admin/client/modifyClientInfo";
  738 + const method = 'post';
  739 + const url = '/admin/client/modifyClientInfo';
739 740 function request(
740   - option: PostAdminClientModifyClientInfoOption
  741 + option: PostAdminClientModifyClientInfoOption,
741 742 ): Promise<PostAdminClientModifyClientInfoResponseSuccess> {
742 743 return requester(request.url, {
743 744 method: request.method,
... ... @@ -806,10 +807,10 @@ export type PostAdminClientQueryClientComunicationInfoResponseSuccess =
806 807 */
807 808 export const postAdminClientQueryClientComunicationInfo =
808 809 /* #__PURE__ */ (() => {
809   - const method = "post";
810   - const url = "/admin/client/queryClientComunicationInfo";
  810 + const method = 'post';
  811 + const url = '/admin/client/queryClientComunicationInfo';
811 812 function request(
812   - option: PostAdminClientQueryClientComunicationInfoOption
  813 + option: PostAdminClientQueryClientComunicationInfoOption,
813 814 ): Promise<PostAdminClientQueryClientComunicationInfoResponseSuccess> {
814 815 return requester(request.url, {
815 816 method: request.method,
... ... @@ -877,10 +878,10 @@ export type PostAdminClientQueryClientPageResponseSuccess =
877 878 * @consumes application/json
878 879 */
879 880 export const postAdminClientQueryClientPage = /* #__PURE__ */ (() => {
880   - const method = "post";
881   - const url = "/admin/client/queryClientPage";
  881 + const method = 'post';
  882 + const url = '/admin/client/queryClientPage';
882 883 function request(
883   - option: PostAdminClientQueryClientPageOption
  884 + option: PostAdminClientQueryClientPageOption,
884 885 ): Promise<PostAdminClientQueryClientPageResponseSuccess> {
885 886 return requester(request.url, {
886 887 method: request.method,
... ... @@ -951,10 +952,10 @@ export type PostAdminClientRemoveClientComunicationInfoResponseSuccess =
951 952 */
952 953 export const postAdminClientRemoveClientComunicationInfo =
953 954 /* #__PURE__ */ (() => {
954   - const method = "post";
955   - const url = "/admin/client/removeClientComunicationInfo";
  955 + const method = 'post';
  956 + const url = '/admin/client/removeClientComunicationInfo';
956 957 function request(
957   - option?: PostAdminClientRemoveClientComunicationInfoOption
  958 + option?: PostAdminClientRemoveClientComunicationInfoOption,
958 959 ): Promise<PostAdminClientRemoveClientComunicationInfoResponseSuccess> {
959 960 return requester(request.url, {
960 961 method: request.method,
... ... @@ -1036,10 +1037,10 @@ export type PostApiLocalStorageUploadResponseSuccess =
1036 1037 * @consumes multipart/form-data
1037 1038 */
1038 1039 export const postApiLocalStorageUpload = /* #__PURE__ */ (() => {
1039   - const method = "post";
1040   - const url = "/api/localStorage/upload";
  1040 + const method = 'post';
  1041 + const url = '/api/localStorage/upload';
1041 1042 function request(
1042   - option: PostApiLocalStorageUploadOption
  1043 + option: PostApiLocalStorageUploadOption,
1043 1044 ): Promise<PostApiLocalStorageUploadResponseSuccess> {
1044 1045 return requester(request.url, {
1045 1046 method: request.method,
... ... @@ -1121,10 +1122,10 @@ export type PostApiLocalStorageUploadOssResponseSuccess =
1121 1122 * @consumes multipart/form-data
1122 1123 */
1123 1124 export const postApiLocalStorageUploadOss = /* #__PURE__ */ (() => {
1124   - const method = "post";
1125   - const url = "/api/localStorage/upload_oss";
  1125 + const method = 'post';
  1126 + const url = '/api/localStorage/upload_oss';
1126 1127 function request(
1127   - option: PostApiLocalStorageUploadOssOption
  1128 + option: PostApiLocalStorageUploadOssOption,
1128 1129 ): Promise<PostApiLocalStorageUploadOssResponseSuccess> {
1129 1130 return requester(request.url, {
1130 1131 method: request.method,
... ... @@ -1192,10 +1193,10 @@ export type PostApiOrderApplyAddressModifyResponseSuccess =
1192 1193 * @consumes application/json
1193 1194 */
1194 1195 export const postApiOrderApplyAddressModify = /* #__PURE__ */ (() => {
1195   - const method = "post";
1196   - const url = "/api/order/applyAddressModify";
  1196 + const method = 'post';
  1197 + const url = '/api/order/applyAddressModify';
1197 1198 function request(
1198   - option: PostApiOrderApplyAddressModifyOption
  1199 + option: PostApiOrderApplyAddressModifyOption,
1199 1200 ): Promise<PostApiOrderApplyAddressModifyResponseSuccess> {
1200 1201 return requester(request.url, {
1201 1202 method: request.method,
... ... @@ -1263,10 +1264,10 @@ export type PostApiOrderApplyAfterSalesResponseSuccess =
1263 1264 * @consumes application/json
1264 1265 */
1265 1266 export const postApiOrderApplyAfterSales = /* #__PURE__ */ (() => {
1266   - const method = "post";
1267   - const url = "/api/order/applyAfterSales";
  1267 + const method = 'post';
  1268 + const url = '/api/order/applyAfterSales';
1268 1269 function request(
1269   - option: PostApiOrderApplyAfterSalesOption
  1270 + option: PostApiOrderApplyAfterSalesOption,
1270 1271 ): Promise<PostApiOrderApplyAfterSalesResponseSuccess> {
1271 1272 return requester(request.url, {
1272 1273 method: request.method,
... ... @@ -1334,10 +1335,10 @@ export type PostApiOrderConfirmReceiveResponseSuccess =
1334 1335 * @consumes application/json
1335 1336 */
1336 1337 export const postApiOrderConfirmReceive = /* #__PURE__ */ (() => {
1337   - const method = "post";
1338   - const url = "/api/order/confirmReceive";
  1338 + const method = 'post';
  1339 + const url = '/api/order/confirmReceive';
1339 1340 function request(
1340   - option: PostApiOrderConfirmReceiveOption
  1341 + option: PostApiOrderConfirmReceiveOption,
1341 1342 ): Promise<PostApiOrderConfirmReceiveResponseSuccess> {
1342 1343 return requester(request.url, {
1343 1344 method: request.method,
... ... @@ -1405,10 +1406,10 @@ export type PostApiOrderCreateOrderResponseSuccess =
1405 1406 * @consumes application/json
1406 1407 */
1407 1408 export const postApiOrderCreateOrder = /* #__PURE__ */ (() => {
1408   - const method = "post";
1409   - const url = "/api/order/createOrder";
  1409 + const method = 'post';
  1410 + const url = '/api/order/createOrder';
1410 1411 function request(
1411   - option: PostApiOrderCreateOrderOption
  1412 + option: PostApiOrderCreateOrderOption,
1412 1413 ): Promise<PostApiOrderCreateOrderResponseSuccess> {
1413 1414 return requester(request.url, {
1414 1415 method: request.method,
... ... @@ -1476,10 +1477,10 @@ export type PostApiOrderCustomersResponseSuccess =
1476 1477 * @consumes application/json
1477 1478 */
1478 1479 export const postApiOrderCustomers = /* #__PURE__ */ (() => {
1479   - const method = "post";
1480   - const url = "/api/order/customers";
  1480 + const method = 'post';
  1481 + const url = '/api/order/customers';
1481 1482 function request(
1482   - option: PostApiOrderCustomersOption
  1483 + option: PostApiOrderCustomersOption,
1483 1484 ): Promise<PostApiOrderCustomersResponseSuccess> {
1484 1485 return requester(request.url, {
1485 1486 method: request.method,
... ... @@ -1547,10 +1548,10 @@ export type PostApiOrderEvaluatedResponseSuccess =
1547 1548 * @consumes application/json
1548 1549 */
1549 1550 export const postApiOrderEvaluated = /* #__PURE__ */ (() => {
1550   - const method = "post";
1551   - const url = "/api/order/evaluated";
  1551 + const method = 'post';
  1552 + const url = '/api/order/evaluated';
1552 1553 function request(
1553   - option: PostApiOrderEvaluatedOption
  1554 + option: PostApiOrderEvaluatedOption,
1554 1555 ): Promise<PostApiOrderEvaluatedResponseSuccess> {
1555 1556 return requester(request.url, {
1556 1557 method: request.method,
... ... @@ -1618,10 +1619,10 @@ export type PostApiOrderInvoicedOrderListResponseSuccess =
1618 1619 * @consumes application/json
1619 1620 */
1620 1621 export const postApiOrderInvoicedOrderList = /* #__PURE__ */ (() => {
1621   - const method = "post";
1622   - const url = "/api/order/invoicedOrderList";
  1622 + const method = 'post';
  1623 + const url = '/api/order/invoicedOrderList';
1623 1624 function request(
1624   - option: PostApiOrderInvoicedOrderListOption
  1625 + option: PostApiOrderInvoicedOrderListOption,
1625 1626 ): Promise<PostApiOrderInvoicedOrderListResponseSuccess> {
1626 1627 return requester(request.url, {
1627 1628 method: request.method,
... ... @@ -1689,10 +1690,10 @@ export type PostApiOrderInvoicedRecordListResponseSuccess =
1689 1690 * @consumes application/json
1690 1691 */
1691 1692 export const postApiOrderInvoicedRecordList = /* #__PURE__ */ (() => {
1692   - const method = "post";
1693   - const url = "/api/order/invoicedRecordList";
  1693 + const method = 'post';
  1694 + const url = '/api/order/invoicedRecordList';
1694 1695 function request(
1695   - option: PostApiOrderInvoicedRecordListOption
  1696 + option: PostApiOrderInvoicedRecordListOption,
1696 1697 ): Promise<PostApiOrderInvoicedRecordListResponseSuccess> {
1697 1698 return requester(request.url, {
1698 1699 method: request.method,
... ... @@ -1746,8 +1747,8 @@ export type PostApiOrderListAllSubOrderBaseInfoResponseSuccess =
1746 1747 * @consumes application/json
1747 1748 */
1748 1749 export const postApiOrderListAllSubOrderBaseInfo = /* #__PURE__ */ (() => {
1749   - const method = "post";
1750   - const url = "/api/order/listAllSubOrderBaseInfo";
  1750 + const method = 'post';
  1751 + const url = '/api/order/listAllSubOrderBaseInfo';
1751 1752 function request(): Promise<PostApiOrderListAllSubOrderBaseInfoResponseSuccess> {
1752 1753 return requester(request.url, {
1753 1754 method: request.method,
... ... @@ -1814,10 +1815,10 @@ export type PostApiOrderQueryOrderDetailResponseSuccess =
1814 1815 * @consumes application/json
1815 1816 */
1816 1817 export const postApiOrderQueryOrderDetail = /* #__PURE__ */ (() => {
1817   - const method = "post";
1818   - const url = "/api/order/queryOrderDetail";
  1818 + const method = 'post';
  1819 + const url = '/api/order/queryOrderDetail';
1819 1820 function request(
1820   - option: PostApiOrderQueryOrderDetailOption
  1821 + option: PostApiOrderQueryOrderDetailOption,
1821 1822 ): Promise<PostApiOrderQueryOrderDetailResponseSuccess> {
1822 1823 return requester(request.url, {
1823 1824 method: request.method,
... ... @@ -1885,10 +1886,10 @@ export type PostApiOrderQueryOrderStatusCountsResponseSuccess =
1885 1886 * @consumes application/json
1886 1887 */
1887 1888 export const postApiOrderQueryOrderStatusCounts = /* #__PURE__ */ (() => {
1888   - const method = "post";
1889   - const url = "/api/order/queryOrderStatusCounts";
  1889 + const method = 'post';
  1890 + const url = '/api/order/queryOrderStatusCounts';
1890 1891 function request(
1891   - option: PostApiOrderQueryOrderStatusCountsOption
  1892 + option: PostApiOrderQueryOrderStatusCountsOption,
1892 1893 ): Promise<PostApiOrderQueryOrderStatusCountsResponseSuccess> {
1893 1894 return requester(request.url, {
1894 1895 method: request.method,
... ... @@ -1956,10 +1957,10 @@ export type PostApiOrderQueryServiceOrderResponseSuccess =
1956 1957 * @consumes application/json
1957 1958 */
1958 1959 export const postApiOrderQueryServiceOrder = /* #__PURE__ */ (() => {
1959   - const method = "post";
1960   - const url = "/api/order/queryServiceOrder";
  1960 + const method = 'post';
  1961 + const url = '/api/order/queryServiceOrder';
1961 1962 function request(
1962   - option: PostApiOrderQueryServiceOrderOption
  1963 + option: PostApiOrderQueryServiceOrderOption,
1963 1964 ): Promise<PostApiOrderQueryServiceOrderResponseSuccess> {
1964 1965 return requester(request.url, {
1965 1966 method: request.method,
... ... @@ -2027,10 +2028,10 @@ export type PostApiOrderStoreApplyInvoiceResponseSuccess =
2027 2028 * @consumes application/json
2028 2029 */
2029 2030 export const postApiOrderStoreApplyInvoice = /* #__PURE__ */ (() => {
2030   - const method = "post";
2031   - const url = "/api/order/storeApplyInvoice";
  2031 + const method = 'post';
  2032 + const url = '/api/order/storeApplyInvoice';
2032 2033 function request(
2033   - option: PostApiOrderStoreApplyInvoiceOption
  2034 + option: PostApiOrderStoreApplyInvoiceOption,
2034 2035 ): Promise<PostApiOrderStoreApplyInvoiceResponseSuccess> {
2035 2036 return requester(request.url, {
2036 2037 method: request.method,
... ... @@ -2098,10 +2099,10 @@ export type PostApiOrderWaitInvoiceOrderListResponseSuccess =
2098 2099 * @consumes application/json
2099 2100 */
2100 2101 export const postApiOrderWaitInvoiceOrderList = /* #__PURE__ */ (() => {
2101   - const method = "post";
2102   - const url = "/api/order/waitInvoiceOrderList";
  2102 + const method = 'post';
  2103 + const url = '/api/order/waitInvoiceOrderList';
2103 2104 function request(
2104   - option: PostApiOrderWaitInvoiceOrderListOption
  2105 + option: PostApiOrderWaitInvoiceOrderListOption,
2105 2106 ): Promise<PostApiOrderWaitInvoiceOrderListResponseSuccess> {
2106 2107 return requester(request.url, {
2107 2108 method: request.method,
... ... @@ -2169,10 +2170,10 @@ export type PostCanrdApiUserAddressListResponseSuccess =
2169 2170 * @consumes application/json
2170 2171 */
2171 2172 export const postCanrdApiUserAddressList = /* #__PURE__ */ (() => {
2172   - const method = "post";
2173   - const url = "/canrd/api/user/address/list";
  2173 + const method = 'post';
  2174 + const url = '/canrd/api/user/address/list';
2174 2175 function request(
2175   - option: PostCanrdApiUserAddressListOption
  2176 + option: PostCanrdApiUserAddressListOption,
2176 2177 ): Promise<PostCanrdApiUserAddressListResponseSuccess> {
2177 2178 return requester(request.url, {
2178 2179 method: request.method,
... ... @@ -2240,10 +2241,10 @@ export type PostCanrdApiUserCenterInfoResponseSuccess =
2240 2241 * @consumes application/json
2241 2242 */
2242 2243 export const postCanrdApiUserCenterInfo = /* #__PURE__ */ (() => {
2243   - const method = "post";
2244   - const url = "/canrd/api/user/center/info";
  2244 + const method = 'post';
  2245 + const url = '/canrd/api/user/center/info';
2245 2246 function request(
2246   - option: PostCanrdApiUserCenterInfoOption
  2247 + option: PostCanrdApiUserCenterInfoOption,
2247 2248 ): Promise<PostCanrdApiUserCenterInfoResponseSuccess> {
2248 2249 return requester(request.url, {
2249 2250 method: request.method,
... ... @@ -2311,10 +2312,10 @@ export type PostCanrdApiUserDetailResponseSuccess =
2311 2312 * @consumes application/json
2312 2313 */
2313 2314 export const postCanrdApiUserDetail = /* #__PURE__ */ (() => {
2314   - const method = "post";
2315   - const url = "/canrd/api/user/detail";
  2315 + const method = 'post';
  2316 + const url = '/canrd/api/user/detail';
2316 2317 function request(
2317   - option: PostCanrdApiUserDetailOption
  2318 + option: PostCanrdApiUserDetailOption,
2318 2319 ): Promise<PostCanrdApiUserDetailResponseSuccess> {
2319 2320 return requester(request.url, {
2320 2321 method: request.method,
... ... @@ -2383,10 +2384,10 @@ export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess =
2383 2384 */
2384 2385 export const postCanrdApiUserInnerOrderSystemAddressSave =
2385 2386 /* #__PURE__ */ (() => {
2386   - const method = "post";
2387   - const url = "/canrd/api/user/innerOrderSystem/address/save";
  2387 + const method = 'post';
  2388 + const url = '/canrd/api/user/innerOrderSystem/address/save';
2388 2389 function request(
2389   - option: PostCanrdApiUserInnerOrderSystemAddressSaveOption
  2390 + option: PostCanrdApiUserInnerOrderSystemAddressSaveOption,
2390 2391 ): Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess> {
2391 2392 return requester(request.url, {
2392 2393 method: request.method,
... ... @@ -2454,10 +2455,10 @@ export type PostCanrdApiUserListResponseSuccess =
2454 2455 * @consumes application/json
2455 2456 */
2456 2457 export const postCanrdApiUserList = /* #__PURE__ */ (() => {
2457   - const method = "post";
2458   - const url = "/canrd/api/user/list";
  2458 + const method = 'post';
  2459 + const url = '/canrd/api/user/list';
2459 2460 function request(
2460   - option: PostCanrdApiUserListOption
  2461 + option: PostCanrdApiUserListOption,
2461 2462 ): Promise<PostCanrdApiUserListResponseSuccess> {
2462 2463 return requester(request.url, {
2463 2464 method: request.method,
... ... @@ -2525,10 +2526,10 @@ export type PostCanrdApiUserNowMoneyCheckResponseSuccess =
2525 2526 * @consumes application/json
2526 2527 */
2527 2528 export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => {
2528   - const method = "post";
2529   - const url = "/canrd/api/user/nowMoney/check";
  2529 + const method = 'post';
  2530 + const url = '/canrd/api/user/nowMoney/check';
2530 2531 function request(
2531   - option: PostCanrdApiUserNowMoneyCheckOption
  2532 + option: PostCanrdApiUserNowMoneyCheckOption,
2532 2533 ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> {
2533 2534 return requester(request.url, {
2534 2535 method: request.method,
... ... @@ -2595,10 +2596,10 @@ export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200];
2595 2596 * @consumes application/json
2596 2597 */
2597 2598 export const postCommonAudit = /* #__PURE__ */ (() => {
2598   - const method = "post";
2599   - const url = "/common/audit";
  2599 + const method = 'post';
  2600 + const url = '/common/audit';
2600 2601 function request(
2601   - option: PostCommonAuditOption
  2602 + option: PostCommonAuditOption,
2602 2603 ): Promise<PostCommonAuditResponseSuccess> {
2603 2604 return requester(request.url, {
2604 2605 method: request.method,
... ... @@ -2666,10 +2667,10 @@ export type PostDistrictAddOrderAndProvinceResponseSuccess =
2666 2667 * @consumes application/json
2667 2668 */
2668 2669 export const postDistrictAddOrderAndProvince = /* #__PURE__ */ (() => {
2669   - const method = "post";
2670   - const url = "/district/addOrderAndProvince";
  2670 + const method = 'post';
  2671 + const url = '/district/addOrderAndProvince';
2671 2672 function request(
2672   - option: PostDistrictAddOrderAndProvinceOption
  2673 + option: PostDistrictAddOrderAndProvinceOption,
2673 2674 ): Promise<PostDistrictAddOrderAndProvinceResponseSuccess> {
2674 2675 return requester(request.url, {
2675 2676 method: request.method,
... ... @@ -2738,10 +2739,10 @@ export type PostDistrictFindProvinceAndCityAndDistrictResponseSuccess =
2738 2739 */
2739 2740 export const postDistrictFindProvinceAndCityAndDistrict =
2740 2741 /* #__PURE__ */ (() => {
2741   - const method = "post";
2742   - const url = "/district/findProvinceAndCityAndDistrict";
  2742 + const method = 'post';
  2743 + const url = '/district/findProvinceAndCityAndDistrict';
2743 2744 function request(
2744   - option: PostDistrictFindProvinceAndCityAndDistrictOption
  2745 + option: PostDistrictFindProvinceAndCityAndDistrictOption,
2745 2746 ): Promise<PostDistrictFindProvinceAndCityAndDistrictResponseSuccess> {
2746 2747 return requester(request.url, {
2747 2748 method: request.method,
... ... @@ -2809,10 +2810,10 @@ export type PostDistrictSelOrderProvinceResponseSuccess =
2809 2810 * @consumes application/json
2810 2811 */
2811 2812 export const postDistrictSelOrderProvince = /* #__PURE__ */ (() => {
2812   - const method = "post";
2813   - const url = "/district/selOrderProvince";
  2813 + const method = 'post';
  2814 + const url = '/district/selOrderProvince';
2814 2815 function request(
2815   - option: PostDistrictSelOrderProvinceOption
  2816 + option: PostDistrictSelOrderProvinceOption,
2816 2817 ): Promise<PostDistrictSelOrderProvinceResponseSuccess> {
2817 2818 return requester(request.url, {
2818 2819 method: request.method,
... ... @@ -2860,8 +2861,8 @@ export type GetDistrictSelectAllResponseSuccess =
2860 2861 * @produces *
2861 2862 */
2862 2863 export const getDistrictSelectAll = /* #__PURE__ */ (() => {
2863   - const method = "get";
2864   - const url = "/district/selectAll";
  2864 + const method = 'get';
  2865 + const url = '/district/selectAll';
2865 2866 function request(): Promise<GetDistrictSelectAllResponseSuccess> {
2866 2867 return requester(request.url, {
2867 2868 method: request.method,
... ... @@ -2928,10 +2929,10 @@ export type PostDistrictSelectBelongResponseSuccess =
2928 2929 * @consumes application/json
2929 2930 */
2930 2931 export const postDistrictSelectBelong = /* #__PURE__ */ (() => {
2931   - const method = "post";
2932   - const url = "/district/selectBelong";
  2932 + const method = 'post';
  2933 + const url = '/district/selectBelong';
2933 2934 function request(
2934   - option: PostDistrictSelectBelongOption
  2935 + option: PostDistrictSelectBelongOption,
2935 2936 ): Promise<PostDistrictSelectBelongResponseSuccess> {
2936 2937 return requester(request.url, {
2937 2938 method: request.method,
... ... @@ -2999,10 +3000,10 @@ export type PostDistrictSelectBelongAndLevelResponseSuccess =
2999 3000 * @consumes application/json
3000 3001 */
3001 3002 export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() => {
3002   - const method = "post";
3003   - const url = "/district/selectBelongAndLevel";
  3003 + const method = 'post';
  3004 + const url = '/district/selectBelongAndLevel';
3004 3005 function request(
3005   - option: PostDistrictSelectBelongAndLevelOption
  3006 + option: PostDistrictSelectBelongAndLevelOption,
3006 3007 ): Promise<PostDistrictSelectBelongAndLevelResponseSuccess> {
3007 3008 return requester(request.url, {
3008 3009 method: request.method,
... ... @@ -3070,10 +3071,10 @@ export type PostDistrictSelectBelongByNameResponseSuccess =
3070 3071 * @consumes application/json
3071 3072 */
3072 3073 export const postDistrictSelectBelongByName = /* #__PURE__ */ (() => {
3073   - const method = "post";
3074   - const url = "/district/selectBelongByName";
  3074 + const method = 'post';
  3075 + const url = '/district/selectBelongByName';
3075 3076 function request(
3076   - option: PostDistrictSelectBelongByNameOption
  3077 + option: PostDistrictSelectBelongByNameOption,
3077 3078 ): Promise<PostDistrictSelectBelongByNameResponseSuccess> {
3078 3079 return requester(request.url, {
3079 3080 method: request.method,
... ... @@ -3141,10 +3142,10 @@ export type PostDistrictSelectByLevelResponseSuccess =
3141 3142 * @consumes application/json
3142 3143 */
3143 3144 export const postDistrictSelectByLevel = /* #__PURE__ */ (() => {
3144   - const method = "post";
3145   - const url = "/district/selectByLevel";
  3145 + const method = 'post';
  3146 + const url = '/district/selectByLevel';
3146 3147 function request(
3147   - option: PostDistrictSelectByLevelOption
  3148 + option: PostDistrictSelectByLevelOption,
3148 3149 ): Promise<PostDistrictSelectByLevelResponseSuccess> {
3149 3150 return requester(request.url, {
3150 3151 method: request.method,
... ... @@ -3212,10 +3213,10 @@ export type PostDistrictSelectByNameAndLevelResponseSuccess =
3212 3213 * @consumes application/json
3213 3214 */
3214 3215 export const postDistrictSelectByNameAndLevel = /* #__PURE__ */ (() => {
3215   - const method = "post";
3216   - const url = "/district/selectByNameAndLevel";
  3216 + const method = 'post';
  3217 + const url = '/district/selectByNameAndLevel';
3217 3218 function request(
3218   - option: PostDistrictSelectByNameAndLevelOption
  3219 + option: PostDistrictSelectByNameAndLevelOption,
3219 3220 ): Promise<PostDistrictSelectByNameAndLevelResponseSuccess> {
3220 3221 return requester(request.url, {
3221 3222 method: request.method,
... ... @@ -3236,9 +3237,7 @@ export interface GetErrorResponse {
3236 3237 * @description
3237 3238 * OK
3238 3239 */
3239   - 200: {
3240   - [propertyName: string]: any;
3241   - };
  3240 + 200: ModelAndView;
3242 3241 /**
3243 3242 * @description
3244 3243 * Unauthorized
... ... @@ -3259,13 +3258,13 @@ export interface GetErrorResponse {
3259 3258 export type GetErrorResponseSuccess = GetErrorResponse[200];
3260 3259 /**
3261 3260 * @description
3262   - * error
  3261 + * errorHtml
3263 3262 * @tags basic-error-controller
3264   - * @produces *
  3263 + * @produces text/html
3265 3264 */
3266 3265 export const getError = /* #__PURE__ */ (() => {
3267   - const method = "get";
3268   - const url = "/error";
  3266 + const method = 'get';
  3267 + const url = '/error';
3269 3268 function request(): Promise<GetErrorResponseSuccess> {
3270 3269 return requester(request.url, {
3271 3270 method: request.method,
... ... @@ -3285,9 +3284,7 @@ export interface PutErrorResponse {
3285 3284 * @description
3286 3285 * OK
3287 3286 */
3288   - 200: {
3289   - [propertyName: string]: any;
3290   - };
  3287 + 200: ModelAndView;
3291 3288 /**
3292 3289 * @description
3293 3290 * Created
... ... @@ -3313,14 +3310,14 @@ export interface PutErrorResponse {
3313 3310 export type PutErrorResponseSuccess = PutErrorResponse[200];
3314 3311 /**
3315 3312 * @description
3316   - * error
  3313 + * errorHtml
3317 3314 * @tags basic-error-controller
3318   - * @produces *
  3315 + * @produces text/html
3319 3316 * @consumes application/json
3320 3317 */
3321 3318 export const putError = /* #__PURE__ */ (() => {
3322   - const method = "put";
3323   - const url = "/error";
  3319 + const method = 'put';
  3320 + const url = '/error';
3324 3321 function request(): Promise<PutErrorResponseSuccess> {
3325 3322 return requester(request.url, {
3326 3323 method: request.method,
... ... @@ -3340,9 +3337,7 @@ export interface PostErrorResponse {
3340 3337 * @description
3341 3338 * OK
3342 3339 */
3343   - 200: {
3344   - [propertyName: string]: any;
3345   - };
  3340 + 200: ModelAndView;
3346 3341 /**
3347 3342 * @description
3348 3343 * Created
... ... @@ -3368,14 +3363,14 @@ export interface PostErrorResponse {
3368 3363 export type PostErrorResponseSuccess = PostErrorResponse[200];
3369 3364 /**
3370 3365 * @description
3371   - * error
  3366 + * errorHtml
3372 3367 * @tags basic-error-controller
3373   - * @produces *
  3368 + * @produces text/html
3374 3369 * @consumes application/json
3375 3370 */
3376 3371 export const postError = /* #__PURE__ */ (() => {
3377   - const method = "post";
3378   - const url = "/error";
  3372 + const method = 'post';
  3373 + const url = '/error';
3379 3374 function request(): Promise<PostErrorResponseSuccess> {
3380 3375 return requester(request.url, {
3381 3376 method: request.method,
... ... @@ -3395,9 +3390,7 @@ export interface DeleteErrorResponse {
3395 3390 * @description
3396 3391 * OK
3397 3392 */
3398   - 200: {
3399   - [propertyName: string]: any;
3400   - };
  3393 + 200: ModelAndView;
3401 3394 /**
3402 3395 * @description
3403 3396 * No Content
... ... @@ -3418,13 +3411,13 @@ export interface DeleteErrorResponse {
3418 3411 export type DeleteErrorResponseSuccess = DeleteErrorResponse[200];
3419 3412 /**
3420 3413 * @description
3421   - * error
  3414 + * errorHtml
3422 3415 * @tags basic-error-controller
3423   - * @produces *
  3416 + * @produces text/html
3424 3417 */
3425 3418 export const deleteError = /* #__PURE__ */ (() => {
3426   - const method = "delete";
3427   - const url = "/error";
  3419 + const method = 'delete';
  3420 + const url = '/error';
3428 3421 function request(): Promise<DeleteErrorResponseSuccess> {
3429 3422 return requester(request.url, {
3430 3423 method: request.method,
... ... @@ -3444,9 +3437,7 @@ export interface OptionsErrorResponse {
3444 3437 * @description
3445 3438 * OK
3446 3439 */
3447   - 200: {
3448   - [propertyName: string]: any;
3449   - };
  3440 + 200: ModelAndView;
3450 3441 /**
3451 3442 * @description
3452 3443 * No Content
... ... @@ -3467,14 +3458,14 @@ export interface OptionsErrorResponse {
3467 3458 export type OptionsErrorResponseSuccess = OptionsErrorResponse[200];
3468 3459 /**
3469 3460 * @description
3470   - * error
  3461 + * errorHtml
3471 3462 * @tags basic-error-controller
3472   - * @produces *
  3463 + * @produces text/html
3473 3464 * @consumes application/json
3474 3465 */
3475 3466 export const optionsError = /* #__PURE__ */ (() => {
3476   - const method = "options";
3477   - const url = "/error";
  3467 + const method = 'options';
  3468 + const url = '/error';
3478 3469 function request(): Promise<OptionsErrorResponseSuccess> {
3479 3470 return requester(request.url, {
3480 3471 method: request.method,
... ... @@ -3494,9 +3485,7 @@ export interface HeadErrorResponse {
3494 3485 * @description
3495 3486 * OK
3496 3487 */
3497   - 200: {
3498   - [propertyName: string]: any;
3499   - };
  3488 + 200: ModelAndView;
3500 3489 /**
3501 3490 * @description
3502 3491 * No Content
... ... @@ -3517,14 +3506,14 @@ export interface HeadErrorResponse {
3517 3506 export type HeadErrorResponseSuccess = HeadErrorResponse[200];
3518 3507 /**
3519 3508 * @description
3520   - * error
  3509 + * errorHtml
3521 3510 * @tags basic-error-controller
3522   - * @produces *
  3511 + * @produces text/html
3523 3512 * @consumes application/json
3524 3513 */
3525 3514 export const headError = /* #__PURE__ */ (() => {
3526   - const method = "head";
3527   - const url = "/error";
  3515 + const method = 'head';
  3516 + const url = '/error';
3528 3517 function request(): Promise<HeadErrorResponseSuccess> {
3529 3518 return requester(request.url, {
3530 3519 method: request.method,
... ... @@ -3544,9 +3533,7 @@ export interface PatchErrorResponse {
3544 3533 * @description
3545 3534 * OK
3546 3535 */
3547   - 200: {
3548   - [propertyName: string]: any;
3549   - };
  3536 + 200: ModelAndView;
3550 3537 /**
3551 3538 * @description
3552 3539 * No Content
... ... @@ -3567,14 +3554,14 @@ export interface PatchErrorResponse {
3567 3554 export type PatchErrorResponseSuccess = PatchErrorResponse[200];
3568 3555 /**
3569 3556 * @description
3570   - * error
  3557 + * errorHtml
3571 3558 * @tags basic-error-controller
3572   - * @produces *
  3559 + * @produces text/html
3573 3560 * @consumes application/json
3574 3561 */
3575 3562 export const patchError = /* #__PURE__ */ (() => {
3576   - const method = "patch";
3577   - const url = "/error";
  3563 + const method = 'patch';
  3564 + const url = '/error';
3578 3565 function request(): Promise<PatchErrorResponseSuccess> {
3579 3566 return requester(request.url, {
3580 3567 method: request.method,
... ... @@ -3640,10 +3627,10 @@ export type PostFileDirectDownResponseSuccess = PostFileDirectDownResponse[200];
3640 3627 * @consumes application/json
3641 3628 */
3642 3629 export const postFileDirectDown = /* #__PURE__ */ (() => {
3643   - const method = "post";
3644   - const url = "/file/directDown";
  3630 + const method = 'post';
  3631 + const url = '/file/directDown';
3645 3632 function request(
3646   - option: PostFileDirectDownOption
  3633 + option: PostFileDirectDownOption,
3647 3634 ): Promise<PostFileDirectDownResponseSuccess> {
3648 3635 return requester(request.url, {
3649 3636 method: request.method,
... ... @@ -3711,10 +3698,10 @@ export type PostKingdeeRepCustomerResponseSuccess =
3711 3698 * @consumes application/json
3712 3699 */
3713 3700 export const postKingdeeRepCustomer = /* #__PURE__ */ (() => {
3714   - const method = "post";
3715   - const url = "/kingdee/rep/customer";
  3701 + const method = 'post';
  3702 + const url = '/kingdee/rep/customer';
3716 3703 function request(
3717   - option: PostKingdeeRepCustomerOption
  3704 + option: PostKingdeeRepCustomerOption,
3718 3705 ): Promise<PostKingdeeRepCustomerResponseSuccess> {
3719 3706 return requester(request.url, {
3720 3707 method: request.method,
... ... @@ -3782,10 +3769,10 @@ export type PostKingdeeRepCustomerDetailResponseSuccess =
3782 3769 * @consumes application/json
3783 3770 */
3784 3771 export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() => {
3785   - const method = "post";
3786   - const url = "/kingdee/rep/customerDetail";
  3772 + const method = 'post';
  3773 + const url = '/kingdee/rep/customerDetail';
3787 3774 function request(
3788   - option: PostKingdeeRepCustomerDetailOption
  3775 + option: PostKingdeeRepCustomerDetailOption,
3789 3776 ): Promise<PostKingdeeRepCustomerDetailResponseSuccess> {
3790 3777 return requester(request.url, {
3791 3778 method: request.method,
... ... @@ -3853,10 +3840,10 @@ export type PostKingdeeRepCustomerSaveResponseSuccess =
3853 3840 * @consumes application/json
3854 3841 */
3855 3842 export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() => {
3856   - const method = "post";
3857   - const url = "/kingdee/rep/customerSave";
  3843 + const method = 'post';
  3844 + const url = '/kingdee/rep/customerSave';
3858 3845 function request(
3859   - option: PostKingdeeRepCustomerSaveOption
  3846 + option: PostKingdeeRepCustomerSaveOption,
3860 3847 ): Promise<PostKingdeeRepCustomerSaveResponseSuccess> {
3861 3848 return requester(request.url, {
3862 3849 method: request.method,
... ... @@ -3924,10 +3911,10 @@ export type PostKingdeeRepMaterialResponseSuccess =
3924 3911 * @consumes application/json
3925 3912 */
3926 3913 export const postKingdeeRepMaterial = /* #__PURE__ */ (() => {
3927   - const method = "post";
3928   - const url = "/kingdee/rep/material";
  3914 + const method = 'post';
  3915 + const url = '/kingdee/rep/material';
3929 3916 function request(
3930   - option: PostKingdeeRepMaterialOption
  3917 + option: PostKingdeeRepMaterialOption,
3931 3918 ): Promise<PostKingdeeRepMaterialResponseSuccess> {
3932 3919 return requester(request.url, {
3933 3920 method: request.method,
... ... @@ -3995,10 +3982,10 @@ export type PostKingdeeRepMaterialStockResponseSuccess =
3995 3982 * @consumes application/json
3996 3983 */
3997 3984 export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() => {
3998   - const method = "post";
3999   - const url = "/kingdee/rep/materialStock";
  3985 + const method = 'post';
  3986 + const url = '/kingdee/rep/materialStock';
4000 3987 function request(
4001   - option: PostKingdeeRepMaterialStockOption
  3988 + option: PostKingdeeRepMaterialStockOption,
4002 3989 ): Promise<PostKingdeeRepMaterialStockResponseSuccess> {
4003 3990 return requester(request.url, {
4004 3991 method: request.method,
... ... @@ -4066,10 +4053,10 @@ export type PostKingdeeRepMaterialUnitResponseSuccess =
4066 4053 * @consumes application/json
4067 4054 */
4068 4055 export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() => {
4069   - const method = "post";
4070   - const url = "/kingdee/rep/materialUnit";
  4056 + const method = 'post';
  4057 + const url = '/kingdee/rep/materialUnit';
4071 4058 function request(
4072   - option: PostKingdeeRepMaterialUnitOption
  4059 + option: PostKingdeeRepMaterialUnitOption,
4073 4060 ): Promise<PostKingdeeRepMaterialUnitResponseSuccess> {
4074 4061 return requester(request.url, {
4075 4062 method: request.method,
... ... @@ -4137,10 +4124,10 @@ export type PostKingdeeRepMeasureUnitResponseSuccess =
4137 4124 * @consumes application/json
4138 4125 */
4139 4126 export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() => {
4140   - const method = "post";
4141   - const url = "/kingdee/rep/measureUnit";
  4127 + const method = 'post';
  4128 + const url = '/kingdee/rep/measureUnit';
4142 4129 function request(
4143   - option: PostKingdeeRepMeasureUnitOption
  4130 + option: PostKingdeeRepMeasureUnitOption,
4144 4131 ): Promise<PostKingdeeRepMeasureUnitResponseSuccess> {
4145 4132 return requester(request.url, {
4146 4133 method: request.method,
... ... @@ -4208,10 +4195,10 @@ export type PostKingdeeRepSalBillOutboundResponseSuccess =
4208 4195 * @consumes application/json
4209 4196 */
4210 4197 export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() => {
4211   - const method = "post";
4212   - const url = "/kingdee/rep/salBillOutbound";
  4198 + const method = 'post';
  4199 + const url = '/kingdee/rep/salBillOutbound';
4213 4200 function request(
4214   - option: PostKingdeeRepSalBillOutboundOption
  4201 + option: PostKingdeeRepSalBillOutboundOption,
4215 4202 ): Promise<PostKingdeeRepSalBillOutboundResponseSuccess> {
4216 4203 return requester(request.url, {
4217 4204 method: request.method,
... ... @@ -4279,10 +4266,10 @@ export type PostKingdeeRepSalOrderSaveResponseSuccess =
4279 4266 * @consumes application/json
4280 4267 */
4281 4268 export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() => {
4282   - const method = "post";
4283   - const url = "/kingdee/rep/salOrderSave";
  4269 + const method = 'post';
  4270 + const url = '/kingdee/rep/salOrderSave';
4284 4271 function request(
4285   - option: PostKingdeeRepSalOrderSaveOption
  4272 + option: PostKingdeeRepSalOrderSaveOption,
4286 4273 ): Promise<PostKingdeeRepSalOrderSaveResponseSuccess> {
4287 4274 return requester(request.url, {
4288 4275 method: request.method,
... ... @@ -4350,10 +4337,10 @@ export type PostKingdeeRepSystemCustomFieldResponseSuccess =
4350 4337 * @consumes application/json
4351 4338 */
4352 4339 export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() => {
4353   - const method = "post";
4354   - const url = "/kingdee/rep/systemCustomField";
  4340 + const method = 'post';
  4341 + const url = '/kingdee/rep/systemCustomField';
4355 4342 function request(
4356   - option: PostKingdeeRepSystemCustomFieldOption
  4343 + option: PostKingdeeRepSystemCustomFieldOption,
4357 4344 ): Promise<PostKingdeeRepSystemCustomFieldResponseSuccess> {
4358 4345 return requester(request.url, {
4359 4346 method: request.method,
... ... @@ -4421,10 +4408,10 @@ export type PostOfficialWebsiteUploadAliOssResponseSuccess =
4421 4408 * @consumes application/json
4422 4409 */
4423 4410 export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() => {
4424   - const method = "post";
4425   - const url = "/official/website/uploadAliOss";
  4411 + const method = 'post';
  4412 + const url = '/official/website/uploadAliOss';
4426 4413 function request(
4427   - option: PostOfficialWebsiteUploadAliOssOption
  4414 + option: PostOfficialWebsiteUploadAliOssOption,
4428 4415 ): Promise<PostOfficialWebsiteUploadAliOssResponseSuccess> {
4429 4416 return requester(request.url, {
4430 4417 method: request.method,
... ... @@ -4492,10 +4479,10 @@ export type PostOldInvoicingWhiteListBatchAddResponseSuccess =
4492 4479 * @consumes application/json
4493 4480 */
4494 4481 export const postOldInvoicingWhiteListBatchAdd = /* #__PURE__ */ (() => {
4495   - const method = "post";
4496   - const url = "/oldInvoicingWhiteList/batchAdd";
  4482 + const method = 'post';
  4483 + const url = '/oldInvoicingWhiteList/batchAdd';
4497 4484 function request(
4498   - option: PostOldInvoicingWhiteListBatchAddOption
  4485 + option: PostOldInvoicingWhiteListBatchAddOption,
4499 4486 ): Promise<PostOldInvoicingWhiteListBatchAddResponseSuccess> {
4500 4487 return requester(request.url, {
4501 4488 method: request.method,
... ... @@ -4563,10 +4550,10 @@ export type PostOldInvoicingWhiteListPageResponseSuccess =
4563 4550 * @consumes application/json
4564 4551 */
4565 4552 export const postOldInvoicingWhiteListPage = /* #__PURE__ */ (() => {
4566   - const method = "post";
4567   - const url = "/oldInvoicingWhiteList/page";
  4553 + const method = 'post';
  4554 + const url = '/oldInvoicingWhiteList/page';
4568 4555 function request(
4569   - option: PostOldInvoicingWhiteListPageOption
  4556 + option: PostOldInvoicingWhiteListPageOption,
4570 4557 ): Promise<PostOldInvoicingWhiteListPageResponseSuccess> {
4571 4558 return requester(request.url, {
4572 4559 method: request.method,
... ... @@ -4636,10 +4623,10 @@ export type PostOldInvoicingWhiteListRemoveResponseSuccess =
4636 4623 * @consumes application/json
4637 4624 */
4638 4625 export const postOldInvoicingWhiteListRemove = /* #__PURE__ */ (() => {
4639   - const method = "post";
4640   - const url = "/oldInvoicingWhiteList/remove";
  4626 + const method = 'post';
  4627 + const url = '/oldInvoicingWhiteList/remove';
4641 4628 function request(
4642   - option?: PostOldInvoicingWhiteListRemoveOption
  4629 + option?: PostOldInvoicingWhiteListRemoveOption,
4643 4630 ): Promise<PostOldInvoicingWhiteListRemoveResponseSuccess> {
4644 4631 return requester(request.url, {
4645 4632 method: request.method,
... ... @@ -4707,10 +4694,10 @@ export type PostOrderErpApplyListResponseSuccess =
4707 4694 * @consumes application/json
4708 4695 */
4709 4696 export const postOrderErpApplyList = /* #__PURE__ */ (() => {
4710   - const method = "post";
4711   - const url = "/order/erp/apply/list";
  4697 + const method = 'post';
  4698 + const url = '/order/erp/apply/list';
4712 4699 function request(
4713   - option: PostOrderErpApplyListOption
  4700 + option: PostOrderErpApplyListOption,
4714 4701 ): Promise<PostOrderErpApplyListResponseSuccess> {
4715 4702 return requester(request.url, {
4716 4703 method: request.method,
... ... @@ -4778,10 +4765,10 @@ export type PostOrderErpAuditAuditListResponseSuccess =
4778 4765 * @consumes application/json
4779 4766 */
4780 4767 export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => {
4781   - const method = "post";
4782   - const url = "/order/erp/audit/audit_list";
  4768 + const method = 'post';
  4769 + const url = '/order/erp/audit/audit_list';
4783 4770 function request(
4784   - option: PostOrderErpAuditAuditListOption
  4771 + option: PostOrderErpAuditAuditListOption,
4785 4772 ): Promise<PostOrderErpAuditAuditListResponseSuccess> {
4786 4773 return requester(request.url, {
4787 4774 method: request.method,
... ... @@ -4849,10 +4836,10 @@ export type PostOrderErpAuditDoAuditResponseSuccess =
4849 4836 * @consumes application/json
4850 4837 */
4851 4838 export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => {
4852   - const method = "post";
4853   - const url = "/order/erp/audit/do_audit";
  4839 + const method = 'post';
  4840 + const url = '/order/erp/audit/do_audit';
4854 4841 function request(
4855   - option: PostOrderErpAuditDoAuditOption
  4842 + option: PostOrderErpAuditDoAuditOption,
4856 4843 ): Promise<PostOrderErpAuditDoAuditResponseSuccess> {
4857 4844 return requester(request.url, {
4858 4845 method: request.method,
... ... @@ -4920,10 +4907,10 @@ export type PostOrderErpAuditListByPageResponseSuccess =
4920 4907 * @consumes application/json
4921 4908 */
4922 4909 export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => {
4923   - const method = "post";
4924   - const url = "/order/erp/audit/list_by_page";
  4910 + const method = 'post';
  4911 + const url = '/order/erp/audit/list_by_page';
4925 4912 function request(
4926   - option: PostOrderErpAuditListByPageOption
  4913 + option: PostOrderErpAuditListByPageOption,
4927 4914 ): Promise<PostOrderErpAuditListByPageResponseSuccess> {
4928 4915 return requester(request.url, {
4929 4916 method: request.method,
... ... @@ -4991,10 +4978,10 @@ export type PostOrderErpAuditLogListByPageResponseSuccess =
4991 4978 * @consumes application/json
4992 4979 */
4993 4980 export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => {
4994   - const method = "post";
4995   - const url = "/order/erp/audit/log/list_by_page";
  4981 + const method = 'post';
  4982 + const url = '/order/erp/audit/log/list_by_page';
4996 4983 function request(
4997   - option: PostOrderErpAuditLogListByPageOption
  4984 + option: PostOrderErpAuditLogListByPageOption,
4998 4985 ): Promise<PostOrderErpAuditLogListByPageResponseSuccess> {
4999 4986 return requester(request.url, {
5000 4987 method: request.method,
... ... @@ -5062,10 +5049,10 @@ export type PostOrderErpAuditLogQueryByIdResponseSuccess =
5062 5049 * @consumes application/json
5063 5050 */
5064 5051 export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() => {
5065   - const method = "post";
5066   - const url = "/order/erp/audit/log/query_by_id";
  5052 + const method = 'post';
  5053 + const url = '/order/erp/audit/log/query_by_id';
5067 5054 function request(
5068   - option: PostOrderErpAuditLogQueryByIdOption
  5055 + option: PostOrderErpAuditLogQueryByIdOption,
5069 5056 ): Promise<PostOrderErpAuditLogQueryByIdResponseSuccess> {
5070 5057 return requester(request.url, {
5071 5058 method: request.method,
... ... @@ -5133,10 +5120,10 @@ export type PostOrderErpAuditWaitAuditListResponseSuccess =
5133 5120 * @consumes application/json
5134 5121 */
5135 5122 export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() => {
5136   - const method = "post";
5137   - const url = "/order/erp/audit/wait_audit_list";
  5123 + const method = 'post';
  5124 + const url = '/order/erp/audit/wait_audit_list';
5138 5125 function request(
5139   - option: PostOrderErpAuditWaitAuditListOption
  5126 + option: PostOrderErpAuditWaitAuditListOption,
5140 5127 ): Promise<PostOrderErpAuditWaitAuditListResponseSuccess> {
5141 5128 return requester(request.url, {
5142 5129 method: request.method,
... ... @@ -5204,10 +5191,10 @@ export type PostOrderErpAuthLoginByPhoneResponseSuccess =
5204 5191 * @consumes application/json
5205 5192 */
5206 5193 export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => {
5207   - const method = "post";
5208   - const url = "/order/erp/auth/login_by_phone";
  5194 + const method = 'post';
  5195 + const url = '/order/erp/auth/login_by_phone';
5209 5196 function request(
5210   - option: PostOrderErpAuthLoginByPhoneOption
  5197 + option: PostOrderErpAuthLoginByPhoneOption,
5211 5198 ): Promise<PostOrderErpAuthLoginByPhoneResponseSuccess> {
5212 5199 return requester(request.url, {
5213 5200 method: request.method,
... ... @@ -5275,10 +5262,10 @@ export type PostOrderErpAuthLoginByPwdResponseSuccess =
5275 5262 * @consumes application/json
5276 5263 */
5277 5264 export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => {
5278   - const method = "post";
5279   - const url = "/order/erp/auth/login_by_pwd";
  5265 + const method = 'post';
  5266 + const url = '/order/erp/auth/login_by_pwd';
5280 5267 function request(
5281   - option: PostOrderErpAuthLoginByPwdOption
  5268 + option: PostOrderErpAuthLoginByPwdOption,
5282 5269 ): Promise<PostOrderErpAuthLoginByPwdResponseSuccess> {
5283 5270 return requester(request.url, {
5284 5271 method: request.method,
... ... @@ -5332,8 +5319,8 @@ export type PostOrderErpAuthLoginOutResponseSuccess =
5332 5319 * @consumes application/json
5333 5320 */
5334 5321 export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => {
5335   - const method = "post";
5336   - const url = "/order/erp/auth/login_out";
  5322 + const method = 'post';
  5323 + const url = '/order/erp/auth/login_out';
5337 5324 function request(): Promise<PostOrderErpAuthLoginOutResponseSuccess> {
5338 5325 return requester(request.url, {
5339 5326 method: request.method,
... ... @@ -5400,10 +5387,10 @@ export type PostOrderErpAuthPasswordModifyResponseSuccess =
5400 5387 * @consumes application/json
5401 5388 */
5402 5389 export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => {
5403   - const method = "post";
5404   - const url = "/order/erp/auth/password_modify";
  5390 + const method = 'post';
  5391 + const url = '/order/erp/auth/password_modify';
5405 5392 function request(
5406   - option: PostOrderErpAuthPasswordModifyOption
  5393 + option: PostOrderErpAuthPasswordModifyOption,
5407 5394 ): Promise<PostOrderErpAuthPasswordModifyResponseSuccess> {
5408 5395 return requester(request.url, {
5409 5396 method: request.method,
... ... @@ -5471,10 +5458,10 @@ export type PostOrderErpAuthPhoneRegisterResponseSuccess =
5471 5458 * @consumes application/json
5472 5459 */
5473 5460 export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => {
5474   - const method = "post";
5475   - const url = "/order/erp/auth/phone_register";
  5461 + const method = 'post';
  5462 + const url = '/order/erp/auth/phone_register';
5476 5463 function request(
5477   - option: PostOrderErpAuthPhoneRegisterOption
  5464 + option: PostOrderErpAuthPhoneRegisterOption,
5478 5465 ): Promise<PostOrderErpAuthPhoneRegisterResponseSuccess> {
5479 5466 return requester(request.url, {
5480 5467 method: request.method,
... ... @@ -5542,10 +5529,10 @@ export type PostOrderErpAuthSendPasswordRecoverMailResponseSuccess =
5542 5529 * @consumes application/json
5543 5530 */
5544 5531 export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => {
5545   - const method = "post";
5546   - const url = "/order/erp/auth/send_password_recover_mail";
  5532 + const method = 'post';
  5533 + const url = '/order/erp/auth/send_password_recover_mail';
5547 5534 function request(
5548   - option: PostOrderErpAuthSendPasswordRecoverMailOption
  5535 + option: PostOrderErpAuthSendPasswordRecoverMailOption,
5549 5536 ): Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess> {
5550 5537 return requester(request.url, {
5551 5538 method: request.method,
... ... @@ -5613,10 +5600,10 @@ export type PostOrderErpAuthTokenResponseSuccess =
5613 5600 * @consumes application/json
5614 5601 */
5615 5602 export const postOrderErpAuthToken = /* #__PURE__ */ (() => {
5616   - const method = "post";
5617   - const url = "/order/erp/auth/token";
  5603 + const method = 'post';
  5604 + const url = '/order/erp/auth/token';
5618 5605 function request(
5619   - option: PostOrderErpAuthTokenOption
  5606 + option: PostOrderErpAuthTokenOption,
5620 5607 ): Promise<PostOrderErpAuthTokenResponseSuccess> {
5621 5608 return requester(request.url, {
5622 5609 method: request.method,
... ... @@ -5670,8 +5657,8 @@ export type PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess =
5670 5657 * @consumes application/json
5671 5658 */
5672 5659 export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() => {
5673   - const method = "post";
5674   - const url = "/order/erp/captcha/get_img_captcha_code";
  5660 + const method = 'post';
  5661 + const url = '/order/erp/captcha/get_img_captcha_code';
5675 5662 function request(): Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess> {
5676 5663 return requester(request.url, {
5677 5664 method: request.method,
... ... @@ -5738,10 +5725,10 @@ export type PostOrderErpCaptchaSendCaptchaCodeResponseSuccess =
5738 5725 * @consumes application/json
5739 5726 */
5740 5727 export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() => {
5741   - const method = "post";
5742   - const url = "/order/erp/captcha/send_captcha_code";
  5728 + const method = 'post';
  5729 + const url = '/order/erp/captcha/send_captcha_code';
5743 5730 function request(
5744   - option: PostOrderErpCaptchaSendCaptchaCodeOption
  5731 + option: PostOrderErpCaptchaSendCaptchaCodeOption,
5745 5732 ): Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess> {
5746 5733 return requester(request.url, {
5747 5734 method: request.method,
... ... @@ -5808,10 +5795,10 @@ export type PutOrderErpDeptsResponseSuccess = PutOrderErpDeptsResponse[200];
5808 5795 * @consumes application/json
5809 5796 */
5810 5797 export const putOrderErpDepts = /* #__PURE__ */ (() => {
5811   - const method = "put";
5812   - const url = "/order/erp/depts";
  5798 + const method = 'put';
  5799 + const url = '/order/erp/depts';
5813 5800 function request(
5814   - option: PutOrderErpDeptsOption
  5801 + option: PutOrderErpDeptsOption,
5815 5802 ): Promise<PutOrderErpDeptsResponseSuccess> {
5816 5803 return requester(request.url, {
5817 5804 method: request.method,
... ... @@ -5873,10 +5860,10 @@ export type DeleteOrderErpDeptsResponseSuccess =
5873 5860 * @produces *
5874 5861 */
5875 5862 export const deleteOrderErpDepts = /* #__PURE__ */ (() => {
5876   - const method = "delete";
5877   - const url = "/order/erp/depts";
  5863 + const method = 'delete';
  5864 + const url = '/order/erp/depts';
5878 5865 function request(
5879   - option: DeleteOrderErpDeptsOption
  5866 + option: DeleteOrderErpDeptsOption,
5880 5867 ): Promise<DeleteOrderErpDeptsResponseSuccess> {
5881 5868 return requester(request.url, {
5882 5869 method: request.method,
... ... @@ -5944,10 +5931,10 @@ export type PostOrderErpDeptsAddResponseSuccess =
5944 5931 * @consumes application/json
5945 5932 */
5946 5933 export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => {
5947   - const method = "post";
5948   - const url = "/order/erp/depts/add";
  5934 + const method = 'post';
  5935 + const url = '/order/erp/depts/add';
5949 5936 function request(
5950   - option: PostOrderErpDeptsAddOption
  5937 + option: PostOrderErpDeptsAddOption,
5951 5938 ): Promise<PostOrderErpDeptsAddResponseSuccess> {
5952 5939 return requester(request.url, {
5953 5940 method: request.method,
... ... @@ -6015,10 +6002,10 @@ export type PostOrderErpDeptsListByPageResponseSuccess =
6015 6002 * @consumes application/json
6016 6003 */
6017 6004 export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => {
6018   - const method = "post";
6019   - const url = "/order/erp/depts/list_by_page";
  6005 + const method = 'post';
  6006 + const url = '/order/erp/depts/list_by_page';
6020 6007 function request(
6021   - option: PostOrderErpDeptsListByPageOption
  6008 + option: PostOrderErpDeptsListByPageOption,
6022 6009 ): Promise<PostOrderErpDeptsListByPageResponseSuccess> {
6023 6010 return requester(request.url, {
6024 6011 method: request.method,
... ... @@ -6086,10 +6073,10 @@ export type PostOrderErpDictionaryAddResponseSuccess =
6086 6073 * @consumes application/json
6087 6074 */
6088 6075 export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => {
6089   - const method = "post";
6090   - const url = "/order/erp/dictionary/add";
  6076 + const method = 'post';
  6077 + const url = '/order/erp/dictionary/add';
6091 6078 function request(
6092   - option: PostOrderErpDictionaryAddOption
  6079 + option: PostOrderErpDictionaryAddOption,
6093 6080 ): Promise<PostOrderErpDictionaryAddResponseSuccess> {
6094 6081 return requester(request.url, {
6095 6082 method: request.method,
... ... @@ -6157,10 +6144,10 @@ export type PostOrderErpDictionaryDeleteResponseSuccess =
6157 6144 * @consumes application/json
6158 6145 */
6159 6146 export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => {
6160   - const method = "post";
6161   - const url = "/order/erp/dictionary/delete";
  6147 + const method = 'post';
  6148 + const url = '/order/erp/dictionary/delete';
6162 6149 function request(
6163   - option: PostOrderErpDictionaryDeleteOption
  6150 + option: PostOrderErpDictionaryDeleteOption,
6164 6151 ): Promise<PostOrderErpDictionaryDeleteResponseSuccess> {
6165 6152 return requester(request.url, {
6166 6153 method: request.method,
... ... @@ -6228,10 +6215,10 @@ export type PostOrderErpDictionaryEditResponseSuccess =
6228 6215 * @consumes application/json
6229 6216 */
6230 6217 export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => {
6231   - const method = "post";
6232   - const url = "/order/erp/dictionary/edit";
  6218 + const method = 'post';
  6219 + const url = '/order/erp/dictionary/edit';
6233 6220 function request(
6234   - option: PostOrderErpDictionaryEditOption
  6221 + option: PostOrderErpDictionaryEditOption,
6235 6222 ): Promise<PostOrderErpDictionaryEditResponseSuccess> {
6236 6223 return requester(request.url, {
6237 6224 method: request.method,
... ... @@ -6299,10 +6286,10 @@ export type PostOrderErpDictionaryGetAllResponseSuccess =
6299 6286 * @consumes application/json
6300 6287 */
6301 6288 export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => {
6302   - const method = "post";
6303   - const url = "/order/erp/dictionary/get_all";
  6289 + const method = 'post';
  6290 + const url = '/order/erp/dictionary/get_all';
6304 6291 function request(
6305   - option: PostOrderErpDictionaryGetAllOption
  6292 + option: PostOrderErpDictionaryGetAllOption,
6306 6293 ): Promise<PostOrderErpDictionaryGetAllResponseSuccess> {
6307 6294 return requester(request.url, {
6308 6295 method: request.method,
... ... @@ -6370,10 +6357,10 @@ export type PostOrderErpDictionaryListByPageResponseSuccess =
6370 6357 * @consumes application/json
6371 6358 */
6372 6359 export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => {
6373   - const method = "post";
6374   - const url = "/order/erp/dictionary/list_by_page";
  6360 + const method = 'post';
  6361 + const url = '/order/erp/dictionary/list_by_page';
6375 6362 function request(
6376   - option: PostOrderErpDictionaryListByPageOption
  6363 + option: PostOrderErpDictionaryListByPageOption,
6377 6364 ): Promise<PostOrderErpDictionaryListByPageResponseSuccess> {
6378 6365 return requester(request.url, {
6379 6366 method: request.method,
... ... @@ -6421,8 +6408,8 @@ export type GetOrderErpIndexChartDataResponseSuccess =
6421 6408 * @produces *
6422 6409 */
6423 6410 export const getOrderErpIndexChartData = /* #__PURE__ */ (() => {
6424   - const method = "get";
6425   - const url = "/order/erp/index/chartData";
  6411 + const method = 'get';
  6412 + const url = '/order/erp/index/chartData';
6426 6413 function request(): Promise<GetOrderErpIndexChartDataResponseSuccess> {
6427 6414 return requester(request.url, {
6428 6415 method: request.method,
... ... @@ -6469,8 +6456,8 @@ export type GetOrderErpIndexDataResponseSuccess =
6469 6456 * @produces *
6470 6457 */
6471 6458 export const getOrderErpIndexData = /* #__PURE__ */ (() => {
6472   - const method = "get";
6473   - const url = "/order/erp/index/data";
  6459 + const method = 'get';
  6460 + const url = '/order/erp/index/data';
6474 6461 function request(): Promise<GetOrderErpIndexDataResponseSuccess> {
6475 6462 return requester(request.url, {
6476 6463 method: request.method,
... ... @@ -6537,10 +6524,10 @@ export type PostOrderErpJobsAddResponseSuccess =
6537 6524 * @consumes application/json
6538 6525 */
6539 6526 export const postOrderErpJobsAdd = /* #__PURE__ */ (() => {
6540   - const method = "post";
6541   - const url = "/order/erp/jobs/add";
  6527 + const method = 'post';
  6528 + const url = '/order/erp/jobs/add';
6542 6529 function request(
6543   - option: PostOrderErpJobsAddOption
  6530 + option: PostOrderErpJobsAddOption,
6544 6531 ): Promise<PostOrderErpJobsAddResponseSuccess> {
6545 6532 return requester(request.url, {
6546 6533 method: request.method,
... ... @@ -6608,10 +6595,10 @@ export type PostOrderErpJobsDeleteResponseSuccess =
6608 6595 * @consumes application/json
6609 6596 */
6610 6597 export const postOrderErpJobsDelete = /* #__PURE__ */ (() => {
6611   - const method = "post";
6612   - const url = "/order/erp/jobs/delete";
  6598 + const method = 'post';
  6599 + const url = '/order/erp/jobs/delete';
6613 6600 function request(
6614   - option: PostOrderErpJobsDeleteOption
  6601 + option: PostOrderErpJobsDeleteOption,
6615 6602 ): Promise<PostOrderErpJobsDeleteResponseSuccess> {
6616 6603 return requester(request.url, {
6617 6604 method: request.method,
... ... @@ -6679,10 +6666,10 @@ export type PostOrderErpJobsEditResponseSuccess =
6679 6666 * @consumes application/json
6680 6667 */
6681 6668 export const postOrderErpJobsEdit = /* #__PURE__ */ (() => {
6682   - const method = "post";
6683   - const url = "/order/erp/jobs/edit";
  6669 + const method = 'post';
  6670 + const url = '/order/erp/jobs/edit';
6684 6671 function request(
6685   - option: PostOrderErpJobsEditOption
  6672 + option: PostOrderErpJobsEditOption,
6686 6673 ): Promise<PostOrderErpJobsEditResponseSuccess> {
6687 6674 return requester(request.url, {
6688 6675 method: request.method,
... ... @@ -6750,10 +6737,10 @@ export type PostOrderErpJobsListByPageResponseSuccess =
6750 6737 * @consumes application/json
6751 6738 */
6752 6739 export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => {
6753   - const method = "post";
6754   - const url = "/order/erp/jobs/list_by_page";
  6740 + const method = 'post';
  6741 + const url = '/order/erp/jobs/list_by_page';
6755 6742 function request(
6756   - option: PostOrderErpJobsListByPageOption
  6743 + option: PostOrderErpJobsListByPageOption,
6757 6744 ): Promise<PostOrderErpJobsListByPageResponseSuccess> {
6758 6745 return requester(request.url, {
6759 6746 method: request.method,
... ... @@ -6821,10 +6808,10 @@ export type PostOrderErpLogsListResponseSuccess =
6821 6808 * @consumes application/json
6822 6809 */
6823 6810 export const postOrderErpLogsList = /* #__PURE__ */ (() => {
6824   - const method = "post";
6825   - const url = "/order/erp/logs/list";
  6811 + const method = 'post';
  6812 + const url = '/order/erp/logs/list';
6826 6813 function request(
6827   - option: PostOrderErpLogsListOption
  6814 + option: PostOrderErpLogsListOption,
6828 6815 ): Promise<PostOrderErpLogsListResponseSuccess> {
6829 6816 return requester(request.url, {
6830 6817 method: request.method,
... ... @@ -6892,10 +6879,10 @@ export type PostOrderErpMenusAddResponseSuccess =
6892 6879 * @consumes application/json
6893 6880 */
6894 6881 export const postOrderErpMenusAdd = /* #__PURE__ */ (() => {
6895   - const method = "post";
6896   - const url = "/order/erp/menus/add";
  6882 + const method = 'post';
  6883 + const url = '/order/erp/menus/add';
6897 6884 function request(
6898   - option: PostOrderErpMenusAddOption
  6885 + option: PostOrderErpMenusAddOption,
6899 6886 ): Promise<PostOrderErpMenusAddResponseSuccess> {
6900 6887 return requester(request.url, {
6901 6888 method: request.method,
... ... @@ -6963,10 +6950,10 @@ export type PostOrderErpMenusAllResponseSuccess =
6963 6950 * @consumes application/json
6964 6951 */
6965 6952 export const postOrderErpMenusAll = /* #__PURE__ */ (() => {
6966   - const method = "post";
6967   - const url = "/order/erp/menus/all";
  6953 + const method = 'post';
  6954 + const url = '/order/erp/menus/all';
6968 6955 function request(
6969   - option: PostOrderErpMenusAllOption
  6956 + option: PostOrderErpMenusAllOption,
6970 6957 ): Promise<PostOrderErpMenusAllResponseSuccess> {
6971 6958 return requester(request.url, {
6972 6959 method: request.method,
... ... @@ -7020,8 +7007,8 @@ export type PostOrderErpMenusBuildResponseSuccess =
7020 7007 * @consumes application/json
7021 7008 */
7022 7009 export const postOrderErpMenusBuild = /* #__PURE__ */ (() => {
7023   - const method = "post";
7024   - const url = "/order/erp/menus/build";
  7010 + const method = 'post';
  7011 + const url = '/order/erp/menus/build';
7025 7012 function request(): Promise<PostOrderErpMenusBuildResponseSuccess> {
7026 7013 return requester(request.url, {
7027 7014 method: request.method,
... ... @@ -7088,10 +7075,10 @@ export type PostOrderErpMenusDeleteResponseSuccess =
7088 7075 * @consumes application/json
7089 7076 */
7090 7077 export const postOrderErpMenusDelete = /* #__PURE__ */ (() => {
7091   - const method = "post";
7092   - const url = "/order/erp/menus/delete";
  7078 + const method = 'post';
  7079 + const url = '/order/erp/menus/delete';
7093 7080 function request(
7094   - option: PostOrderErpMenusDeleteOption
  7081 + option: PostOrderErpMenusDeleteOption,
7095 7082 ): Promise<PostOrderErpMenusDeleteResponseSuccess> {
7096 7083 return requester(request.url, {
7097 7084 method: request.method,
... ... @@ -7159,10 +7146,10 @@ export type PostOrderErpMenusEditResponseSuccess =
7159 7146 * @consumes application/json
7160 7147 */
7161 7148 export const postOrderErpMenusEdit = /* #__PURE__ */ (() => {
7162   - const method = "post";
7163   - const url = "/order/erp/menus/edit";
  7149 + const method = 'post';
  7150 + const url = '/order/erp/menus/edit';
7164 7151 function request(
7165   - option: PostOrderErpMenusEditOption
  7152 + option: PostOrderErpMenusEditOption,
7166 7153 ): Promise<PostOrderErpMenusEditResponseSuccess> {
7167 7154 return requester(request.url, {
7168 7155 method: request.method,
... ... @@ -7216,8 +7203,8 @@ export type PostOrderErpMenusTreeResponseSuccess =
7216 7203 * @consumes application/json
7217 7204 */
7218 7205 export const postOrderErpMenusTree = /* #__PURE__ */ (() => {
7219   - const method = "post";
7220   - const url = "/order/erp/menus/tree";
  7206 + const method = 'post';
  7207 + const url = '/order/erp/menus/tree';
7221 7208 function request(): Promise<PostOrderErpMenusTreeResponseSuccess> {
7222 7209 return requester(request.url, {
7223 7210 method: request.method,
... ... @@ -7270,8 +7257,8 @@ export type PostOrderErpMessageGetUnreadNumResponseSuccess =
7270 7257 * @consumes application/json
7271 7258 */
7272 7259 export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => {
7273   - const method = "post";
7274   - const url = "/order/erp/message/getUnreadNum";
  7260 + const method = 'post';
  7261 + const url = '/order/erp/message/getUnreadNum';
7275 7262 function request(): Promise<PostOrderErpMessageGetUnreadNumResponseSuccess> {
7276 7263 return requester(request.url, {
7277 7264 method: request.method,
... ... @@ -7338,10 +7325,10 @@ export type PostOrderErpMessageQueryMyMessageResponseSuccess =
7338 7325 * @consumes application/json
7339 7326 */
7340 7327 export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => {
7341   - const method = "post";
7342   - const url = "/order/erp/message/queryMyMessage";
  7328 + const method = 'post';
  7329 + const url = '/order/erp/message/queryMyMessage';
7343 7330 function request(
7344   - option: PostOrderErpMessageQueryMyMessageOption
  7331 + option: PostOrderErpMessageQueryMyMessageOption,
7345 7332 ): Promise<PostOrderErpMessageQueryMyMessageResponseSuccess> {
7346 7333 return requester(request.url, {
7347 7334 method: request.method,
... ... @@ -7409,10 +7396,10 @@ export type PostOrderErpMessageReadResponseSuccess =
7409 7396 * @consumes application/json
7410 7397 */
7411 7398 export const postOrderErpMessageRead = /* #__PURE__ */ (() => {
7412   - const method = "post";
7413   - const url = "/order/erp/message/read";
  7399 + const method = 'post';
  7400 + const url = '/order/erp/message/read';
7414 7401 function request(
7415   - option: PostOrderErpMessageReadOption
  7402 + option: PostOrderErpMessageReadOption,
7416 7403 ): Promise<PostOrderErpMessageReadResponseSuccess> {
7417 7404 return requester(request.url, {
7418 7405 method: request.method,
... ... @@ -7466,8 +7453,8 @@ export type PostOrderErpMessageReadAllResponseSuccess =
7466 7453 * @consumes application/json
7467 7454 */
7468 7455 export const postOrderErpMessageReadAll = /* #__PURE__ */ (() => {
7469   - const method = "post";
7470   - const url = "/order/erp/message/readAll";
  7456 + const method = 'post';
  7457 + const url = '/order/erp/message/readAll';
7471 7458 function request(): Promise<PostOrderErpMessageReadAllResponseSuccess> {
7472 7459 return requester(request.url, {
7473 7460 method: request.method,
... ... @@ -7534,10 +7521,10 @@ export type PostOrderErpOptLogListByPageResponseSuccess =
7534 7521 * @consumes application/json
7535 7522 */
7536 7523 export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => {
7537   - const method = "post";
7538   - const url = "/order/erp/opt/log/list_by_page";
  7524 + const method = 'post';
  7525 + const url = '/order/erp/opt/log/list_by_page';
7539 7526 function request(
7540   - option: PostOrderErpOptLogListByPageOption
  7527 + option: PostOrderErpOptLogListByPageOption,
7541 7528 ): Promise<PostOrderErpOptLogListByPageResponseSuccess> {
7542 7529 return requester(request.url, {
7543 7530 method: request.method,
... ... @@ -7605,10 +7592,10 @@ export type PostOrderErpOrderAddResponseSuccess =
7605 7592 * @consumes application/json
7606 7593 */
7607 7594 export const postOrderErpOrderAdd = /* #__PURE__ */ (() => {
7608   - const method = "post";
7609   - const url = "/order/erp/order/add";
  7595 + const method = 'post';
  7596 + const url = '/order/erp/order/add';
7610 7597 function request(
7611   - option: PostOrderErpOrderAddOption
  7598 + option: PostOrderErpOrderAddOption,
7612 7599 ): Promise<PostOrderErpOrderAddResponseSuccess> {
7613 7600 return requester(request.url, {
7614 7601 method: request.method,
... ... @@ -7676,10 +7663,10 @@ export type PostOrderErpOrderDeleteByIdResponseSuccess =
7676 7663 * @consumes application/json
7677 7664 */
7678 7665 export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => {
7679   - const method = "post";
7680   - const url = "/order/erp/order/delete_by_id";
  7666 + const method = 'post';
  7667 + const url = '/order/erp/order/delete_by_id';
7681 7668 function request(
7682   - option: PostOrderErpOrderDeleteByIdOption
  7669 + option: PostOrderErpOrderDeleteByIdOption,
7683 7670 ): Promise<PostOrderErpOrderDeleteByIdResponseSuccess> {
7684 7671 return requester(request.url, {
7685 7672 method: request.method,
... ... @@ -7747,10 +7734,10 @@ export type PostOrderErpOrderEditResponseSuccess =
7747 7734 * @consumes application/json
7748 7735 */
7749 7736 export const postOrderErpOrderEdit = /* #__PURE__ */ (() => {
7750   - const method = "post";
7751   - const url = "/order/erp/order/edit";
  7737 + const method = 'post';
  7738 + const url = '/order/erp/order/edit';
7752 7739 function request(
7753   - option: PostOrderErpOrderEditOption
  7740 + option: PostOrderErpOrderEditOption,
7754 7741 ): Promise<PostOrderErpOrderEditResponseSuccess> {
7755 7742 return requester(request.url, {
7756 7743 method: request.method,
... ... @@ -7818,10 +7805,10 @@ export type PostOrderErpOrderExportResponseSuccess =
7818 7805 * @consumes application/json
7819 7806 */
7820 7807 export const postOrderErpOrderExport = /* #__PURE__ */ (() => {
7821   - const method = "post";
7822   - const url = "/order/erp/order/export";
  7808 + const method = 'post';
  7809 + const url = '/order/erp/order/export';
7823 7810 function request(
7824   - option: PostOrderErpOrderExportOption
  7811 + option: PostOrderErpOrderExportOption,
7825 7812 ): Promise<PostOrderErpOrderExportResponseSuccess> {
7826 7813 return requester(request.url, {
7827 7814 method: request.method,
... ... @@ -7889,10 +7876,10 @@ export type PostOrderErpOrderFieldUnlockApplyResponseSuccess =
7889 7876 * @consumes application/json
7890 7877 */
7891 7878 export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => {
7892   - const method = "post";
7893   - const url = "/order/erp/order/field_unlock_apply";
  7879 + const method = 'post';
  7880 + const url = '/order/erp/order/field_unlock_apply';
7894 7881 function request(
7895   - option: PostOrderErpOrderFieldUnlockApplyOption
  7882 + option: PostOrderErpOrderFieldUnlockApplyOption,
7896 7883 ): Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess> {
7897 7884 return requester(request.url, {
7898 7885 method: request.method,
... ... @@ -7960,10 +7947,10 @@ export type PostOrderErpOrderListByPageResponseSuccess =
7960 7947 * @consumes application/json
7961 7948 */
7962 7949 export const postOrderErpOrderListByPage = /* #__PURE__ */ (() => {
7963   - const method = "post";
7964   - const url = "/order/erp/order/list_by_page";
  7950 + const method = 'post';
  7951 + const url = '/order/erp/order/list_by_page';
7965 7952 function request(
7966   - option: PostOrderErpOrderListByPageOption
  7953 + option: PostOrderErpOrderListByPageOption,
7967 7954 ): Promise<PostOrderErpOrderListByPageResponseSuccess> {
7968 7955 return requester(request.url, {
7969 7956 method: request.method,
... ... @@ -8031,10 +8018,10 @@ export type PostOrderErpOrderQueryByIdResponseSuccess =
8031 8018 * @consumes application/json
8032 8019 */
8033 8020 export const postOrderErpOrderQueryById = /* #__PURE__ */ (() => {
8034   - const method = "post";
8035   - const url = "/order/erp/order/query_by_id";
  8021 + const method = 'post';
  8022 + const url = '/order/erp/order/query_by_id';
8036 8023 function request(
8037   - option: PostOrderErpOrderQueryByIdOption
  8024 + option: PostOrderErpOrderQueryByIdOption,
8038 8025 ): Promise<PostOrderErpOrderQueryByIdResponseSuccess> {
8039 8026 return requester(request.url, {
8040 8027 method: request.method,
... ... @@ -8102,10 +8089,10 @@ export type PostOrderErpOrderStagesAddResponseSuccess =
8102 8089 * @consumes application/json
8103 8090 */
8104 8091 export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => {
8105   - const method = "post";
8106   - const url = "/order/erp/orderStages/add";
  8092 + const method = 'post';
  8093 + const url = '/order/erp/orderStages/add';
8107 8094 function request(
8108   - option: PostOrderErpOrderStagesAddOption
  8095 + option: PostOrderErpOrderStagesAddOption,
8109 8096 ): Promise<PostOrderErpOrderStagesAddResponseSuccess> {
8110 8097 return requester(request.url, {
8111 8098 method: request.method,
... ... @@ -8173,10 +8160,10 @@ export type PostOrderErpOrderStagesCheckOrderStagesResponseSuccess =
8173 8160 * @consumes application/json
8174 8161 */
8175 8162 export const postOrderErpOrderStagesCheckOrderStages = /* #__PURE__ */ (() => {
8176   - const method = "post";
8177   - const url = "/order/erp/orderStages/checkOrderStages";
  8163 + const method = 'post';
  8164 + const url = '/order/erp/orderStages/checkOrderStages';
8178 8165 function request(
8179   - option: PostOrderErpOrderStagesCheckOrderStagesOption
  8166 + option: PostOrderErpOrderStagesCheckOrderStagesOption,
8180 8167 ): Promise<PostOrderErpOrderStagesCheckOrderStagesResponseSuccess> {
8181 8168 return requester(request.url, {
8182 8169 method: request.method,
... ... @@ -8238,10 +8225,10 @@ export type DeleteOrderErpOrderStagesDelectResponseSuccess =
8238 8225 * @produces *
8239 8226 */
8240 8227 export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() => {
8241   - const method = "delete";
8242   - const url = "/order/erp/orderStages/delect";
  8228 + const method = 'delete';
  8229 + const url = '/order/erp/orderStages/delect';
8243 8230 function request(
8244   - option: DeleteOrderErpOrderStagesDelectOption
  8231 + option: DeleteOrderErpOrderStagesDelectOption,
8245 8232 ): Promise<DeleteOrderErpOrderStagesDelectResponseSuccess> {
8246 8233 return requester(request.url, {
8247 8234 method: request.method,
... ... @@ -8289,8 +8276,8 @@ export type GetOrderErpOrderStagesExportResponseSuccess =
8289 8276 * @produces *
8290 8277 */
8291 8278 export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() => {
8292   - const method = "get";
8293   - const url = "/order/erp/orderStages/export";
  8279 + const method = 'get';
  8280 + const url = '/order/erp/orderStages/export';
8294 8281 function request(): Promise<GetOrderErpOrderStagesExportResponseSuccess> {
8295 8282 return requester(request.url, {
8296 8283 method: request.method,
... ... @@ -8357,10 +8344,10 @@ export type PostOrderErpOrderStagesImportResponseSuccess =
8357 8344 * @consumes multipart/form-data
8358 8345 */
8359 8346 export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() => {
8360   - const method = "post";
8361   - const url = "/order/erp/orderStages/import";
  8347 + const method = 'post';
  8348 + const url = '/order/erp/orderStages/import';
8362 8349 function request(
8363   - option: PostOrderErpOrderStagesImportOption
  8350 + option: PostOrderErpOrderStagesImportOption,
8364 8351 ): Promise<PostOrderErpOrderStagesImportResponseSuccess> {
8365 8352 return requester(request.url, {
8366 8353 method: request.method,
... ... @@ -8408,8 +8395,8 @@ export type GetOrderErpOrderStagesListAllResponseSuccess =
8408 8395 * @produces *
8409 8396 */
8410 8397 export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() => {
8411   - const method = "get";
8412   - const url = "/order/erp/orderStages/listAll";
  8398 + const method = 'get';
  8399 + const url = '/order/erp/orderStages/listAll';
8413 8400 function request(): Promise<GetOrderErpOrderStagesListAllResponseSuccess> {
8414 8401 return requester(request.url, {
8415 8402 method: request.method,
... ... @@ -8476,10 +8463,10 @@ export type PostOrderErpOrderStagesSaveOrUpdateResponseSuccess =
8476 8463 * @consumes application/json
8477 8464 */
8478 8465 export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => {
8479   - const method = "post";
8480   - const url = "/order/erp/orderStages/saveOrUpdate";
  8466 + const method = 'post';
  8467 + const url = '/order/erp/orderStages/saveOrUpdate';
8481 8468 function request(
8482   - option: PostOrderErpOrderStagesSaveOrUpdateOption
  8469 + option: PostOrderErpOrderStagesSaveOrUpdateOption,
8483 8470 ): Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess> {
8484 8471 return requester(request.url, {
8485 8472 method: request.method,
... ... @@ -8547,10 +8534,10 @@ export type PostOrderErpOrderStagesSearchResponseSuccess =
8547 8534 * @consumes application/json
8548 8535 */
8549 8536 export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => {
8550   - const method = "post";
8551   - const url = "/order/erp/orderStages/search";
  8537 + const method = 'post';
  8538 + const url = '/order/erp/orderStages/search';
8552 8539 function request(
8553   - option: PostOrderErpOrderStagesSearchOption
  8540 + option: PostOrderErpOrderStagesSearchOption,
8554 8541 ): Promise<PostOrderErpOrderStagesSearchResponseSuccess> {
8555 8542 return requester(request.url, {
8556 8543 method: request.method,
... ... @@ -8618,10 +8605,10 @@ export type PostOrderErpOrderStagesUploadResponseSuccess =
8618 8605 * @consumes multipart/form-data
8619 8606 */
8620 8607 export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => {
8621   - const method = "post";
8622   - const url = "/order/erp/orderStages/upload";
  8608 + const method = 'post';
  8609 + const url = '/order/erp/orderStages/upload';
8623 8610 function request(
8624   - option: PostOrderErpOrderStagesUploadOption
  8611 + option: PostOrderErpOrderStagesUploadOption,
8625 8612 ): Promise<PostOrderErpOrderStagesUploadResponseSuccess> {
8626 8613 return requester(request.url, {
8627 8614 method: request.method,
... ... @@ -8690,10 +8677,10 @@ export type PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess =
8690 8677 */
8691 8678 export const postOrderErpOrderStagesPayWaySaveOrUpdate =
8692 8679 /* #__PURE__ */ (() => {
8693   - const method = "post";
8694   - const url = "/order/erp/orderStagesPayWay/saveOrUpdate";
  8680 + const method = 'post';
  8681 + const url = '/order/erp/orderStagesPayWay/saveOrUpdate';
8695 8682 function request(
8696   - option: PostOrderErpOrderStagesPayWaySaveOrUpdateOption
  8683 + option: PostOrderErpOrderStagesPayWaySaveOrUpdateOption,
8697 8684 ): Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess> {
8698 8685 return requester(request.url, {
8699 8686 method: request.method,
... ... @@ -8761,10 +8748,10 @@ export type PostOrderErpOrderStagesPayWaySelectResponseSuccess =
8761 8748 * @consumes application/json
8762 8749 */
8763 8750 export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => {
8764   - const method = "post";
8765   - const url = "/order/erp/orderStagesPayWay/select";
  8751 + const method = 'post';
  8752 + const url = '/order/erp/orderStagesPayWay/select';
8766 8753 function request(
8767   - option: PostOrderErpOrderStagesPayWaySelectOption
  8754 + option: PostOrderErpOrderStagesPayWaySelectOption,
8768 8755 ): Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess> {
8769 8756 return requester(request.url, {
8770 8757 method: request.method,
... ... @@ -8833,10 +8820,10 @@ export type PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess =
8833 8820 */
8834 8821 export const postOrderErpOrderStagesPayWayUploadForPayWay =
8835 8822 /* #__PURE__ */ (() => {
8836   - const method = "post";
8837   - const url = "/order/erp/orderStagesPayWay/uploadForPayWay";
  8823 + const method = 'post';
  8824 + const url = '/order/erp/orderStagesPayWay/uploadForPayWay';
8838 8825 function request(
8839   - option: PostOrderErpOrderStagesPayWayUploadForPayWayOption
  8826 + option: PostOrderErpOrderStagesPayWayUploadForPayWayOption,
8840 8827 ): Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess> {
8841 8828 return requester(request.url, {
8842 8829 method: request.method,
... ... @@ -8898,10 +8885,10 @@ export type DeleteOrderErpOrderZoNingDeleteResponseSuccess =
8898 8885 * @produces *
8899 8886 */
8900 8887 export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => {
8901   - const method = "delete";
8902   - const url = "/order/erp/orderZoNing/delete";
  8888 + const method = 'delete';
  8889 + const url = '/order/erp/orderZoNing/delete';
8903 8890 function request(
8904   - option: DeleteOrderErpOrderZoNingDeleteOption
  8891 + option: DeleteOrderErpOrderZoNingDeleteOption,
8905 8892 ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> {
8906 8893 return requester(request.url, {
8907 8894 method: request.method,
... ... @@ -8969,10 +8956,10 @@ export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess =
8969 8956 * @consumes application/json
8970 8957 */
8971 8958 export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => {
8972   - const method = "post";
8973   - const url = "/order/erp/orderZoNing/saveOrUpdate";
  8959 + const method = 'post';
  8960 + const url = '/order/erp/orderZoNing/saveOrUpdate';
8974 8961 function request(
8975   - option: PostOrderErpOrderZoNingSaveOrUpdateOption
  8962 + option: PostOrderErpOrderZoNingSaveOrUpdateOption,
8976 8963 ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> {
8977 8964 return requester(request.url, {
8978 8965 method: request.method,
... ... @@ -9020,8 +9007,8 @@ export type GetOrderErpOrderZoNingSelectAllResponseSuccess =
9020 9007 * @produces *
9021 9008 */
9022 9009 export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => {
9023   - const method = "get";
9024   - const url = "/order/erp/orderZoNing/selectAll";
  9010 + const method = 'get';
  9011 + const url = '/order/erp/orderZoNing/selectAll';
9025 9012 function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> {
9026 9013 return requester(request.url, {
9027 9014 method: request.method,
... ... @@ -9068,8 +9055,8 @@ export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess =
9068 9055 * @produces *
9069 9056 */
9070 9057 export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => {
9071   - const method = "get";
9072   - const url = "/order/erp/orderZoNing/selectProvinceAll";
  9058 + const method = 'get';
  9059 + const url = '/order/erp/orderZoNing/selectProvinceAll';
9073 9060 function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> {
9074 9061 return requester(request.url, {
9075 9062 method: request.method,
... ... @@ -9137,10 +9124,10 @@ export type PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess =
9137 9124 */
9138 9125 export const postOrderErpOrderZoNingSelectSaleUserByProvince =
9139 9126 /* #__PURE__ */ (() => {
9140   - const method = "post";
9141   - const url = "/order/erp/orderZoNing/selectSaleUserByProvince";
  9127 + const method = 'post';
  9128 + const url = '/order/erp/orderZoNing/selectSaleUserByProvince';
9142 9129 function request(
9143   - option: PostOrderErpOrderZoNingSelectSaleUserByProvinceOption
  9130 + option: PostOrderErpOrderZoNingSelectSaleUserByProvinceOption,
9144 9131 ): Promise<PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess> {
9145 9132 return requester(request.url, {
9146 9133 method: request.method,
... ... @@ -9209,10 +9196,10 @@ export type PostOrderErpOrderZoNingSelectSaleUserHasZoningResponseSuccess =
9209 9196 */
9210 9197 export const postOrderErpOrderZoNingSelectSaleUserHasZoning =
9211 9198 /* #__PURE__ */ (() => {
9212   - const method = "post";
9213   - const url = "/order/erp/orderZoNing/selectSaleUserHasZoning";
  9199 + const method = 'post';
  9200 + const url = '/order/erp/orderZoNing/selectSaleUserHasZoning';
9214 9201 function request(
9215   - option: PostOrderErpOrderZoNingSelectSaleUserHasZoningOption
  9202 + option: PostOrderErpOrderZoNingSelectSaleUserHasZoningOption,
9216 9203 ): Promise<PostOrderErpOrderZoNingSelectSaleUserHasZoningResponseSuccess> {
9217 9204 return requester(request.url, {
9218 9205 method: request.method,
... ... @@ -9260,8 +9247,8 @@ export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess =
9260 9247 * @produces *
9261 9248 */
9262 9249 export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => {
9263   - const method = "get";
9264   - const url = "/order/erp/orderZoNing/selectUserAll";
  9250 + const method = 'get';
  9251 + const url = '/order/erp/orderZoNing/selectUserAll';
9265 9252 function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> {
9266 9253 return requester(request.url, {
9267 9254 method: request.method,
... ... @@ -9328,10 +9315,10 @@ export type PostOrderErpProfitAnalysisResponseSuccess =
9328 9315 * @consumes application/json
9329 9316 */
9330 9317 export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => {
9331   - const method = "post";
9332   - const url = "/order/erp/profit/analysis";
  9318 + const method = 'post';
  9319 + const url = '/order/erp/profit/analysis';
9333 9320 function request(
9334   - option: PostOrderErpProfitAnalysisOption
  9321 + option: PostOrderErpProfitAnalysisOption,
9335 9322 ): Promise<PostOrderErpProfitAnalysisResponseSuccess> {
9336 9323 return requester(request.url, {
9337 9324 method: request.method,
... ... @@ -9399,10 +9386,10 @@ export type PostOrderErpRolesAddResponseSuccess =
9399 9386 * @consumes application/json
9400 9387 */
9401 9388 export const postOrderErpRolesAdd = /* #__PURE__ */ (() => {
9402   - const method = "post";
9403   - const url = "/order/erp/roles/add";
  9389 + const method = 'post';
  9390 + const url = '/order/erp/roles/add';
9404 9391 function request(
9405   - option: PostOrderErpRolesAddOption
  9392 + option: PostOrderErpRolesAddOption,
9406 9393 ): Promise<PostOrderErpRolesAddResponseSuccess> {
9407 9394 return requester(request.url, {
9408 9395 method: request.method,
... ... @@ -9470,10 +9457,10 @@ export type PostOrderErpRolesAllResponseSuccess =
9470 9457 * @consumes application/json
9471 9458 */
9472 9459 export const postOrderErpRolesAll = /* #__PURE__ */ (() => {
9473   - const method = "post";
9474   - const url = "/order/erp/roles/all";
  9460 + const method = 'post';
  9461 + const url = '/order/erp/roles/all';
9475 9462 function request(
9476   - option: PostOrderErpRolesAllOption
  9463 + option: PostOrderErpRolesAllOption,
9477 9464 ): Promise<PostOrderErpRolesAllResponseSuccess> {
9478 9465 return requester(request.url, {
9479 9466 method: request.method,
... ... @@ -9541,10 +9528,10 @@ export type PostOrderErpRolesAuthMenuResponseSuccess =
9541 9528 * @consumes application/json
9542 9529 */
9543 9530 export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => {
9544   - const method = "post";
9545   - const url = "/order/erp/roles/auth_menu";
  9531 + const method = 'post';
  9532 + const url = '/order/erp/roles/auth_menu';
9546 9533 function request(
9547   - option: PostOrderErpRolesAuthMenuOption
  9534 + option: PostOrderErpRolesAuthMenuOption,
9548 9535 ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> {
9549 9536 return requester(request.url, {
9550 9537 method: request.method,
... ... @@ -9612,10 +9599,10 @@ export type PostOrderErpRolesDeleteResponseSuccess =
9612 9599 * @consumes application/json
9613 9600 */
9614 9601 export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {
9615   - const method = "post";
9616   - const url = "/order/erp/roles/delete";
  9602 + const method = 'post';
  9603 + const url = '/order/erp/roles/delete';
9617 9604 function request(
9618   - option: PostOrderErpRolesDeleteOption
  9605 + option: PostOrderErpRolesDeleteOption,
9619 9606 ): Promise<PostOrderErpRolesDeleteResponseSuccess> {
9620 9607 return requester(request.url, {
9621 9608 method: request.method,
... ... @@ -9683,10 +9670,10 @@ export type PostOrderErpRolesDetailResponseSuccess =
9683 9670 * @consumes application/json
9684 9671 */
9685 9672 export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {
9686   - const method = "post";
9687   - const url = "/order/erp/roles/detail";
  9673 + const method = 'post';
  9674 + const url = '/order/erp/roles/detail';
9688 9675 function request(
9689   - option: PostOrderErpRolesDetailOption
  9676 + option: PostOrderErpRolesDetailOption,
9690 9677 ): Promise<PostOrderErpRolesDetailResponseSuccess> {
9691 9678 return requester(request.url, {
9692 9679 method: request.method,
... ... @@ -9754,10 +9741,10 @@ export type PostOrderErpRolesEditResponseSuccess =
9754 9741 * @consumes application/json
9755 9742 */
9756 9743 export const postOrderErpRolesEdit = /* #__PURE__ */ (() => {
9757   - const method = "post";
9758   - const url = "/order/erp/roles/edit";
  9744 + const method = 'post';
  9745 + const url = '/order/erp/roles/edit';
9759 9746 function request(
9760   - option: PostOrderErpRolesEditOption
  9747 + option: PostOrderErpRolesEditOption,
9761 9748 ): Promise<PostOrderErpRolesEditResponseSuccess> {
9762 9749 return requester(request.url, {
9763 9750 method: request.method,
... ... @@ -9825,10 +9812,10 @@ export type PostOrderErpRolesListByPageResponseSuccess =
9825 9812 * @consumes application/json
9826 9813 */
9827 9814 export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {
9828   - const method = "post";
9829   - const url = "/order/erp/roles/list_by_page";
  9815 + const method = 'post';
  9816 + const url = '/order/erp/roles/list_by_page';
9830 9817 function request(
9831   - option: PostOrderErpRolesListByPageOption
  9818 + option: PostOrderErpRolesListByPageOption,
9832 9819 ): Promise<PostOrderErpRolesListByPageResponseSuccess> {
9833 9820 return requester(request.url, {
9834 9821 method: request.method,
... ... @@ -9896,10 +9883,10 @@ export type PostOrderErpUsersAddResponseSuccess =
9896 9883 * @consumes application/json
9897 9884 */
9898 9885 export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {
9899   - const method = "post";
9900   - const url = "/order/erp/users/add";
  9886 + const method = 'post';
  9887 + const url = '/order/erp/users/add';
9901 9888 function request(
9902   - option: PostOrderErpUsersAddOption
  9889 + option: PostOrderErpUsersAddOption,
9903 9890 ): Promise<PostOrderErpUsersAddResponseSuccess> {
9904 9891 return requester(request.url, {
9905 9892 method: request.method,
... ... @@ -9967,10 +9954,10 @@ export type PostOrderErpUsersAuthRoleResponseSuccess =
9967 9954 * @consumes application/json
9968 9955 */
9969 9956 export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {
9970   - const method = "post";
9971   - const url = "/order/erp/users/auth_role";
  9957 + const method = 'post';
  9958 + const url = '/order/erp/users/auth_role';
9972 9959 function request(
9973   - option: PostOrderErpUsersAuthRoleOption
  9960 + option: PostOrderErpUsersAuthRoleOption,
9974 9961 ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {
9975 9962 return requester(request.url, {
9976 9963 method: request.method,
... ... @@ -10038,10 +10025,10 @@ export type PostOrderErpUsersDeleteResponseSuccess =
10038 10025 * @consumes application/json
10039 10026 */
10040 10027 export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {
10041   - const method = "post";
10042   - const url = "/order/erp/users/delete";
  10028 + const method = 'post';
  10029 + const url = '/order/erp/users/delete';
10043 10030 function request(
10044   - option: PostOrderErpUsersDeleteOption
  10031 + option: PostOrderErpUsersDeleteOption,
10045 10032 ): Promise<PostOrderErpUsersDeleteResponseSuccess> {
10046 10033 return requester(request.url, {
10047 10034 method: request.method,
... ... @@ -10109,10 +10096,10 @@ export type PostOrderErpUsersEditResponseSuccess =
10109 10096 * @consumes application/json
10110 10097 */
10111 10098 export const postOrderErpUsersEdit = /* #__PURE__ */ (() => {
10112   - const method = "post";
10113   - const url = "/order/erp/users/edit";
  10099 + const method = 'post';
  10100 + const url = '/order/erp/users/edit';
10114 10101 function request(
10115   - option: PostOrderErpUsersEditOption
  10102 + option: PostOrderErpUsersEditOption,
10116 10103 ): Promise<PostOrderErpUsersEditResponseSuccess> {
10117 10104 return requester(request.url, {
10118 10105 method: request.method,
... ... @@ -10180,10 +10167,10 @@ export type PostOrderErpUsersListByPageResponseSuccess =
10180 10167 * @consumes application/json
10181 10168 */
10182 10169 export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => {
10183   - const method = "post";
10184   - const url = "/order/erp/users/list_by_page";
  10170 + const method = 'post';
  10171 + const url = '/order/erp/users/list_by_page';
10185 10172 function request(
10186   - option: PostOrderErpUsersListByPageOption
  10173 + option: PostOrderErpUsersListByPageOption,
10187 10174 ): Promise<PostOrderErpUsersListByPageResponseSuccess> {
10188 10175 return requester(request.url, {
10189 10176 method: request.method,
... ... @@ -10251,10 +10238,10 @@ export type PostOrderErpUsersResetResponseSuccess =
10251 10238 * @consumes application/json
10252 10239 */
10253 10240 export const postOrderErpUsersReset = /* #__PURE__ */ (() => {
10254   - const method = "post";
10255   - const url = "/order/erp/users/reset";
  10241 + const method = 'post';
  10242 + const url = '/order/erp/users/reset';
10256 10243 function request(
10257   - option: PostOrderErpUsersResetOption
  10244 + option: PostOrderErpUsersResetOption,
10258 10245 ): Promise<PostOrderErpUsersResetResponseSuccess> {
10259 10246 return requester(request.url, {
10260 10247 method: request.method,
... ... @@ -10322,10 +10309,10 @@ export type PostOrderErpUsersUpdatePassResponseSuccess =
10322 10309 * @consumes application/json
10323 10310 */
10324 10311 export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => {
10325   - const method = "post";
10326   - const url = "/order/erp/users/update_pass";
  10312 + const method = 'post';
  10313 + const url = '/order/erp/users/update_pass';
10327 10314 function request(
10328   - option: PostOrderErpUsersUpdatePassOption
  10315 + option: PostOrderErpUsersUpdatePassOption,
10329 10316 ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> {
10330 10317 return requester(request.url, {
10331 10318 method: request.method,
... ... @@ -10393,10 +10380,10 @@ export type PostOrderImportImportInvoiceProjectResponseSuccess =
10393 10380 * @consumes multipart/form-data
10394 10381 */
10395 10382 export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() => {
10396   - const method = "post";
10397   - const url = "/order/import/importInvoiceProject";
  10383 + const method = 'post';
  10384 + const url = '/order/import/importInvoiceProject';
10398 10385 function request(
10399   - option: PostOrderImportImportInvoiceProjectOption
  10386 + option: PostOrderImportImportInvoiceProjectOption,
10400 10387 ): Promise<PostOrderImportImportInvoiceProjectResponseSuccess> {
10401 10388 return requester(request.url, {
10402 10389 method: request.method,
... ... @@ -10464,10 +10451,10 @@ export type PostOrderImportImportWeightAndVolumeResponseSuccess =
10464 10451 * @consumes multipart/form-data
10465 10452 */
10466 10453 export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => {
10467   - const method = "post";
10468   - const url = "/order/import/importWeightAndVolume";
  10454 + const method = 'post';
  10455 + const url = '/order/import/importWeightAndVolume';
10469 10456 function request(
10470   - option: PostOrderImportImportWeightAndVolumeOption
  10457 + option: PostOrderImportImportWeightAndVolumeOption,
10471 10458 ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> {
10472 10459 return requester(request.url, {
10473 10460 method: request.method,
... ... @@ -10534,10 +10521,10 @@ export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200];
10534 10521 * @consumes application/json
10535 10522 */
10536 10523 export const postPrepaidAudit = /* #__PURE__ */ (() => {
10537   - const method = "post";
10538   - const url = "/prepaid/audit";
  10524 + const method = 'post';
  10525 + const url = '/prepaid/audit';
10539 10526 function request(
10540   - option: PostPrepaidAuditOption
  10527 + option: PostPrepaidAuditOption,
10541 10528 ): Promise<PostPrepaidAuditResponseSuccess> {
10542 10529 return requester(request.url, {
10543 10530 method: request.method,
... ... @@ -10604,10 +10591,10 @@ export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200];
10604 10591 * @consumes application/json
10605 10592 */
10606 10593 export const postPrepaidCreate = /* #__PURE__ */ (() => {
10607   - const method = "post";
10608   - const url = "/prepaid/create";
  10594 + const method = 'post';
  10595 + const url = '/prepaid/create';
10609 10596 function request(
10610   - option: PostPrepaidCreateOption
  10597 + option: PostPrepaidCreateOption,
10611 10598 ): Promise<PostPrepaidCreateResponseSuccess> {
10612 10599 return requester(request.url, {
10613 10600 method: request.method,
... ... @@ -10674,10 +10661,10 @@ export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200];
10674 10661 * @consumes application/json
10675 10662 */
10676 10663 export const postPrepaidDelete = /* #__PURE__ */ (() => {
10677   - const method = "post";
10678   - const url = "/prepaid/delete";
  10664 + const method = 'post';
  10665 + const url = '/prepaid/delete';
10679 10666 function request(
10680   - option: PostPrepaidDeleteOption
  10667 + option: PostPrepaidDeleteOption,
10681 10668 ): Promise<PostPrepaidDeleteResponseSuccess> {
10682 10669 return requester(request.url, {
10683 10670 method: request.method,
... ... @@ -10744,10 +10731,10 @@ export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200];
10744 10731 * @consumes application/json
10745 10732 */
10746 10733 export const postPrepaidList = /* #__PURE__ */ (() => {
10747   - const method = "post";
10748   - const url = "/prepaid/list";
  10734 + const method = 'post';
  10735 + const url = '/prepaid/list';
10749 10736 function request(
10750   - option: PostPrepaidListOption
  10737 + option: PostPrepaidListOption,
10751 10738 ): Promise<PostPrepaidListResponseSuccess> {
10752 10739 return requester(request.url, {
10753 10740 method: request.method,
... ... @@ -10815,10 +10802,10 @@ export type PostPrepaidPhoneAvailableListResponseSuccess =
10815 10802 * @consumes application/json
10816 10803 */
10817 10804 export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => {
10818   - const method = "post";
10819   - const url = "/prepaid/phone/available/list";
  10805 + const method = 'post';
  10806 + const url = '/prepaid/phone/available/list';
10820 10807 function request(
10821   - option: PostPrepaidPhoneAvailableListOption
  10808 + option: PostPrepaidPhoneAvailableListOption,
10822 10809 ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> {
10823 10810 return requester(request.url, {
10824 10811 method: request.method,
... ... @@ -10885,10 +10872,10 @@ export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200];
10885 10872 * @consumes application/json
10886 10873 */
10887 10874 export const postPrepaidUpdate = /* #__PURE__ */ (() => {
10888   - const method = "post";
10889   - const url = "/prepaid/update";
  10875 + const method = 'post';
  10876 + const url = '/prepaid/update';
10890 10877 function request(
10891   - option: PostPrepaidUpdateOption
  10878 + option: PostPrepaidUpdateOption,
10892 10879 ): Promise<PostPrepaidUpdateResponseSuccess> {
10893 10880 return requester(request.url, {
10894 10881 method: request.method,
... ... @@ -10956,10 +10943,10 @@ export type PostProcureReturnBillAddResponseSuccess =
10956 10943 * @consumes application/json
10957 10944 */
10958 10945 export const postProcureReturnBillAdd = /* #__PURE__ */ (() => {
10959   - const method = "post";
10960   - const url = "/procureReturnBill/add";
  10946 + const method = 'post';
  10947 + const url = '/procureReturnBill/add';
10961 10948 function request(
10962   - option: PostProcureReturnBillAddOption
  10949 + option: PostProcureReturnBillAddOption,
10963 10950 ): Promise<PostProcureReturnBillAddResponseSuccess> {
10964 10951 return requester(request.url, {
10965 10952 method: request.method,
... ... @@ -11027,10 +11014,10 @@ export type PostProcureReturnBillAddOrModifyResponseSuccess =
11027 11014 * @consumes application/json
11028 11015 */
11029 11016 export const postProcureReturnBillAddOrModify = /* #__PURE__ */ (() => {
11030   - const method = "post";
11031   - const url = "/procureReturnBill/addOrModify";
  11017 + const method = 'post';
  11018 + const url = '/procureReturnBill/addOrModify';
11032 11019 function request(
11033   - option: PostProcureReturnBillAddOrModifyOption
  11020 + option: PostProcureReturnBillAddOrModifyOption,
11034 11021 ): Promise<PostProcureReturnBillAddOrModifyResponseSuccess> {
11035 11022 return requester(request.url, {
11036 11023 method: request.method,
... ... @@ -11098,10 +11085,10 @@ export type PostProcureReturnBillAuditResponseSuccess =
11098 11085 * @consumes application/json
11099 11086 */
11100 11087 export const postProcureReturnBillAudit = /* #__PURE__ */ (() => {
11101   - const method = "post";
11102   - const url = "/procureReturnBill/audit";
  11088 + const method = 'post';
  11089 + const url = '/procureReturnBill/audit';
11103 11090 function request(
11104   - option: PostProcureReturnBillAuditOption
  11091 + option: PostProcureReturnBillAuditOption,
11105 11092 ): Promise<PostProcureReturnBillAuditResponseSuccess> {
11106 11093 return requester(request.url, {
11107 11094 method: request.method,
... ... @@ -11169,10 +11156,10 @@ export type PostProcureReturnBillExportResponseSuccess =
11169 11156 * @consumes application/json
11170 11157 */
11171 11158 export const postProcureReturnBillExport = /* #__PURE__ */ (() => {
11172   - const method = "post";
11173   - const url = "/procureReturnBill/export";
  11159 + const method = 'post';
  11160 + const url = '/procureReturnBill/export';
11174 11161 function request(
11175   - option: PostProcureReturnBillExportOption
  11162 + option: PostProcureReturnBillExportOption,
11176 11163 ): Promise<PostProcureReturnBillExportResponseSuccess> {
11177 11164 return requester(request.url, {
11178 11165 method: request.method,
... ... @@ -11240,10 +11227,10 @@ export type PostProcureReturnBillModifyResponseSuccess =
11240 11227 * @consumes application/json
11241 11228 */
11242 11229 export const postProcureReturnBillModify = /* #__PURE__ */ (() => {
11243   - const method = "post";
11244   - const url = "/procureReturnBill/modify";
  11230 + const method = 'post';
  11231 + const url = '/procureReturnBill/modify';
11245 11232 function request(
11246   - option: PostProcureReturnBillModifyOption
  11233 + option: PostProcureReturnBillModifyOption,
11247 11234 ): Promise<PostProcureReturnBillModifyResponseSuccess> {
11248 11235 return requester(request.url, {
11249 11236 method: request.method,
... ... @@ -11311,10 +11298,10 @@ export type PostProcureReturnBillPageResponseSuccess =
11311 11298 * @consumes application/json
11312 11299 */
11313 11300 export const postProcureReturnBillPage = /* #__PURE__ */ (() => {
11314   - const method = "post";
11315   - const url = "/procureReturnBill/page";
  11301 + const method = 'post';
  11302 + const url = '/procureReturnBill/page';
11316 11303 function request(
11317   - option: PostProcureReturnBillPageOption
  11304 + option: PostProcureReturnBillPageOption,
11318 11305 ): Promise<PostProcureReturnBillPageResponseSuccess> {
11319 11306 return requester(request.url, {
11320 11307 method: request.method,
... ... @@ -11384,10 +11371,10 @@ export type PostProcureReturnBillRemoveResponseSuccess =
11384 11371 * @consumes application/json
11385 11372 */
11386 11373 export const postProcureReturnBillRemove = /* #__PURE__ */ (() => {
11387   - const method = "post";
11388   - const url = "/procureReturnBill/remove";
  11374 + const method = 'post';
  11375 + const url = '/procureReturnBill/remove';
11389 11376 function request(
11390   - option: PostProcureReturnBillRemoveOption
  11377 + option: PostProcureReturnBillRemoveOption,
11391 11378 ): Promise<PostProcureReturnBillRemoveResponseSuccess> {
11392 11379 return requester(request.url, {
11393 11380 method: request.method,
... ... @@ -11455,10 +11442,10 @@ export type PostProcureReturnBillSendResponseSuccess =
11455 11442 * @consumes application/json
11456 11443 */
11457 11444 export const postProcureReturnBillSend = /* #__PURE__ */ (() => {
11458   - const method = "post";
11459   - const url = "/procureReturnBill/send";
  11445 + const method = 'post';
  11446 + const url = '/procureReturnBill/send';
11460 11447 function request(
11461   - option: PostProcureReturnBillSendOption
  11448 + option: PostProcureReturnBillSendOption,
11462 11449 ): Promise<PostProcureReturnBillSendResponseSuccess> {
11463 11450 return requester(request.url, {
11464 11451 method: request.method,
... ... @@ -11526,10 +11513,10 @@ export type PostResearchGroupMemberRequestsAddResponseSuccess =
11526 11513 * @consumes application/json
11527 11514 */
11528 11515 export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => {
11529   - const method = "post";
11530   - const url = "/research/group/member/requests/add";
  11516 + const method = 'post';
  11517 + const url = '/research/group/member/requests/add';
11531 11518 function request(
11532   - option: PostResearchGroupMemberRequestsAddOption
  11519 + option: PostResearchGroupMemberRequestsAddOption,
11533 11520 ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> {
11534 11521 return requester(request.url, {
11535 11522 method: request.method,
... ... @@ -11597,10 +11584,10 @@ export type PostResearchGroupMemberRequestsDeleteResponseSuccess =
11597 11584 * @consumes application/json
11598 11585 */
11599 11586 export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => {
11600   - const method = "post";
11601   - const url = "/research/group/member/requests/delete";
  11587 + const method = 'post';
  11588 + const url = '/research/group/member/requests/delete';
11602 11589 function request(
11603   - option: PostResearchGroupMemberRequestsDeleteOption
  11590 + option: PostResearchGroupMemberRequestsDeleteOption,
11604 11591 ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> {
11605 11592 return requester(request.url, {
11606 11593 method: request.method,
... ... @@ -11668,10 +11655,10 @@ export type PostResearchGroupMemberRequestsDetailResponseSuccess =
11668 11655 * @consumes application/json
11669 11656 */
11670 11657 export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => {
11671   - const method = "post";
11672   - const url = "/research/group/member/requests/detail";
  11658 + const method = 'post';
  11659 + const url = '/research/group/member/requests/detail';
11673 11660 function request(
11674   - option: PostResearchGroupMemberRequestsDetailOption
  11661 + option: PostResearchGroupMemberRequestsDetailOption,
11675 11662 ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> {
11676 11663 return requester(request.url, {
11677 11664 method: request.method,
... ... @@ -11739,10 +11726,10 @@ export type PostResearchGroupMemberRequestsEditResponseSuccess =
11739 11726 * @consumes application/json
11740 11727 */
11741 11728 export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => {
11742   - const method = "post";
11743   - const url = "/research/group/member/requests/edit";
  11729 + const method = 'post';
  11730 + const url = '/research/group/member/requests/edit';
11744 11731 function request(
11745   - option: PostResearchGroupMemberRequestsEditOption
  11732 + option: PostResearchGroupMemberRequestsEditOption,
11746 11733 ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> {
11747 11734 return requester(request.url, {
11748 11735 method: request.method,
... ... @@ -11810,10 +11797,10 @@ export type PostResearchGroupMemberRequestsListResponseSuccess =
11810 11797 * @consumes application/json
11811 11798 */
11812 11799 export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => {
11813   - const method = "post";
11814   - const url = "/research/group/member/requests/list";
  11800 + const method = 'post';
  11801 + const url = '/research/group/member/requests/list';
11815 11802 function request(
11816   - option: PostResearchGroupMemberRequestsListOption
  11803 + option: PostResearchGroupMemberRequestsListOption,
11817 11804 ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> {
11818 11805 return requester(request.url, {
11819 11806 method: request.method,
... ... @@ -11881,10 +11868,10 @@ export type PostResearchGroupsAddResponseSuccess =
11881 11868 * @consumes application/json
11882 11869 */
11883 11870 export const postResearchGroupsAdd = /* #__PURE__ */ (() => {
11884   - const method = "post";
11885   - const url = "/research/groups/add";
  11871 + const method = 'post';
  11872 + const url = '/research/groups/add';
11886 11873 function request(
11887   - option: PostResearchGroupsAddOption
  11874 + option: PostResearchGroupsAddOption,
11888 11875 ): Promise<PostResearchGroupsAddResponseSuccess> {
11889 11876 return requester(request.url, {
11890 11877 method: request.method,
... ... @@ -11952,10 +11939,10 @@ export type PostResearchGroupsDeleteResponseSuccess =
11952 11939 * @consumes application/json
11953 11940 */
11954 11941 export const postResearchGroupsDelete = /* #__PURE__ */ (() => {
11955   - const method = "post";
11956   - const url = "/research/groups/delete";
  11942 + const method = 'post';
  11943 + const url = '/research/groups/delete';
11957 11944 function request(
11958   - option: PostResearchGroupsDeleteOption
  11945 + option: PostResearchGroupsDeleteOption,
11959 11946 ): Promise<PostResearchGroupsDeleteResponseSuccess> {
11960 11947 return requester(request.url, {
11961 11948 method: request.method,
... ... @@ -12023,10 +12010,10 @@ export type PostResearchGroupsDetailResponseSuccess =
12023 12010 * @consumes application/json
12024 12011 */
12025 12012 export const postResearchGroupsDetail = /* #__PURE__ */ (() => {
12026   - const method = "post";
12027   - const url = "/research/groups/detail";
  12013 + const method = 'post';
  12014 + const url = '/research/groups/detail';
12028 12015 function request(
12029   - option: PostResearchGroupsDetailOption
  12016 + option: PostResearchGroupsDetailOption,
12030 12017 ): Promise<PostResearchGroupsDetailResponseSuccess> {
12031 12018 return requester(request.url, {
12032 12019 method: request.method,
... ... @@ -12080,8 +12067,8 @@ export type PostResearchGroupsDownloadImportTemplateResponseSuccess =
12080 12067 * @consumes application/json
12081 12068 */
12082 12069 export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => {
12083   - const method = "post";
12084   - const url = "/research/groups/download/importTemplate";
  12070 + const method = 'post';
  12071 + const url = '/research/groups/download/importTemplate';
12085 12072 function request(): Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess> {
12086 12073 return requester(request.url, {
12087 12074 method: request.method,
... ... @@ -12148,10 +12135,10 @@ export type PostResearchGroupsEditResponseSuccess =
12148 12135 * @consumes application/json
12149 12136 */
12150 12137 export const postResearchGroupsEdit = /* #__PURE__ */ (() => {
12151   - const method = "post";
12152   - const url = "/research/groups/edit";
  12138 + const method = 'post';
  12139 + const url = '/research/groups/edit';
12153 12140 function request(
12154   - option: PostResearchGroupsEditOption
  12141 + option: PostResearchGroupsEditOption,
12155 12142 ): Promise<PostResearchGroupsEditResponseSuccess> {
12156 12143 return requester(request.url, {
12157 12144 method: request.method,
... ... @@ -12219,10 +12206,10 @@ export type PostResearchGroupsImportResponseSuccess =
12219 12206 * @consumes multipart/form-data
12220 12207 */
12221 12208 export const postResearchGroupsImport = /* #__PURE__ */ (() => {
12222   - const method = "post";
12223   - const url = "/research/groups/import";
  12209 + const method = 'post';
  12210 + const url = '/research/groups/import';
12224 12211 function request(
12225   - option: PostResearchGroupsImportOption
  12212 + option: PostResearchGroupsImportOption,
12226 12213 ): Promise<PostResearchGroupsImportResponseSuccess> {
12227 12214 return requester(request.url, {
12228 12215 method: request.method,
... ... @@ -12290,10 +12277,10 @@ export type PostResearchGroupsListResponseSuccess =
12290 12277 * @consumes application/json
12291 12278 */
12292 12279 export const postResearchGroupsList = /* #__PURE__ */ (() => {
12293   - const method = "post";
12294   - const url = "/research/groups/list";
  12280 + const method = 'post';
  12281 + const url = '/research/groups/list';
12295 12282 function request(
12296   - option: PostResearchGroupsListOption
  12283 + option: PostResearchGroupsListOption,
12297 12284 ): Promise<PostResearchGroupsListResponseSuccess> {
12298 12285 return requester(request.url, {
12299 12286 method: request.method,
... ... @@ -12361,10 +12348,10 @@ export type PostResearchGroupsNameSetResponseSuccess =
12361 12348 * @consumes application/json
12362 12349 */
12363 12350 export const postResearchGroupsNameSet = /* #__PURE__ */ (() => {
12364   - const method = "post";
12365   - const url = "/research/groups/nameSet";
  12351 + const method = 'post';
  12352 + const url = '/research/groups/nameSet';
12366 12353 function request(
12367   - option: PostResearchGroupsNameSetOption
  12354 + option: PostResearchGroupsNameSetOption,
12368 12355 ): Promise<PostResearchGroupsNameSetResponseSuccess> {
12369 12356 return requester(request.url, {
12370 12357 method: request.method,
... ... @@ -12433,10 +12420,10 @@ export type PostServiceBankStatementDeleteBankStatementResponseSuccess =
12433 12420 */
12434 12421 export const postServiceBankStatementDeleteBankStatement =
12435 12422 /* #__PURE__ */ (() => {
12436   - const method = "post";
12437   - const url = "/service/bankStatement/deleteBankStatement";
  12423 + const method = 'post';
  12424 + const url = '/service/bankStatement/deleteBankStatement';
12438 12425 function request(
12439   - option: PostServiceBankStatementDeleteBankStatementOption
  12426 + option: PostServiceBankStatementDeleteBankStatementOption,
12440 12427 ): Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess> {
12441 12428 return requester(request.url, {
12442 12429 method: request.method,
... ... @@ -12505,10 +12492,10 @@ export type PostServiceBankStatementEditBankStatementResponseSuccess =
12505 12492 */
12506 12493 export const postServiceBankStatementEditBankStatement =
12507 12494 /* #__PURE__ */ (() => {
12508   - const method = "post";
12509   - const url = "/service/bankStatement/editBankStatement";
  12495 + const method = 'post';
  12496 + const url = '/service/bankStatement/editBankStatement';
12510 12497 function request(
12511   - option: PostServiceBankStatementEditBankStatementOption
  12498 + option: PostServiceBankStatementEditBankStatementOption,
12512 12499 ): Promise<PostServiceBankStatementEditBankStatementResponseSuccess> {
12513 12500 return requester(request.url, {
12514 12501 method: request.method,
... ... @@ -12562,8 +12549,8 @@ export type PostServiceBankStatementExportTemplateResponseSuccess =
12562 12549 * @consumes application/json
12563 12550 */
12564 12551 export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() => {
12565   - const method = "post";
12566   - const url = "/service/bankStatement/exportTemplate";
  12552 + const method = 'post';
  12553 + const url = '/service/bankStatement/exportTemplate';
12567 12554 function request(): Promise<PostServiceBankStatementExportTemplateResponseSuccess> {
12568 12555 return requester(request.url, {
12569 12556 method: request.method,
... ... @@ -12631,10 +12618,10 @@ export type PostServiceBankStatementImportBankStatementFormResponseSuccess =
12631 12618 */
12632 12619 export const postServiceBankStatementImportBankStatementForm =
12633 12620 /* #__PURE__ */ (() => {
12634   - const method = "post";
12635   - const url = "/service/bankStatement/importBankStatementForm";
  12621 + const method = 'post';
  12622 + const url = '/service/bankStatement/importBankStatementForm';
12636 12623 function request(
12637   - option: PostServiceBankStatementImportBankStatementFormOption
  12624 + option: PostServiceBankStatementImportBankStatementFormOption,
12638 12625 ): Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess> {
12639 12626 return requester(request.url, {
12640 12627 method: request.method,
... ... @@ -12703,10 +12690,10 @@ export type PostServiceBankStatementQueryBankStatementResponseSuccess =
12703 12690 */
12704 12691 export const postServiceBankStatementQueryBankStatement =
12705 12692 /* #__PURE__ */ (() => {
12706   - const method = "post";
12707   - const url = "/service/bankStatement/queryBankStatement";
  12693 + const method = 'post';
  12694 + const url = '/service/bankStatement/queryBankStatement';
12708 12695 function request(
12709   - option: PostServiceBankStatementQueryBankStatementOption
  12696 + option: PostServiceBankStatementQueryBankStatementOption,
12710 12697 ): Promise<PostServiceBankStatementQueryBankStatementResponseSuccess> {
12711 12698 return requester(request.url, {
12712 12699 method: request.method,
... ... @@ -12761,8 +12748,8 @@ export type PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess =
12761 12748 */
12762 12749 export const postServiceConstAfterInvoicingInvoiceRecordStatus =
12763 12750 /* #__PURE__ */ (() => {
12764   - const method = "post";
12765   - const url = "/service/const/afterInvoicingInvoiceRecordStatus";
  12751 + const method = 'post';
  12752 + const url = '/service/const/afterInvoicingInvoiceRecordStatus';
12766 12753 function request(): Promise<PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess> {
12767 12754 return requester(request.url, {
12768 12755 method: request.method,
... ... @@ -12815,8 +12802,8 @@ export type PostServiceConstAfterInvoicingStatusResponseSuccess =
12815 12802 * @consumes application/json
12816 12803 */
12817 12804 export const postServiceConstAfterInvoicingStatus = /* #__PURE__ */ (() => {
12818   - const method = "post";
12819   - const url = "/service/const/afterInvoicingStatus";
  12805 + const method = 'post';
  12806 + const url = '/service/const/afterInvoicingStatus';
12820 12807 function request(): Promise<PostServiceConstAfterInvoicingStatusResponseSuccess> {
12821 12808 return requester(request.url, {
12822 12809 method: request.method,
... ... @@ -12870,8 +12857,8 @@ export type PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess =
12870 12857 */
12871 12858 export const postServiceConstBeforeInvoicingInvoiceRecordStatus =
12872 12859 /* #__PURE__ */ (() => {
12873   - const method = "post";
12874   - const url = "/service/const/beforeInvoicingInvoiceRecordStatus";
  12860 + const method = 'post';
  12861 + const url = '/service/const/beforeInvoicingInvoiceRecordStatus';
12875 12862 function request(): Promise<PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess> {
12876 12863 return requester(request.url, {
12877 12864 method: request.method,
... ... @@ -12925,8 +12912,8 @@ export type PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess =
12925 12912 */
12926 12913 export const postServiceConstCanApplyAfterInvoicingStatus =
12927 12914 /* #__PURE__ */ (() => {
12928   - const method = "post";
12929   - const url = "/service/const/canApplyAfterInvoicingStatus";
  12915 + const method = 'post';
  12916 + const url = '/service/const/canApplyAfterInvoicingStatus';
12930 12917 function request(): Promise<PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess> {
12931 12918 return requester(request.url, {
12932 12919 method: request.method,
... ... @@ -12979,8 +12966,8 @@ export type PostServiceConstClientGroupFiltersResponseSuccess =
12979 12966 * @consumes application/json
12980 12967 */
12981 12968 export const postServiceConstClientGroupFilters = /* #__PURE__ */ (() => {
12982   - const method = "post";
12983   - const url = "/service/const/clientGroupFilters";
  12969 + const method = 'post';
  12970 + const url = '/service/const/clientGroupFilters';
12984 12971 function request(): Promise<PostServiceConstClientGroupFiltersResponseSuccess> {
12985 12972 return requester(request.url, {
12986 12973 method: request.method,
... ... @@ -13033,8 +13020,8 @@ export type PostServiceConstClientLevelsResponseSuccess =
13033 13020 * @consumes application/json
13034 13021 */
13035 13022 export const postServiceConstClientLevels = /* #__PURE__ */ (() => {
13036   - const method = "post";
13037   - const url = "/service/const/clientLevels";
  13023 + const method = 'post';
  13024 + const url = '/service/const/clientLevels';
13038 13025 function request(): Promise<PostServiceConstClientLevelsResponseSuccess> {
13039 13026 return requester(request.url, {
13040 13027 method: request.method,
... ... @@ -13087,8 +13074,8 @@ export type PostServiceConstGetPayeeEnumResponseSuccess =
13087 13074 * @consumes application/json
13088 13075 */
13089 13076 export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() => {
13090   - const method = "post";
13091   - const url = "/service/const/getPayeeEnum";
  13077 + const method = 'post';
  13078 + const url = '/service/const/getPayeeEnum';
13092 13079 function request(): Promise<PostServiceConstGetPayeeEnumResponseSuccess> {
13093 13080 return requester(request.url, {
13094 13081 method: request.method,
... ... @@ -13155,10 +13142,10 @@ export type PostServiceConstInitInvoiceDetailNamesResponseSuccess =
13155 13142 * @consumes application/json
13156 13143 */
13157 13144 export const postServiceConstInitInvoiceDetailNames = /* #__PURE__ */ (() => {
13158   - const method = "post";
13159   - const url = "/service/const/initInvoiceDetailNames";
  13145 + const method = 'post';
  13146 + const url = '/service/const/initInvoiceDetailNames';
13160 13147 function request(
13161   - option: PostServiceConstInitInvoiceDetailNamesOption
  13148 + option: PostServiceConstInitInvoiceDetailNamesOption,
13162 13149 ): Promise<PostServiceConstInitInvoiceDetailNamesResponseSuccess> {
13163 13150 return requester(request.url, {
13164 13151 method: request.method,
... ... @@ -13212,8 +13199,8 @@ export type PostServiceConstInvoiceTypeResponseSuccess =
13212 13199 * @consumes application/json
13213 13200 */
13214 13201 export const postServiceConstInvoiceType = /* #__PURE__ */ (() => {
13215   - const method = "post";
13216   - const url = "/service/const/invoiceType";
  13202 + const method = 'post';
  13203 + const url = '/service/const/invoiceType';
13217 13204 function request(): Promise<PostServiceConstInvoiceTypeResponseSuccess> {
13218 13205 return requester(request.url, {
13219 13206 method: request.method,
... ... @@ -13266,8 +13253,8 @@ export type PostServiceConstInvoicingTypeResponseSuccess =
13266 13253 * @consumes application/json
13267 13254 */
13268 13255 export const postServiceConstInvoicingType = /* #__PURE__ */ (() => {
13269   - const method = "post";
13270   - const url = "/service/const/invoicingType";
  13256 + const method = 'post';
  13257 + const url = '/service/const/invoicingType';
13271 13258 function request(): Promise<PostServiceConstInvoicingTypeResponseSuccess> {
13272 13259 return requester(request.url, {
13273 13260 method: request.method,
... ... @@ -13334,10 +13321,10 @@ export type PostServiceConstListInvoiceDetailNamesResponseSuccess =
13334 13321 * @consumes application/json
13335 13322 */
13336 13323 export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() => {
13337   - const method = "post";
13338   - const url = "/service/const/listInvoiceDetailNames";
  13324 + const method = 'post';
  13325 + const url = '/service/const/listInvoiceDetailNames';
13339 13326 function request(
13340   - option: PostServiceConstListInvoiceDetailNamesOption
  13327 + option: PostServiceConstListInvoiceDetailNamesOption,
13341 13328 ): Promise<PostServiceConstListInvoiceDetailNamesResponseSuccess> {
13342 13329 return requester(request.url, {
13343 13330 method: request.method,
... ... @@ -13391,8 +13378,8 @@ export type PostServiceConstListResearchGroupsStatusResponseSuccess =
13391 13378 * @consumes application/json
13392 13379 */
13393 13380 export const postServiceConstListResearchGroupsStatus = /* #__PURE__ */ (() => {
13394   - const method = "post";
13395   - const url = "/service/const/listResearchGroupsStatus";
  13381 + const method = 'post';
  13382 + const url = '/service/const/listResearchGroupsStatus';
13396 13383 function request(): Promise<PostServiceConstListResearchGroupsStatusResponseSuccess> {
13397 13384 return requester(request.url, {
13398 13385 method: request.method,
... ... @@ -13446,8 +13433,8 @@ export type PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess =
13446 13433 */
13447 13434 export const postServiceConstNotCanModifyInvoiceRecordStatus =
13448 13435 /* #__PURE__ */ (() => {
13449   - const method = "post";
13450   - const url = "/service/const/notCanModifyInvoiceRecordStatus";
  13436 + const method = 'post';
  13437 + const url = '/service/const/notCanModifyInvoiceRecordStatus';
13451 13438 function request(): Promise<PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess> {
13452 13439 return requester(request.url, {
13453 13440 method: request.method,
... ... @@ -13500,8 +13487,8 @@ export type PostServiceConstPayeesResponseSuccess =
13500 13487 * @consumes application/json
13501 13488 */
13502 13489 export const postServiceConstPayees = /* #__PURE__ */ (() => {
13503   - const method = "post";
13504   - const url = "/service/const/payees";
  13490 + const method = 'post';
  13491 + const url = '/service/const/payees';
13505 13492 function request(): Promise<PostServiceConstPayeesResponseSuccess> {
13506 13493 return requester(request.url, {
13507 13494 method: request.method,
... ... @@ -13554,8 +13541,8 @@ export type PostServiceConstProcureReturnBillsResponseSuccess =
13554 13541 * @consumes application/json
13555 13542 */
13556 13543 export const postServiceConstProcureReturnBills = /* #__PURE__ */ (() => {
13557   - const method = "post";
13558   - const url = "/service/const/procureReturnBills";
  13544 + const method = 'post';
  13545 + const url = '/service/const/procureReturnBills';
13559 13546 function request(): Promise<PostServiceConstProcureReturnBillsResponseSuccess> {
13560 13547 return requester(request.url, {
13561 13548 method: request.method,
... ... @@ -13608,8 +13595,8 @@ export type PostServiceConstStoresResponseSuccess =
13608 13595 * @consumes application/json
13609 13596 */
13610 13597 export const postServiceConstStores = /* #__PURE__ */ (() => {
13611   - const method = "post";
13612   - const url = "/service/const/stores";
  13598 + const method = 'post';
  13599 + const url = '/service/const/stores';
13613 13600 function request(): Promise<PostServiceConstStoresResponseSuccess> {
13614 13601 return requester(request.url, {
13615 13602 method: request.method,
... ... @@ -13662,8 +13649,8 @@ export type PostServiceConstTradeStatusResponseSuccess =
13662 13649 * @consumes application/json
13663 13650 */
13664 13651 export const postServiceConstTradeStatus = /* #__PURE__ */ (() => {
13665   - const method = "post";
13666   - const url = "/service/const/tradeStatus";
  13652 + const method = 'post';
  13653 + const url = '/service/const/tradeStatus';
13667 13654 function request(): Promise<PostServiceConstTradeStatusResponseSuccess> {
13668 13655 return requester(request.url, {
13669 13656 method: request.method,
... ... @@ -13733,10 +13720,10 @@ export type GetServiceInvoiceListInvoiceProjectResponseSuccess =
13733 13720 * @produces *
13734 13721 */
13735 13722 export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() => {
13736   - const method = "get";
13737   - const url = "/service/invoice/ListInvoiceProject";
  13723 + const method = 'get';
  13724 + const url = '/service/invoice/ListInvoiceProject';
13738 13725 function request(
13739   - option?: GetServiceInvoiceListInvoiceProjectOption
  13726 + option?: GetServiceInvoiceListInvoiceProjectOption,
13740 13727 ): Promise<GetServiceInvoiceListInvoiceProjectResponseSuccess> {
13741 13728 return requester(request.url, {
13742 13729 method: request.method,
... ... @@ -13804,10 +13791,10 @@ export type PostServiceInvoiceAddInvoiceResponseSuccess =
13804 13791 * @consumes application/json
13805 13792 */
13806 13793 export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => {
13807   - const method = "post";
13808   - const url = "/service/invoice/addInvoice";
  13794 + const method = 'post';
  13795 + const url = '/service/invoice/addInvoice';
13809 13796 function request(
13810   - option: PostServiceInvoiceAddInvoiceOption
  13797 + option: PostServiceInvoiceAddInvoiceOption,
13811 13798 ): Promise<PostServiceInvoiceAddInvoiceResponseSuccess> {
13812 13799 return requester(request.url, {
13813 13800 method: request.method,
... ... @@ -13875,10 +13862,10 @@ export type PostServiceInvoiceAddInvoicingAccountResponseSuccess =
13875 13862 * @consumes application/json
13876 13863 */
13877 13864 export const postServiceInvoiceAddInvoicingAccount = /* #__PURE__ */ (() => {
13878   - const method = "post";
13879   - const url = "/service/invoice/addInvoicingAccount";
  13865 + const method = 'post';
  13866 + const url = '/service/invoice/addInvoicingAccount';
13880 13867 function request(
13881   - option: PostServiceInvoiceAddInvoicingAccountOption
  13868 + option: PostServiceInvoiceAddInvoicingAccountOption,
13882 13869 ): Promise<PostServiceInvoiceAddInvoicingAccountResponseSuccess> {
13883 13870 return requester(request.url, {
13884 13871 method: request.method,
... ... @@ -13946,10 +13933,10 @@ export type PostServiceInvoiceApplyInvoiceResponseSuccess =
13946 13933 * @consumes application/json
13947 13934 */
13948 13935 export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() => {
13949   - const method = "post";
13950   - const url = "/service/invoice/applyInvoice";
  13936 + const method = 'post';
  13937 + const url = '/service/invoice/applyInvoice';
13951 13938 function request(
13952   - option: PostServiceInvoiceApplyInvoiceOption
  13939 + option: PostServiceInvoiceApplyInvoiceOption,
13953 13940 ): Promise<PostServiceInvoiceApplyInvoiceResponseSuccess> {
13954 13941 return requester(request.url, {
13955 13942 method: request.method,
... ... @@ -14017,10 +14004,10 @@ export type PostServiceInvoiceCancelApplyResponseSuccess =
14017 14004 * @consumes application/json
14018 14005 */
14019 14006 export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() => {
14020   - const method = "post";
14021   - const url = "/service/invoice/cancelApply";
  14007 + const method = 'post';
  14008 + const url = '/service/invoice/cancelApply';
14022 14009 function request(
14023   - option: PostServiceInvoiceCancelApplyOption
  14010 + option: PostServiceInvoiceCancelApplyOption,
14024 14011 ): Promise<PostServiceInvoiceCancelApplyResponseSuccess> {
14025 14012 return requester(request.url, {
14026 14013 method: request.method,
... ... @@ -14089,10 +14076,10 @@ export type PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess =
14089 14076 */
14090 14077 export const postServiceInvoiceCancelInvoiceAndBankStatement =
14091 14078 /* #__PURE__ */ (() => {
14092   - const method = "post";
14093   - const url = "/service/invoice/cancelInvoiceAndBankStatement";
  14079 + const method = 'post';
  14080 + const url = '/service/invoice/cancelInvoiceAndBankStatement';
14094 14081 function request(
14095   - option: PostServiceInvoiceCancelInvoiceAndBankStatementOption
  14082 + option: PostServiceInvoiceCancelInvoiceAndBankStatementOption,
14096 14083 ): Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess> {
14097 14084 return requester(request.url, {
14098 14085 method: request.method,
... ... @@ -14160,10 +14147,10 @@ export type PostServiceInvoiceDealInvoicingResultResponseSuccess =
14160 14147 * @consumes application/json
14161 14148 */
14162 14149 export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() => {
14163   - const method = "post";
14164   - const url = "/service/invoice/dealInvoicingResult";
  14150 + const method = 'post';
  14151 + const url = '/service/invoice/dealInvoicingResult';
14165 14152 function request(
14166   - option: PostServiceInvoiceDealInvoicingResultOption
  14153 + option: PostServiceInvoiceDealInvoicingResultOption,
14167 14154 ): Promise<PostServiceInvoiceDealInvoicingResultResponseSuccess> {
14168 14155 return requester(request.url, {
14169 14156 method: request.method,
... ... @@ -14231,10 +14218,10 @@ export type PostServiceInvoiceDeleteInvoiceResponseSuccess =
14231 14218 * @consumes application/json
14232 14219 */
14233 14220 export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => {
14234   - const method = "post";
14235   - const url = "/service/invoice/deleteInvoice";
  14221 + const method = 'post';
  14222 + const url = '/service/invoice/deleteInvoice';
14236 14223 function request(
14237   - option: PostServiceInvoiceDeleteInvoiceOption
  14224 + option: PostServiceInvoiceDeleteInvoiceOption,
14238 14225 ): Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess> {
14239 14226 return requester(request.url, {
14240 14227 method: request.method,
... ... @@ -14304,10 +14291,10 @@ export type PostServiceInvoiceDownloadInvoiceResponseSuccess =
14304 14291 * @consumes application/json
14305 14292 */
14306 14293 export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() => {
14307   - const method = "post";
14308   - const url = "/service/invoice/downloadInvoice";
  14294 + const method = 'post';
  14295 + const url = '/service/invoice/downloadInvoice';
14309 14296 function request(
14310   - option?: PostServiceInvoiceDownloadInvoiceOption
  14297 + option?: PostServiceInvoiceDownloadInvoiceOption,
14311 14298 ): Promise<PostServiceInvoiceDownloadInvoiceResponseSuccess> {
14312 14299 return requester(request.url, {
14313 14300 method: request.method,
... ... @@ -14356,8 +14343,8 @@ export type GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess =
14356 14343 */
14357 14344 export const getServiceInvoiceExportInvoiceDetailsTemplate =
14358 14345 /* #__PURE__ */ (() => {
14359   - const method = "get";
14360   - const url = "/service/invoice/exportInvoiceDetailsTemplate";
  14346 + const method = 'get';
  14347 + const url = '/service/invoice/exportInvoiceDetailsTemplate';
14361 14348 function request(): Promise<GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess> {
14362 14349 return requester(request.url, {
14363 14350 method: request.method,
... ... @@ -14424,10 +14411,10 @@ export type PostServiceInvoiceExportInvoiceRecordsResponseSuccess =
14424 14411 * @consumes application/json
14425 14412 */
14426 14413 export const postServiceInvoiceExportInvoiceRecords = /* #__PURE__ */ (() => {
14427   - const method = "post";
14428   - const url = "/service/invoice/exportInvoiceRecords";
  14414 + const method = 'post';
  14415 + const url = '/service/invoice/exportInvoiceRecords';
14429 14416 function request(
14430   - option: PostServiceInvoiceExportInvoiceRecordsOption
  14417 + option: PostServiceInvoiceExportInvoiceRecordsOption,
14431 14418 ): Promise<PostServiceInvoiceExportInvoiceRecordsResponseSuccess> {
14432 14419 return requester(request.url, {
14433 14420 method: request.method,
... ... @@ -14442,6 +14429,77 @@ export const postServiceInvoiceExportInvoiceRecords = /* #__PURE__ */ (() =&gt; {
14442 14429 return request;
14443 14430 })();
14444 14431  
  14432 +/** @description request parameter type for postServiceInvoiceExportInvoices */
  14433 +export interface PostServiceInvoiceExportInvoicesOption {
  14434 + /**
  14435 + * @description
  14436 + * dto
  14437 + */
  14438 + body: {
  14439 + /**
  14440 + @description
  14441 + dto */
  14442 + dto: Dto;
  14443 + };
  14444 +}
  14445 +
  14446 +/** @description response type for postServiceInvoiceExportInvoices */
  14447 +export interface PostServiceInvoiceExportInvoicesResponse {
  14448 + /**
  14449 + * @description
  14450 + * OK
  14451 + */
  14452 + 200: any;
  14453 + /**
  14454 + * @description
  14455 + * Created
  14456 + */
  14457 + 201: any;
  14458 + /**
  14459 + * @description
  14460 + * Unauthorized
  14461 + */
  14462 + 401: any;
  14463 + /**
  14464 + * @description
  14465 + * Forbidden
  14466 + */
  14467 + 403: any;
  14468 + /**
  14469 + * @description
  14470 + * Not Found
  14471 + */
  14472 + 404: any;
  14473 +}
  14474 +
  14475 +export type PostServiceInvoiceExportInvoicesResponseSuccess =
  14476 + PostServiceInvoiceExportInvoicesResponse[200];
  14477 +/**
  14478 + * @description
  14479 + * 导出发票
  14480 + * @tags 发票
  14481 + * @produces *
  14482 + * @consumes application/json
  14483 + */
  14484 +export const postServiceInvoiceExportInvoices = /* #__PURE__ */ (() => {
  14485 + const method = 'post';
  14486 + const url = '/service/invoice/exportInvoices';
  14487 + function request(
  14488 + option: PostServiceInvoiceExportInvoicesOption,
  14489 + ): Promise<PostServiceInvoiceExportInvoicesResponseSuccess> {
  14490 + return requester(request.url, {
  14491 + method: request.method,
  14492 + ...option,
  14493 + }) as unknown as Promise<PostServiceInvoiceExportInvoicesResponseSuccess>;
  14494 + }
  14495 +
  14496 + /** http method */
  14497 + request.method = method;
  14498 + /** request url */
  14499 + request.url = url;
  14500 + return request;
  14501 +})();
  14502 +
14445 14503 /** @description request parameter type for postServiceInvoiceFindInvoice */
14446 14504 export interface PostServiceInvoiceFindInvoiceOption {
14447 14505 /**
... ... @@ -14495,10 +14553,10 @@ export type PostServiceInvoiceFindInvoiceResponseSuccess =
14495 14553 * @consumes application/json
14496 14554 */
14497 14555 export const postServiceInvoiceFindInvoice = /* #__PURE__ */ (() => {
14498   - const method = "post";
14499   - const url = "/service/invoice/findInvoice";
  14556 + const method = 'post';
  14557 + const url = '/service/invoice/findInvoice';
14500 14558 function request(
14501   - option: PostServiceInvoiceFindInvoiceOption
  14559 + option: PostServiceInvoiceFindInvoiceOption,
14502 14560 ): Promise<PostServiceInvoiceFindInvoiceResponseSuccess> {
14503 14561 return requester(request.url, {
14504 14562 method: request.method,
... ... @@ -14566,10 +14624,10 @@ export type PostServiceInvoiceFindInvoiceOldResponseSuccess =
14566 14624 * @consumes application/json
14567 14625 */
14568 14626 export const postServiceInvoiceFindInvoiceOld = /* #__PURE__ */ (() => {
14569   - const method = "post";
14570   - const url = "/service/invoice/findInvoiceOld";
  14627 + const method = 'post';
  14628 + const url = '/service/invoice/findInvoiceOld';
14571 14629 function request(
14572   - option: PostServiceInvoiceFindInvoiceOldOption
  14630 + option: PostServiceInvoiceFindInvoiceOldOption,
14573 14631 ): Promise<PostServiceInvoiceFindInvoiceOldResponseSuccess> {
14574 14632 return requester(request.url, {
14575 14633 method: request.method,
... ... @@ -14639,10 +14697,10 @@ export type PostServiceInvoiceGetInvoiceRecordResponseSuccess =
14639 14697 * @consumes application/json
14640 14698 */
14641 14699 export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() => {
14642   - const method = "post";
14643   - const url = "/service/invoice/getInvoiceRecord";
  14700 + const method = 'post';
  14701 + const url = '/service/invoice/getInvoiceRecord';
14644 14702 function request(
14645   - option?: PostServiceInvoiceGetInvoiceRecordOption
  14703 + option?: PostServiceInvoiceGetInvoiceRecordOption,
14646 14704 ): Promise<PostServiceInvoiceGetInvoiceRecordResponseSuccess> {
14647 14705 return requester(request.url, {
14648 14706 method: request.method,
... ... @@ -14696,8 +14754,8 @@ export type PostServiceInvoiceGetInvoicingAccountResponseSuccess =
14696 14754 * @consumes application/json
14697 14755 */
14698 14756 export const postServiceInvoiceGetInvoicingAccount = /* #__PURE__ */ (() => {
14699   - const method = "post";
14700   - const url = "/service/invoice/getInvoicingAccount";
  14757 + const method = 'post';
  14758 + const url = '/service/invoice/getInvoicingAccount';
14701 14759 function request(): Promise<PostServiceInvoiceGetInvoicingAccountResponseSuccess> {
14702 14760 return requester(request.url, {
14703 14761 method: request.method,
... ... @@ -14764,10 +14822,10 @@ export type PostServiceInvoiceGetWriteOffRecordResponseSuccess =
14764 14822 * @consumes application/json
14765 14823 */
14766 14824 export const postServiceInvoiceGetWriteOffRecord = /* #__PURE__ */ (() => {
14767   - const method = "post";
14768   - const url = "/service/invoice/getWriteOffRecord";
  14825 + const method = 'post';
  14826 + const url = '/service/invoice/getWriteOffRecord';
14769 14827 function request(
14770   - option: PostServiceInvoiceGetWriteOffRecordOption
  14828 + option: PostServiceInvoiceGetWriteOffRecordOption,
14771 14829 ): Promise<PostServiceInvoiceGetWriteOffRecordResponseSuccess> {
14772 14830 return requester(request.url, {
14773 14831 method: request.method,
... ... @@ -14851,10 +14909,10 @@ export type PostServiceInvoiceImportInvoiceDetailsResponseSuccess =
14851 14909 * @consumes multipart/form-data
14852 14910 */
14853 14911 export const postServiceInvoiceImportInvoiceDetails = /* #__PURE__ */ (() => {
14854   - const method = "post";
14855   - const url = "/service/invoice/importInvoiceDetails";
  14912 + const method = 'post';
  14913 + const url = '/service/invoice/importInvoiceDetails';
14856 14914 function request(
14857   - option: PostServiceInvoiceImportInvoiceDetailsOption
  14915 + option: PostServiceInvoiceImportInvoiceDetailsOption,
14858 14916 ): Promise<PostServiceInvoiceImportInvoiceDetailsResponseSuccess> {
14859 14917 return requester(request.url, {
14860 14918 method: request.method,
... ... @@ -14916,10 +14974,10 @@ export type GetServiceInvoiceInvoiceProjectPageResponseSuccess =
14916 14974 * @produces *
14917 14975 */
14918 14976 export const getServiceInvoiceInvoiceProjectPage = /* #__PURE__ */ (() => {
14919   - const method = "get";
14920   - const url = "/service/invoice/invoiceProjectPage";
  14977 + const method = 'get';
  14978 + const url = '/service/invoice/invoiceProjectPage';
14921 14979 function request(
14922   - option: GetServiceInvoiceInvoiceProjectPageOption
  14980 + option: GetServiceInvoiceInvoiceProjectPageOption,
14923 14981 ): Promise<GetServiceInvoiceInvoiceProjectPageResponseSuccess> {
14924 14982 return requester(request.url, {
14925 14983 method: request.method,
... ... @@ -14987,10 +15045,10 @@ export type PostServiceInvoiceInvoiceWriteOffResponseSuccess =
14987 15045 * @consumes application/json
14988 15046 */
14989 15047 export const postServiceInvoiceInvoiceWriteOff = /* #__PURE__ */ (() => {
14990   - const method = "post";
14991   - const url = "/service/invoice/invoiceWriteOff";
  15048 + const method = 'post';
  15049 + const url = '/service/invoice/invoiceWriteOff';
14992 15050 function request(
14993   - option: PostServiceInvoiceInvoiceWriteOffOption
  15051 + option: PostServiceInvoiceInvoiceWriteOffOption,
14994 15052 ): Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess> {
14995 15053 return requester(request.url, {
14996 15054 method: request.method,
... ... @@ -15058,10 +15116,10 @@ export type PostServiceInvoiceInvoicingResponseSuccess =
15058 15116 * @consumes application/json
15059 15117 */
15060 15118 export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() => {
15061   - const method = "post";
15062   - const url = "/service/invoice/invoicing";
  15119 + const method = 'post';
  15120 + const url = '/service/invoice/invoicing';
15063 15121 function request(
15064   - option: PostServiceInvoiceInvoicingOption
  15122 + option: PostServiceInvoiceInvoicingOption,
15065 15123 ): Promise<PostServiceInvoiceInvoicingResponseSuccess> {
15066 15124 return requester(request.url, {
15067 15125 method: request.method,
... ... @@ -15129,10 +15187,10 @@ export type PostServiceInvoiceModifyRecordResponseSuccess =
15129 15187 * @consumes application/json
15130 15188 */
15131 15189 export const postServiceInvoiceModifyRecord = /* #__PURE__ */ (() => {
15132   - const method = "post";
15133   - const url = "/service/invoice/modifyRecord";
  15190 + const method = 'post';
  15191 + const url = '/service/invoice/modifyRecord';
15134 15192 function request(
15135   - option: PostServiceInvoiceModifyRecordOption
  15193 + option: PostServiceInvoiceModifyRecordOption,
15136 15194 ): Promise<PostServiceInvoiceModifyRecordResponseSuccess> {
15137 15195 return requester(request.url, {
15138 15196 method: request.method,
... ... @@ -15200,10 +15258,10 @@ export type PostServiceInvoicePutCompanyInfoResponseSuccess =
15200 15258 * @consumes application/json
15201 15259 */
15202 15260 export const postServiceInvoicePutCompanyInfo = /* #__PURE__ */ (() => {
15203   - const method = "post";
15204   - const url = "/service/invoice/putCompanyInfo";
  15261 + const method = 'post';
  15262 + const url = '/service/invoice/putCompanyInfo';
15205 15263 function request(
15206   - option: PostServiceInvoicePutCompanyInfoOption
  15264 + option: PostServiceInvoicePutCompanyInfoOption,
15207 15265 ): Promise<PostServiceInvoicePutCompanyInfoResponseSuccess> {
15208 15266 return requester(request.url, {
15209 15267 method: request.method,
... ... @@ -15271,10 +15329,10 @@ export type PostServiceInvoiceQueryCompanyInfoResponseSuccess =
15271 15329 * @consumes application/json
15272 15330 */
15273 15331 export const postServiceInvoiceQueryCompanyInfo = /* #__PURE__ */ (() => {
15274   - const method = "post";
15275   - const url = "/service/invoice/queryCompanyInfo";
  15332 + const method = 'post';
  15333 + const url = '/service/invoice/queryCompanyInfo';
15276 15334 function request(
15277   - option: PostServiceInvoiceQueryCompanyInfoOption
  15335 + option: PostServiceInvoiceQueryCompanyInfoOption,
15278 15336 ): Promise<PostServiceInvoiceQueryCompanyInfoResponseSuccess> {
15279 15337 return requester(request.url, {
15280 15338 method: request.method,
... ... @@ -15342,10 +15400,10 @@ export type PostServiceInvoiceQueryInvoiceResponseSuccess =
15342 15400 * @consumes application/json
15343 15401 */
15344 15402 export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => {
15345   - const method = "post";
15346   - const url = "/service/invoice/queryInvoice";
  15403 + const method = 'post';
  15404 + const url = '/service/invoice/queryInvoice';
15347 15405 function request(
15348   - option: PostServiceInvoiceQueryInvoiceOption
  15406 + option: PostServiceInvoiceQueryInvoiceOption,
15349 15407 ): Promise<PostServiceInvoiceQueryInvoiceResponseSuccess> {
15350 15408 return requester(request.url, {
15351 15409 method: request.method,
... ... @@ -15413,10 +15471,10 @@ export type PostServiceInvoiceQueryInvoiceDetailResponseSuccess =
15413 15471 * @consumes application/json
15414 15472 */
15415 15473 export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => {
15416   - const method = "post";
15417   - const url = "/service/invoice/queryInvoiceDetail";
  15474 + const method = 'post';
  15475 + const url = '/service/invoice/queryInvoiceDetail';
15418 15476 function request(
15419   - option: PostServiceInvoiceQueryInvoiceDetailOption
  15477 + option: PostServiceInvoiceQueryInvoiceDetailOption,
15420 15478 ): Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess> {
15421 15479 return requester(request.url, {
15422 15480 method: request.method,
... ... @@ -15484,10 +15542,10 @@ export type PostServiceInvoiceQueryInvoiceRecordListResponseSuccess =
15484 15542 * @consumes application/json
15485 15543 */
15486 15544 export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() => {
15487   - const method = "post";
15488   - const url = "/service/invoice/queryInvoiceRecordList";
  15545 + const method = 'post';
  15546 + const url = '/service/invoice/queryInvoiceRecordList';
15489 15547 function request(
15490   - option: PostServiceInvoiceQueryInvoiceRecordListOption
  15548 + option: PostServiceInvoiceQueryInvoiceRecordListOption,
15491 15549 ): Promise<PostServiceInvoiceQueryInvoiceRecordListResponseSuccess> {
15492 15550 return requester(request.url, {
15493 15551 method: request.method,
... ... @@ -15536,8 +15594,8 @@ export type GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess =
15536 15594 */
15537 15595 export const getServiceInvoiceQueryReadyInvoiceRecordList =
15538 15596 /* #__PURE__ */ (() => {
15539   - const method = "get";
15540   - const url = "/service/invoice/queryReadyInvoiceRecordList";
  15597 + const method = 'get';
  15598 + const url = '/service/invoice/queryReadyInvoiceRecordList';
15541 15599 function request(): Promise<GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess> {
15542 15600 return requester(request.url, {
15543 15601 method: request.method,
... ... @@ -15604,10 +15662,10 @@ export type PostServiceInvoiceReissueResponseSuccess =
15604 15662 * @consumes application/json
15605 15663 */
15606 15664 export const postServiceInvoiceReissue = /* #__PURE__ */ (() => {
15607   - const method = "post";
15608   - const url = "/service/invoice/reissue";
  15665 + const method = 'post';
  15666 + const url = '/service/invoice/reissue';
15609 15667 function request(
15610   - option: PostServiceInvoiceReissueOption
  15668 + option: PostServiceInvoiceReissueOption,
15611 15669 ): Promise<PostServiceInvoiceReissueResponseSuccess> {
15612 15670 return requester(request.url, {
15613 15671 method: request.method,
... ... @@ -15675,10 +15733,10 @@ export type PostServiceInvoiceReissueOldResponseSuccess =
15675 15733 * @consumes application/json
15676 15734 */
15677 15735 export const postServiceInvoiceReissueOld = /* #__PURE__ */ (() => {
15678   - const method = "post";
15679   - const url = "/service/invoice/reissueOld";
  15736 + const method = 'post';
  15737 + const url = '/service/invoice/reissueOld';
15680 15738 function request(
15681   - option: PostServiceInvoiceReissueOldOption
  15739 + option: PostServiceInvoiceReissueOldOption,
15682 15740 ): Promise<PostServiceInvoiceReissueOldResponseSuccess> {
15683 15741 return requester(request.url, {
15684 15742 method: request.method,
... ... @@ -15746,10 +15804,10 @@ export type PostServiceInvoiceUrgentInvoicingResponseSuccess =
15746 15804 * @consumes application/json
15747 15805 */
15748 15806 export const postServiceInvoiceUrgentInvoicing = /* #__PURE__ */ (() => {
15749   - const method = "post";
15750   - const url = "/service/invoice/urgentInvoicing";
  15807 + const method = 'post';
  15808 + const url = '/service/invoice/urgentInvoicing';
15751 15809 function request(
15752   - option: PostServiceInvoiceUrgentInvoicingOption
  15810 + option: PostServiceInvoiceUrgentInvoicingOption,
15753 15811 ): Promise<PostServiceInvoiceUrgentInvoicingResponseSuccess> {
15754 15812 return requester(request.url, {
15755 15813 method: request.method,
... ... @@ -15817,10 +15875,10 @@ export type PostServiceInvoiceWaitReissueInvoicesResponseSuccess =
15817 15875 * @consumes application/json
15818 15876 */
15819 15877 export const postServiceInvoiceWaitReissueInvoices = /* #__PURE__ */ (() => {
15820   - const method = "post";
15821   - const url = "/service/invoice/waitReissueInvoices";
  15878 + const method = 'post';
  15879 + const url = '/service/invoice/waitReissueInvoices';
15822 15880 function request(
15823   - option: PostServiceInvoiceWaitReissueInvoicesOption
  15881 + option: PostServiceInvoiceWaitReissueInvoicesOption,
15824 15882 ): Promise<PostServiceInvoiceWaitReissueInvoicesResponseSuccess> {
15825 15883 return requester(request.url, {
15826 15884 method: request.method,
... ... @@ -15888,10 +15946,10 @@ export type PostServiceOrderAddOrderResponseSuccess =
15888 15946 * @consumes application/json
15889 15947 */
15890 15948 export const postServiceOrderAddOrder = /* #__PURE__ */ (() => {
15891   - const method = "post";
15892   - const url = "/service/order/addOrder";
  15949 + const method = 'post';
  15950 + const url = '/service/order/addOrder';
15893 15951 function request(
15894   - option: PostServiceOrderAddOrderOption
  15952 + option: PostServiceOrderAddOrderOption,
15895 15953 ): Promise<PostServiceOrderAddOrderResponseSuccess> {
15896 15954 return requester(request.url, {
15897 15955 method: request.method,
... ... @@ -15953,16 +16011,16 @@ export type PostServiceOrderAddWarningOrderWhiteListResponseSuccess =
15953 16011 PostServiceOrderAddWarningOrderWhiteListResponse[200];
15954 16012 /**
15955 16013 * @description
15956   - * 新增账号预警白名单
  16014 + * 新增订单预警白名单
15957 16015 * @tags 内部订单
15958 16016 * @produces *
15959 16017 * @consumes application/json
15960 16018 */
15961 16019 export const postServiceOrderAddWarningOrderWhiteList = /* #__PURE__ */ (() => {
15962   - const method = "post";
15963   - const url = "/service/order/addWarningOrderWhiteList";
  16020 + const method = 'post';
  16021 + const url = '/service/order/addWarningOrderWhiteList';
15964 16022 function request(
15965   - option: PostServiceOrderAddWarningOrderWhiteListOption
  16023 + option: PostServiceOrderAddWarningOrderWhiteListOption,
15966 16024 ): Promise<PostServiceOrderAddWarningOrderWhiteListResponseSuccess> {
15967 16025 return requester(request.url, {
15968 16026 method: request.method,
... ... @@ -16030,10 +16088,10 @@ export type PostServiceOrderAddWarningUserWhiteListResponseSuccess =
16030 16088 * @consumes application/json
16031 16089 */
16032 16090 export const postServiceOrderAddWarningUserWhiteList = /* #__PURE__ */ (() => {
16033   - const method = "post";
16034   - const url = "/service/order/addWarningUserWhiteList";
  16091 + const method = 'post';
  16092 + const url = '/service/order/addWarningUserWhiteList';
16035 16093 function request(
16036   - option: PostServiceOrderAddWarningUserWhiteListOption
  16094 + option: PostServiceOrderAddWarningUserWhiteListOption,
16037 16095 ): Promise<PostServiceOrderAddWarningUserWhiteListResponseSuccess> {
16038 16096 return requester(request.url, {
16039 16097 method: request.method,
... ... @@ -16101,10 +16159,10 @@ export type PostServiceOrderAfterSalesCheckResponseSuccess =
16101 16159 * @consumes application/json
16102 16160 */
16103 16161 export const postServiceOrderAfterSalesCheck = /* #__PURE__ */ (() => {
16104   - const method = "post";
16105   - const url = "/service/order/afterSalesCheck";
  16162 + const method = 'post';
  16163 + const url = '/service/order/afterSalesCheck';
16106 16164 function request(
16107   - option: PostServiceOrderAfterSalesCheckOption
  16165 + option: PostServiceOrderAfterSalesCheckOption,
16108 16166 ): Promise<PostServiceOrderAfterSalesCheckResponseSuccess> {
16109 16167 return requester(request.url, {
16110 16168 method: request.method,
... ... @@ -16173,10 +16231,10 @@ export type PostServiceOrderAfterSalesQuerySnapshotOrderResponseSuccess =
16173 16231 */
16174 16232 export const postServiceOrderAfterSalesQuerySnapshotOrder =
16175 16233 /* #__PURE__ */ (() => {
16176   - const method = "post";
16177   - const url = "/service/order/afterSalesQuerySnapshotOrder";
  16234 + const method = 'post';
  16235 + const url = '/service/order/afterSalesQuerySnapshotOrder';
16178 16236 function request(
16179   - option: PostServiceOrderAfterSalesQuerySnapshotOrderOption
  16237 + option: PostServiceOrderAfterSalesQuerySnapshotOrderOption,
16180 16238 ): Promise<PostServiceOrderAfterSalesQuerySnapshotOrderResponseSuccess> {
16181 16239 return requester(request.url, {
16182 16240 method: request.method,
... ... @@ -16244,10 +16302,10 @@ export type PostServiceOrderApplyAfterSalesResponseSuccess =
16244 16302 * @consumes application/json
16245 16303 */
16246 16304 export const postServiceOrderApplyAfterSales = /* #__PURE__ */ (() => {
16247   - const method = "post";
16248   - const url = "/service/order/applyAfterSales";
  16305 + const method = 'post';
  16306 + const url = '/service/order/applyAfterSales';
16249 16307 function request(
16250   - option: PostServiceOrderApplyAfterSalesOption
  16308 + option: PostServiceOrderApplyAfterSalesOption,
16251 16309 ): Promise<PostServiceOrderApplyAfterSalesResponseSuccess> {
16252 16310 return requester(request.url, {
16253 16311 method: request.method,
... ... @@ -16315,10 +16373,10 @@ export type PostServiceOrderApplyInvoicingResponseSuccess =
16315 16373 * @consumes application/json
16316 16374 */
16317 16375 export const postServiceOrderApplyInvoicing = /* #__PURE__ */ (() => {
16318   - const method = "post";
16319   - const url = "/service/order/applyInvoicing";
  16376 + const method = 'post';
  16377 + const url = '/service/order/applyInvoicing';
16320 16378 function request(
16321   - option: PostServiceOrderApplyInvoicingOption
  16379 + option: PostServiceOrderApplyInvoicingOption,
16322 16380 ): Promise<PostServiceOrderApplyInvoicingResponseSuccess> {
16323 16381 return requester(request.url, {
16324 16382 method: request.method,
... ... @@ -16386,10 +16444,10 @@ export type PostServiceOrderApplyModifyResponseSuccess =
16386 16444 * @consumes application/json
16387 16445 */
16388 16446 export const postServiceOrderApplyModify = /* #__PURE__ */ (() => {
16389   - const method = "post";
16390   - const url = "/service/order/applyModify";
  16447 + const method = 'post';
  16448 + const url = '/service/order/applyModify';
16391 16449 function request(
16392   - option: PostServiceOrderApplyModifyOption
  16450 + option: PostServiceOrderApplyModifyOption,
16393 16451 ): Promise<PostServiceOrderApplyModifyResponseSuccess> {
16394 16452 return requester(request.url, {
16395 16453 method: request.method,
... ... @@ -16457,10 +16515,10 @@ export type PostServiceOrderAuditResponseSuccess =
16457 16515 * @consumes application/json
16458 16516 */
16459 16517 export const postServiceOrderAudit = /* #__PURE__ */ (() => {
16460   - const method = "post";
16461   - const url = "/service/order/audit";
  16518 + const method = 'post';
  16519 + const url = '/service/order/audit';
16462 16520 function request(
16463   - option: PostServiceOrderAuditOption
  16521 + option: PostServiceOrderAuditOption,
16464 16522 ): Promise<PostServiceOrderAuditResponseSuccess> {
16465 16523 return requester(request.url, {
16466 16524 method: request.method,
... ... @@ -16528,10 +16586,10 @@ export type PostServiceOrderAuditPaymentReceiptResponseSuccess =
16528 16586 * @consumes application/json
16529 16587 */
16530 16588 export const postServiceOrderAuditPaymentReceipt = /* #__PURE__ */ (() => {
16531   - const method = "post";
16532   - const url = "/service/order/auditPaymentReceipt";
  16589 + const method = 'post';
  16590 + const url = '/service/order/auditPaymentReceipt';
16533 16591 function request(
16534   - option: PostServiceOrderAuditPaymentReceiptOption
  16592 + option: PostServiceOrderAuditPaymentReceiptOption,
16535 16593 ): Promise<PostServiceOrderAuditPaymentReceiptResponseSuccess> {
16536 16594 return requester(request.url, {
16537 16595 method: request.method,
... ... @@ -16599,10 +16657,10 @@ export type PostServiceOrderCancelSendResponseSuccess =
16599 16657 * @consumes application/json
16600 16658 */
16601 16659 export const postServiceOrderCancelSend = /* #__PURE__ */ (() => {
16602   - const method = "post";
16603   - const url = "/service/order/cancelSend";
  16660 + const method = 'post';
  16661 + const url = '/service/order/cancelSend';
16604 16662 function request(
16605   - option: PostServiceOrderCancelSendOption
  16663 + option: PostServiceOrderCancelSendOption,
16606 16664 ): Promise<PostServiceOrderCancelSendResponseSuccess> {
16607 16665 return requester(request.url, {
16608 16666 method: request.method,
... ... @@ -16670,10 +16728,10 @@ export type PostServiceOrderConfirmInvoiceResponseSuccess =
16670 16728 * @consumes application/json
16671 16729 */
16672 16730 export const postServiceOrderConfirmInvoice = /* #__PURE__ */ (() => {
16673   - const method = "post";
16674   - const url = "/service/order/confirmInvoice";
  16731 + const method = 'post';
  16732 + const url = '/service/order/confirmInvoice';
16675 16733 function request(
16676   - option: PostServiceOrderConfirmInvoiceOption
  16734 + option: PostServiceOrderConfirmInvoiceOption,
16677 16735 ): Promise<PostServiceOrderConfirmInvoiceResponseSuccess> {
16678 16736 return requester(request.url, {
16679 16737 method: request.method,
... ... @@ -16755,10 +16813,10 @@ export type PostServiceOrderConfirmReceiptResponseSuccess =
16755 16813 * @consumes application/json
16756 16814 */
16757 16815 export const postServiceOrderConfirmReceipt = /* #__PURE__ */ (() => {
16758   - const method = "post";
16759   - const url = "/service/order/confirmReceipt";
  16816 + const method = 'post';
  16817 + const url = '/service/order/confirmReceipt';
16760 16818 function request(
16761   - option: PostServiceOrderConfirmReceiptOption
  16819 + option: PostServiceOrderConfirmReceiptOption,
16762 16820 ): Promise<PostServiceOrderConfirmReceiptResponseSuccess> {
16763 16821 return requester(request.url, {
16764 16822 method: request.method,
... ... @@ -16820,17 +16878,17 @@ export type PostServiceOrderDeleteWarningOrderWhiteListResponseSuccess =
16820 16878 PostServiceOrderDeleteWarningOrderWhiteListResponse[200];
16821 16879 /**
16822 16880 * @description
16823   - * 删除账号预警白名单
  16881 + * 删除订单预警白名单
16824 16882 * @tags 内部订单
16825 16883 * @produces *
16826 16884 * @consumes application/json
16827 16885 */
16828 16886 export const postServiceOrderDeleteWarningOrderWhiteList =
16829 16887 /* #__PURE__ */ (() => {
16830   - const method = "post";
16831   - const url = "/service/order/deleteWarningOrderWhiteList";
  16888 + const method = 'post';
  16889 + const url = '/service/order/deleteWarningOrderWhiteList';
16832 16890 function request(
16833   - option?: PostServiceOrderDeleteWarningOrderWhiteListOption
  16891 + option?: PostServiceOrderDeleteWarningOrderWhiteListOption,
16834 16892 ): Promise<PostServiceOrderDeleteWarningOrderWhiteListResponseSuccess> {
16835 16893 return requester(request.url, {
16836 16894 method: request.method,
... ... @@ -16899,10 +16957,10 @@ export type PostServiceOrderDeleteWarningUserWhiteListResponseSuccess =
16899 16957 */
16900 16958 export const postServiceOrderDeleteWarningUserWhiteList =
16901 16959 /* #__PURE__ */ (() => {
16902   - const method = "post";
16903   - const url = "/service/order/deleteWarningUserWhiteList";
  16960 + const method = 'post';
  16961 + const url = '/service/order/deleteWarningUserWhiteList';
16904 16962 function request(
16905   - option?: PostServiceOrderDeleteWarningUserWhiteListOption
  16963 + option?: PostServiceOrderDeleteWarningUserWhiteListOption,
16906 16964 ): Promise<PostServiceOrderDeleteWarningUserWhiteListResponseSuccess> {
16907 16965 return requester(request.url, {
16908 16966 method: request.method,
... ... @@ -16970,10 +17028,10 @@ export type PostServiceOrderEditOrderResponseSuccess =
16970 17028 * @consumes application/json
16971 17029 */
16972 17030 export const postServiceOrderEditOrder = /* #__PURE__ */ (() => {
16973   - const method = "post";
16974   - const url = "/service/order/editOrder";
  17031 + const method = 'post';
  17032 + const url = '/service/order/editOrder';
16975 17033 function request(
16976   - option: PostServiceOrderEditOrderOption
  17034 + option: PostServiceOrderEditOrderOption,
16977 17035 ): Promise<PostServiceOrderEditOrderResponseSuccess> {
16978 17036 return requester(request.url, {
16979 17037 method: request.method,
... ... @@ -17041,10 +17099,10 @@ export type PostServiceOrderEditProductionTimeResponseSuccess =
17041 17099 * @consumes application/json
17042 17100 */
17043 17101 export const postServiceOrderEditProductionTime = /* #__PURE__ */ (() => {
17044   - const method = "post";
17045   - const url = "/service/order/editProductionTime";
  17102 + const method = 'post';
  17103 + const url = '/service/order/editProductionTime';
17046 17104 function request(
17047   - option: PostServiceOrderEditProductionTimeOption
  17105 + option: PostServiceOrderEditProductionTimeOption,
17048 17106 ): Promise<PostServiceOrderEditProductionTimeResponseSuccess> {
17049 17107 return requester(request.url, {
17050 17108 method: request.method,
... ... @@ -17112,10 +17170,10 @@ export type PostServiceOrderErrorExcelInformationResponseSuccess =
17112 17170 * @consumes multipart/form-data
17113 17171 */
17114 17172 export const postServiceOrderErrorExcelInformation = /* #__PURE__ */ (() => {
17115   - const method = "post";
17116   - const url = "/service/order/errorExcelInformation";
  17173 + const method = 'post';
  17174 + const url = '/service/order/errorExcelInformation';
17117 17175 function request(
17118   - option: PostServiceOrderErrorExcelInformationOption
  17176 + option: PostServiceOrderErrorExcelInformationOption,
17119 17177 ): Promise<PostServiceOrderErrorExcelInformationResponseSuccess> {
17120 17178 return requester(request.url, {
17121 17179 method: request.method,
... ... @@ -17183,10 +17241,10 @@ export type PostServiceOrderExportResponseSuccess =
17183 17241 * @consumes application/json
17184 17242 */
17185 17243 export const postServiceOrderExport = /* #__PURE__ */ (() => {
17186   - const method = "post";
17187   - const url = "/service/order/export";
  17244 + const method = 'post';
  17245 + const url = '/service/order/export';
17188 17246 function request(
17189   - option: PostServiceOrderExportOption
  17247 + option: PostServiceOrderExportOption,
17190 17248 ): Promise<PostServiceOrderExportResponseSuccess> {
17191 17249 return requester(request.url, {
17192 17250 method: request.method,
... ... @@ -17240,8 +17298,8 @@ export type PostServiceOrderExportTemplateResponseSuccess =
17240 17298 * @consumes application/json
17241 17299 */
17242 17300 export const postServiceOrderExportTemplate = /* #__PURE__ */ (() => {
17243   - const method = "post";
17244   - const url = "/service/order/exportTemplate";
  17301 + const method = 'post';
  17302 + const url = '/service/order/exportTemplate';
17245 17303 function request(): Promise<PostServiceOrderExportTemplateResponseSuccess> {
17246 17304 return requester(request.url, {
17247 17305 method: request.method,
... ... @@ -17308,10 +17366,10 @@ export type PostServiceOrderFileProcessResponseSuccess =
17308 17366 * @consumes application/json
17309 17367 */
17310 17368 export const postServiceOrderFileProcess = /* #__PURE__ */ (() => {
17311   - const method = "post";
17312   - const url = "/service/order/fileProcess";
  17369 + const method = 'post';
  17370 + const url = '/service/order/fileProcess';
17313 17371 function request(
17314   - option: PostServiceOrderFileProcessOption
  17372 + option: PostServiceOrderFileProcessOption,
17315 17373 ): Promise<PostServiceOrderFileProcessResponseSuccess> {
17316 17374 return requester(request.url, {
17317 17375 method: request.method,
... ... @@ -17379,10 +17437,10 @@ export type PostServiceOrderFinanceCheckOrderResponseSuccess =
17379 17437 * @consumes application/json
17380 17438 */
17381 17439 export const postServiceOrderFinanceCheckOrder = /* #__PURE__ */ (() => {
17382   - const method = "post";
17383   - const url = "/service/order/financeCheckOrder";
  17440 + const method = 'post';
  17441 + const url = '/service/order/financeCheckOrder';
17384 17442 function request(
17385   - option: PostServiceOrderFinanceCheckOrderOption
  17443 + option: PostServiceOrderFinanceCheckOrderOption,
17386 17444 ): Promise<PostServiceOrderFinanceCheckOrderResponseSuccess> {
17387 17445 return requester(request.url, {
17388 17446 method: request.method,
... ... @@ -17450,10 +17508,10 @@ export type PostServiceOrderFindInvoiceUrgentInfoResponseSuccess =
17450 17508 * @consumes application/json
17451 17509 */
17452 17510 export const postServiceOrderFindInvoiceUrgentInfo = /* #__PURE__ */ (() => {
17453   - const method = "post";
17454   - const url = "/service/order/findInvoiceUrgentInfo";
  17511 + const method = 'post';
  17512 + const url = '/service/order/findInvoiceUrgentInfo';
17455 17513 function request(
17456   - option: PostServiceOrderFindInvoiceUrgentInfoOption
  17514 + option: PostServiceOrderFindInvoiceUrgentInfoOption,
17457 17515 ): Promise<PostServiceOrderFindInvoiceUrgentInfoResponseSuccess> {
17458 17516 return requester(request.url, {
17459 17517 method: request.method,
... ... @@ -17521,10 +17579,10 @@ export type PostServiceOrderFindServiceOrderResponseSuccess =
17521 17579 * @consumes application/json
17522 17580 */
17523 17581 export const postServiceOrderFindServiceOrder = /* #__PURE__ */ (() => {
17524   - const method = "post";
17525   - const url = "/service/order/findServiceOrder";
  17582 + const method = 'post';
  17583 + const url = '/service/order/findServiceOrder';
17526 17584 function request(
17527   - option: PostServiceOrderFindServiceOrderOption
  17585 + option: PostServiceOrderFindServiceOrderOption,
17528 17586 ): Promise<PostServiceOrderFindServiceOrderResponseSuccess> {
17529 17587 return requester(request.url, {
17530 17588 method: request.method,
... ... @@ -17594,10 +17652,10 @@ export type PostServiceOrderGetCurrentOptNodeResponseSuccess =
17594 17652 * @consumes application/json
17595 17653 */
17596 17654 export const postServiceOrderGetCurrentOptNode = /* #__PURE__ */ (() => {
17597   - const method = "post";
17598   - const url = "/service/order/getCurrentOptNode";
  17655 + const method = 'post';
  17656 + const url = '/service/order/getCurrentOptNode';
17599 17657 function request(
17600   - option?: PostServiceOrderGetCurrentOptNodeOption
  17658 + option?: PostServiceOrderGetCurrentOptNodeOption,
17601 17659 ): Promise<PostServiceOrderGetCurrentOptNodeResponseSuccess> {
17602 17660 return requester(request.url, {
17603 17661 method: request.method,
... ... @@ -17665,10 +17723,10 @@ export type PostServiceOrderGetReissueInfoResponseSuccess =
17665 17723 * @consumes application/json
17666 17724 */
17667 17725 export const postServiceOrderGetReissueInfo = /* #__PURE__ */ (() => {
17668   - const method = "post";
17669   - const url = "/service/order/getReissueInfo";
  17726 + const method = 'post';
  17727 + const url = '/service/order/getReissueInfo';
17670 17728 function request(
17671   - option: PostServiceOrderGetReissueInfoOption
  17729 + option: PostServiceOrderGetReissueInfoOption,
17672 17730 ): Promise<PostServiceOrderGetReissueInfoResponseSuccess> {
17673 17731 return requester(request.url, {
17674 17732 method: request.method,
... ... @@ -17736,10 +17794,10 @@ export type PostServiceOrderImportExcelResponseSuccess =
17736 17794 * @consumes multipart/form-data
17737 17795 */
17738 17796 export const postServiceOrderImportExcel = /* #__PURE__ */ (() => {
17739   - const method = "post";
17740   - const url = "/service/order/importExcel";
  17797 + const method = 'post';
  17798 + const url = '/service/order/importExcel';
17741 17799 function request(
17742   - option: PostServiceOrderImportExcelOption
  17800 + option: PostServiceOrderImportExcelOption,
17743 17801 ): Promise<PostServiceOrderImportExcelResponseSuccess> {
17744 17802 return requester(request.url, {
17745 17803 method: request.method,
... ... @@ -17807,10 +17865,10 @@ export type PostServiceOrderInvoicingResponseSuccess =
17807 17865 * @consumes application/json
17808 17866 */
17809 17867 export const postServiceOrderInvoicing = /* #__PURE__ */ (() => {
17810   - const method = "post";
17811   - const url = "/service/order/invoicing";
  17868 + const method = 'post';
  17869 + const url = '/service/order/invoicing';
17812 17870 function request(
17813   - option: PostServiceOrderInvoicingOption
  17871 + option: PostServiceOrderInvoicingOption,
17814 17872 ): Promise<PostServiceOrderInvoicingResponseSuccess> {
17815 17873 return requester(request.url, {
17816 17874 method: request.method,
... ... @@ -17878,10 +17936,10 @@ export type PostServiceOrderLeaderAuditResponseSuccess =
17878 17936 * @consumes application/json
17879 17937 */
17880 17938 export const postServiceOrderLeaderAudit = /* #__PURE__ */ (() => {
17881   - const method = "post";
17882   - const url = "/service/order/leaderAudit";
  17939 + const method = 'post';
  17940 + const url = '/service/order/leaderAudit';
17883 17941 function request(
17884   - option: PostServiceOrderLeaderAuditOption
  17942 + option: PostServiceOrderLeaderAuditOption,
17885 17943 ): Promise<PostServiceOrderLeaderAuditResponseSuccess> {
17886 17944 return requester(request.url, {
17887 17945 method: request.method,
... ... @@ -17949,10 +18007,10 @@ export type PostServiceOrderMergeApplyInvoicingResponseSuccess =
17949 18007 * @consumes application/json
17950 18008 */
17951 18009 export const postServiceOrderMergeApplyInvoicing = /* #__PURE__ */ (() => {
17952   - const method = "post";
17953   - const url = "/service/order/mergeApplyInvoicing";
  18010 + const method = 'post';
  18011 + const url = '/service/order/mergeApplyInvoicing';
17954 18012 function request(
17955   - option: PostServiceOrderMergeApplyInvoicingOption
  18013 + option: PostServiceOrderMergeApplyInvoicingOption,
17956 18014 ): Promise<PostServiceOrderMergeApplyInvoicingResponseSuccess> {
17957 18015 return requester(request.url, {
17958 18016 method: request.method,
... ... @@ -18020,10 +18078,10 @@ export type PostServiceOrderMergeInvoicingResponseSuccess =
18020 18078 * @consumes application/json
18021 18079 */
18022 18080 export const postServiceOrderMergeInvoicing = /* #__PURE__ */ (() => {
18023   - const method = "post";
18024   - const url = "/service/order/mergeInvoicing";
  18081 + const method = 'post';
  18082 + const url = '/service/order/mergeInvoicing';
18025 18083 function request(
18026   - option: PostServiceOrderMergeInvoicingOption
  18084 + option: PostServiceOrderMergeInvoicingOption,
18027 18085 ): Promise<PostServiceOrderMergeInvoicingResponseSuccess> {
18028 18086 return requester(request.url, {
18029 18087 method: request.method,
... ... @@ -18091,10 +18149,10 @@ export type PostServiceOrderModifiedDiffResponseSuccess =
18091 18149 * @consumes application/json
18092 18150 */
18093 18151 export const postServiceOrderModifiedDiff = /* #__PURE__ */ (() => {
18094   - const method = "post";
18095   - const url = "/service/order/modifiedDiff";
  18152 + const method = 'post';
  18153 + const url = '/service/order/modifiedDiff';
18096 18154 function request(
18097   - option: PostServiceOrderModifiedDiffOption
  18155 + option: PostServiceOrderModifiedDiffOption,
18098 18156 ): Promise<PostServiceOrderModifiedDiffResponseSuccess> {
18099 18157 return requester(request.url, {
18100 18158 method: request.method,
... ... @@ -18162,10 +18220,10 @@ export type PostServiceOrderNoNeedInvoicingEditResponseSuccess =
18162 18220 * @consumes application/json
18163 18221 */
18164 18222 export const postServiceOrderNoNeedInvoicingEdit = /* #__PURE__ */ (() => {
18165   - const method = "post";
18166   - const url = "/service/order/noNeedInvoicingEdit";
  18223 + const method = 'post';
  18224 + const url = '/service/order/noNeedInvoicingEdit';
18167 18225 function request(
18168   - option: PostServiceOrderNoNeedInvoicingEditOption
  18226 + option: PostServiceOrderNoNeedInvoicingEditOption,
18169 18227 ): Promise<PostServiceOrderNoNeedInvoicingEditResponseSuccess> {
18170 18228 return requester(request.url, {
18171 18229 method: request.method,
... ... @@ -18233,10 +18291,10 @@ export type PostServiceOrderNoNeedSendResponseSuccess =
18233 18291 * @consumes application/json
18234 18292 */
18235 18293 export const postServiceOrderNoNeedSend = /* #__PURE__ */ (() => {
18236   - const method = "post";
18237   - const url = "/service/order/noNeedSend";
  18294 + const method = 'post';
  18295 + const url = '/service/order/noNeedSend';
18238 18296 function request(
18239   - option: PostServiceOrderNoNeedSendOption
  18297 + option: PostServiceOrderNoNeedSendOption,
18240 18298 ): Promise<PostServiceOrderNoNeedSendResponseSuccess> {
18241 18299 return requester(request.url, {
18242 18300 method: request.method,
... ... @@ -18304,10 +18362,10 @@ export type PostServiceOrderNotesEditResponseSuccess =
18304 18362 * @consumes application/json
18305 18363 */
18306 18364 export const postServiceOrderNotesEdit = /* #__PURE__ */ (() => {
18307   - const method = "post";
18308   - const url = "/service/order/notesEdit";
  18365 + const method = 'post';
  18366 + const url = '/service/order/notesEdit';
18309 18367 function request(
18310   - option: PostServiceOrderNotesEditOption
  18368 + option: PostServiceOrderNotesEditOption,
18311 18369 ): Promise<PostServiceOrderNotesEditResponseSuccess> {
18312 18370 return requester(request.url, {
18313 18371 method: request.method,
... ... @@ -18375,10 +18433,10 @@ export type PostServiceOrderOrderCancelResponseSuccess =
18375 18433 * @consumes application/json
18376 18434 */
18377 18435 export const postServiceOrderOrderCancel = /* #__PURE__ */ (() => {
18378   - const method = "post";
18379   - const url = "/service/order/orderCancel";
  18436 + const method = 'post';
  18437 + const url = '/service/order/orderCancel';
18380 18438 function request(
18381   - option: PostServiceOrderOrderCancelOption
  18439 + option: PostServiceOrderOrderCancelOption,
18382 18440 ): Promise<PostServiceOrderOrderCancelResponseSuccess> {
18383 18441 return requester(request.url, {
18384 18442 method: request.method,
... ... @@ -18446,10 +18504,10 @@ export type PostServiceOrderPrintOrderResponseSuccess =
18446 18504 * @consumes application/json
18447 18505 */
18448 18506 export const postServiceOrderPrintOrder = /* #__PURE__ */ (() => {
18449   - const method = "post";
18450   - const url = "/service/order/printOrder";
  18507 + const method = 'post';
  18508 + const url = '/service/order/printOrder';
18451 18509 function request(
18452   - option: PostServiceOrderPrintOrderOption
  18510 + option: PostServiceOrderPrintOrderOption,
18453 18511 ): Promise<PostServiceOrderPrintOrderResponseSuccess> {
18454 18512 return requester(request.url, {
18455 18513 method: request.method,
... ... @@ -18517,10 +18575,10 @@ export type PostServiceOrderProcureCheckOrderResponseSuccess =
18517 18575 * @consumes application/json
18518 18576 */
18519 18577 export const postServiceOrderProcureCheckOrder = /* #__PURE__ */ (() => {
18520   - const method = "post";
18521   - const url = "/service/order/procureCheckOrder";
  18578 + const method = 'post';
  18579 + const url = '/service/order/procureCheckOrder';
18522 18580 function request(
18523   - option: PostServiceOrderProcureCheckOrderOption
  18581 + option: PostServiceOrderProcureCheckOrderOption,
18524 18582 ): Promise<PostServiceOrderProcureCheckOrderResponseSuccess> {
18525 18583 return requester(request.url, {
18526 18584 method: request.method,
... ... @@ -18588,10 +18646,10 @@ export type PostServiceOrderProcureConvertProcureResponseSuccess =
18588 18646 * @consumes application/json
18589 18647 */
18590 18648 export const postServiceOrderProcureConvertProcure = /* #__PURE__ */ (() => {
18591   - const method = "post";
18592   - const url = "/service/order/procureConvertProcure";
  18649 + const method = 'post';
  18650 + const url = '/service/order/procureConvertProcure';
18593 18651 function request(
18594   - option: PostServiceOrderProcureConvertProcureOption
  18652 + option: PostServiceOrderProcureConvertProcureOption,
18595 18653 ): Promise<PostServiceOrderProcureConvertProcureResponseSuccess> {
18596 18654 return requester(request.url, {
18597 18655 method: request.method,
... ... @@ -18660,10 +18718,10 @@ export type PostServiceOrderProcureConvertWarehouseKeeperResponseSuccess =
18660 18718 */
18661 18719 export const postServiceOrderProcureConvertWarehouseKeeper =
18662 18720 /* #__PURE__ */ (() => {
18663   - const method = "post";
18664   - const url = "/service/order/procureConvertWarehouseKeeper";
  18721 + const method = 'post';
  18722 + const url = '/service/order/procureConvertWarehouseKeeper';
18665 18723 function request(
18666   - option: PostServiceOrderProcureConvertWarehouseKeeperOption
  18724 + option: PostServiceOrderProcureConvertWarehouseKeeperOption,
18667 18725 ): Promise<PostServiceOrderProcureConvertWarehouseKeeperResponseSuccess> {
18668 18726 return requester(request.url, {
18669 18727 method: request.method,
... ... @@ -18731,10 +18789,10 @@ export type PostServiceOrderProcureOrderResponseSuccess =
18731 18789 * @consumes application/json
18732 18790 */
18733 18791 export const postServiceOrderProcureOrder = /* #__PURE__ */ (() => {
18734   - const method = "post";
18735   - const url = "/service/order/procureOrder";
  18792 + const method = 'post';
  18793 + const url = '/service/order/procureOrder';
18736 18794 function request(
18737   - option: PostServiceOrderProcureOrderOption
  18795 + option: PostServiceOrderProcureOrderOption,
18738 18796 ): Promise<PostServiceOrderProcureOrderResponseSuccess> {
18739 18797 return requester(request.url, {
18740 18798 method: request.method,
... ... @@ -18802,10 +18860,10 @@ export type PostServiceOrderProcurePrintResponseSuccess =
18802 18860 * @consumes application/json
18803 18861 */
18804 18862 export const postServiceOrderProcurePrint = /* #__PURE__ */ (() => {
18805   - const method = "post";
18806   - const url = "/service/order/procurePrint";
  18863 + const method = 'post';
  18864 + const url = '/service/order/procurePrint';
18807 18865 function request(
18808   - option: PostServiceOrderProcurePrintOption
  18866 + option: PostServiceOrderProcurePrintOption,
18809 18867 ): Promise<PostServiceOrderProcurePrintResponseSuccess> {
18810 18868 return requester(request.url, {
18811 18869 method: request.method,
... ... @@ -18873,10 +18931,10 @@ export type PostServiceOrderProcureSendResponseSuccess =
18873 18931 * @consumes application/json
18874 18932 */
18875 18933 export const postServiceOrderProcureSend = /* #__PURE__ */ (() => {
18876   - const method = "post";
18877   - const url = "/service/order/procureSend";
  18934 + const method = 'post';
  18935 + const url = '/service/order/procureSend';
18878 18936 function request(
18879   - option: PostServiceOrderProcureSendOption
  18937 + option: PostServiceOrderProcureSendOption,
18880 18938 ): Promise<PostServiceOrderProcureSendResponseSuccess> {
18881 18939 return requester(request.url, {
18882 18940 method: request.method,
... ... @@ -18924,8 +18982,8 @@ export type GetServiceOrderProvideInvoicingStatusResponseSuccess =
18924 18982 * @produces *
18925 18983 */
18926 18984 export const getServiceOrderProvideInvoicingStatus = /* #__PURE__ */ (() => {
18927   - const method = "get";
18928   - const url = "/service/order/provideInvoicingStatus";
  18985 + const method = 'get';
  18986 + const url = '/service/order/provideInvoicingStatus';
18929 18987 function request(): Promise<GetServiceOrderProvideInvoicingStatusResponseSuccess> {
18930 18988 return requester(request.url, {
18931 18989 method: request.method,
... ... @@ -18972,8 +19030,8 @@ export type GetServiceOrderProvideLogisticsStatusResponseSuccess =
18972 19030 * @produces *
18973 19031 */
18974 19032 export const getServiceOrderProvideLogisticsStatus = /* #__PURE__ */ (() => {
18975   - const method = "get";
18976   - const url = "/service/order/provideLogisticsStatus";
  19033 + const method = 'get';
  19034 + const url = '/service/order/provideLogisticsStatus';
18977 19035 function request(): Promise<GetServiceOrderProvideLogisticsStatusResponseSuccess> {
18978 19036 return requester(request.url, {
18979 19037 method: request.method,
... ... @@ -19020,8 +19078,8 @@ export type GetServiceOrderProvideOrderStatusResponseSuccess =
19020 19078 * @produces *
19021 19079 */
19022 19080 export const getServiceOrderProvideOrderStatus = /* #__PURE__ */ (() => {
19023   - const method = "get";
19024   - const url = "/service/order/provideOrderStatus";
  19081 + const method = 'get';
  19082 + const url = '/service/order/provideOrderStatus';
19025 19083 function request(): Promise<GetServiceOrderProvideOrderStatusResponseSuccess> {
19026 19084 return requester(request.url, {
19027 19085 method: request.method,
... ... @@ -19068,8 +19126,8 @@ export type GetServiceOrderProvidePaymentChannelResponseSuccess =
19068 19126 * @produces *
19069 19127 */
19070 19128 export const getServiceOrderProvidePaymentChannel = /* #__PURE__ */ (() => {
19071   - const method = "get";
19072   - const url = "/service/order/providePaymentChannel";
  19129 + const method = 'get';
  19130 + const url = '/service/order/providePaymentChannel';
19073 19131 function request(): Promise<GetServiceOrderProvidePaymentChannelResponseSuccess> {
19074 19132 return requester(request.url, {
19075 19133 method: request.method,
... ... @@ -19116,8 +19174,8 @@ export type GetServiceOrderProvidePaymentMethodResponseSuccess =
19116 19174 * @produces *
19117 19175 */
19118 19176 export const getServiceOrderProvidePaymentMethod = /* #__PURE__ */ (() => {
19119   - const method = "get";
19120   - const url = "/service/order/providePaymentMethod";
  19177 + const method = 'get';
  19178 + const url = '/service/order/providePaymentMethod';
19121 19179 function request(): Promise<GetServiceOrderProvidePaymentMethodResponseSuccess> {
19122 19180 return requester(request.url, {
19123 19181 method: request.method,
... ... @@ -19170,8 +19228,8 @@ export type PostServiceOrderProvideProcurementRolesResponseSuccess =
19170 19228 * @consumes application/json
19171 19229 */
19172 19230 export const postServiceOrderProvideProcurementRoles = /* #__PURE__ */ (() => {
19173   - const method = "post";
19174   - const url = "/service/order/provideProcurementRoles";
  19231 + const method = 'post';
  19232 + const url = '/service/order/provideProcurementRoles';
19175 19233 function request(): Promise<PostServiceOrderProvideProcurementRolesResponseSuccess> {
19176 19234 return requester(request.url, {
19177 19235 method: request.method,
... ... @@ -19219,8 +19277,8 @@ export type GetServiceOrderProvideProductBelongDepartmentResponseSuccess =
19219 19277 */
19220 19278 export const getServiceOrderProvideProductBelongDepartment =
19221 19279 /* #__PURE__ */ (() => {
19222   - const method = "get";
19223   - const url = "/service/order/provideProductBelongDepartment";
  19280 + const method = 'get';
  19281 + const url = '/service/order/provideProductBelongDepartment';
19224 19282 function request(): Promise<GetServiceOrderProvideProductBelongDepartmentResponseSuccess> {
19225 19283 return requester(request.url, {
19226 19284 method: request.method,
... ... @@ -19267,8 +19325,8 @@ export type GetServiceOrderProvideProductUnitResponseSuccess =
19267 19325 * @produces *
19268 19326 */
19269 19327 export const getServiceOrderProvideProductUnit = /* #__PURE__ */ (() => {
19270   - const method = "get";
19271   - const url = "/service/order/provideProductUnit";
  19328 + const method = 'get';
  19329 + const url = '/service/order/provideProductUnit';
19272 19330 function request(): Promise<GetServiceOrderProvideProductUnitResponseSuccess> {
19273 19331 return requester(request.url, {
19274 19332 method: request.method,
... ... @@ -19315,8 +19373,8 @@ export type GetServiceOrderProvideTokenResponseSuccess =
19315 19373 * @produces *
19316 19374 */
19317 19375 export const getServiceOrderProvideToken = /* #__PURE__ */ (() => {
19318   - const method = "get";
19319   - const url = "/service/order/provideToken";
  19376 + const method = 'get';
  19377 + const url = '/service/order/provideToken';
19320 19378 function request(): Promise<GetServiceOrderProvideTokenResponseSuccess> {
19321 19379 return requester(request.url, {
19322 19380 method: request.method,
... ... @@ -19384,10 +19442,10 @@ export type PostServiceOrderQueryAfterSalesInfoSnapshotResponseSuccess =
19384 19442 */
19385 19443 export const postServiceOrderQueryAfterSalesInfoSnapshot =
19386 19444 /* #__PURE__ */ (() => {
19387   - const method = "post";
19388   - const url = "/service/order/queryAfterSalesInfoSnapshot";
  19445 + const method = 'post';
  19446 + const url = '/service/order/queryAfterSalesInfoSnapshot';
19389 19447 function request(
19390   - option: PostServiceOrderQueryAfterSalesInfoSnapshotOption
  19448 + option: PostServiceOrderQueryAfterSalesInfoSnapshotOption,
19391 19449 ): Promise<PostServiceOrderQueryAfterSalesInfoSnapshotResponseSuccess> {
19392 19450 return requester(request.url, {
19393 19451 method: request.method,
... ... @@ -19441,8 +19499,8 @@ export type PostServiceOrderQueryAnnualTargetResponseSuccess =
19441 19499 * @consumes application/json
19442 19500 */
19443 19501 export const postServiceOrderQueryAnnualTarget = /* #__PURE__ */ (() => {
19444   - const method = "post";
19445   - const url = "/service/order/queryAnnualTarget";
  19502 + const method = 'post';
  19503 + const url = '/service/order/queryAnnualTarget';
19446 19504 function request(): Promise<PostServiceOrderQueryAnnualTargetResponseSuccess> {
19447 19505 return requester(request.url, {
19448 19506 method: request.method,
... ... @@ -19509,10 +19567,10 @@ export type PostServiceOrderQueryCustomerInformationResponseSuccess =
19509 19567 * @consumes application/json
19510 19568 */
19511 19569 export const postServiceOrderQueryCustomerInformation = /* #__PURE__ */ (() => {
19512   - const method = "post";
19513   - const url = "/service/order/queryCustomerInformation";
  19570 + const method = 'post';
  19571 + const url = '/service/order/queryCustomerInformation';
19514 19572 function request(
19515   - option: PostServiceOrderQueryCustomerInformationOption
  19573 + option: PostServiceOrderQueryCustomerInformationOption,
19516 19574 ): Promise<PostServiceOrderQueryCustomerInformationResponseSuccess> {
19517 19575 return requester(request.url, {
19518 19576 method: request.method,
... ... @@ -19581,10 +19639,10 @@ export type PostServiceOrderQueryCustomerNameInformationResponseSuccess =
19581 19639 */
19582 19640 export const postServiceOrderQueryCustomerNameInformation =
19583 19641 /* #__PURE__ */ (() => {
19584   - const method = "post";
19585   - const url = "/service/order/queryCustomerNameInformation";
  19642 + const method = 'post';
  19643 + const url = '/service/order/queryCustomerNameInformation';
19586 19644 function request(
19587   - option: PostServiceOrderQueryCustomerNameInformationOption
  19645 + option: PostServiceOrderQueryCustomerNameInformationOption,
19588 19646 ): Promise<PostServiceOrderQueryCustomerNameInformationResponseSuccess> {
19589 19647 return requester(request.url, {
19590 19648 method: request.method,
... ... @@ -19652,10 +19710,10 @@ export type PostServiceOrderQueryHistoryOrderRecordResponseSuccess =
19652 19710 * @consumes application/json
19653 19711 */
19654 19712 export const postServiceOrderQueryHistoryOrderRecord = /* #__PURE__ */ (() => {
19655   - const method = "post";
19656   - const url = "/service/order/queryHistoryOrderRecord";
  19713 + const method = 'post';
  19714 + const url = '/service/order/queryHistoryOrderRecord';
19657 19715 function request(
19658   - option: PostServiceOrderQueryHistoryOrderRecordOption
  19716 + option: PostServiceOrderQueryHistoryOrderRecordOption,
19659 19717 ): Promise<PostServiceOrderQueryHistoryOrderRecordResponseSuccess> {
19660 19718 return requester(request.url, {
19661 19719 method: request.method,
... ... @@ -19723,10 +19781,10 @@ export type PostServiceOrderQueryProductInformationResponseSuccess =
19723 19781 * @consumes application/json
19724 19782 */
19725 19783 export const postServiceOrderQueryProductInformation = /* #__PURE__ */ (() => {
19726   - const method = "post";
19727   - const url = "/service/order/queryProductInformation";
  19784 + const method = 'post';
  19785 + const url = '/service/order/queryProductInformation';
19728 19786 function request(
19729   - option: PostServiceOrderQueryProductInformationOption
  19787 + option: PostServiceOrderQueryProductInformationOption,
19730 19788 ): Promise<PostServiceOrderQueryProductInformationResponseSuccess> {
19731 19789 return requester(request.url, {
19732 19790 method: request.method,
... ... @@ -19795,10 +19853,10 @@ export type PostServiceOrderQueryReportFormsInformationResponseSuccess =
19795 19853 */
19796 19854 export const postServiceOrderQueryReportFormsInformation =
19797 19855 /* #__PURE__ */ (() => {
19798   - const method = "post";
19799   - const url = "/service/order/queryReportFormsInformation";
  19856 + const method = 'post';
  19857 + const url = '/service/order/queryReportFormsInformation';
19800 19858 function request(
19801   - option: PostServiceOrderQueryReportFormsInformationOption
  19859 + option: PostServiceOrderQueryReportFormsInformationOption,
19802 19860 ): Promise<PostServiceOrderQueryReportFormsInformationResponseSuccess> {
19803 19861 return requester(request.url, {
19804 19862 method: request.method,
... ... @@ -19852,8 +19910,8 @@ export type PostServiceOrderQuerySalesCodeResponseSuccess =
19852 19910 * @consumes application/json
19853 19911 */
19854 19912 export const postServiceOrderQuerySalesCode = /* #__PURE__ */ (() => {
19855   - const method = "post";
19856   - const url = "/service/order/querySalesCode";
  19913 + const method = 'post';
  19914 + const url = '/service/order/querySalesCode';
19857 19915 function request(): Promise<PostServiceOrderQuerySalesCodeResponseSuccess> {
19858 19916 return requester(request.url, {
19859 19917 method: request.method,
... ... @@ -19920,10 +19978,10 @@ export type PostServiceOrderQueryServiceOrderResponseSuccess =
19920 19978 * @consumes application/json
19921 19979 */
19922 19980 export const postServiceOrderQueryServiceOrder = /* #__PURE__ */ (() => {
19923   - const method = "post";
19924   - const url = "/service/order/queryServiceOrder";
  19981 + const method = 'post';
  19982 + const url = '/service/order/queryServiceOrder';
19925 19983 function request(
19926   - option: PostServiceOrderQueryServiceOrderOption
  19984 + option: PostServiceOrderQueryServiceOrderOption,
19927 19985 ): Promise<PostServiceOrderQueryServiceOrderResponseSuccess> {
19928 19986 return requester(request.url, {
19929 19987 method: request.method,
... ... @@ -19977,8 +20035,8 @@ export type PostServiceOrderQuerySupplierResponseSuccess =
19977 20035 * @consumes application/json
19978 20036 */
19979 20037 export const postServiceOrderQuerySupplier = /* #__PURE__ */ (() => {
19980   - const method = "post";
19981   - const url = "/service/order/querySupplier";
  20038 + const method = 'post';
  20039 + const url = '/service/order/querySupplier';
19982 20040 function request(): Promise<PostServiceOrderQuerySupplierResponseSuccess> {
19983 20041 return requester(request.url, {
19984 20042 method: request.method,
... ... @@ -20045,10 +20103,10 @@ export type PostServiceOrderRemindShippingResponseSuccess =
20045 20103 * @consumes application/json
20046 20104 */
20047 20105 export const postServiceOrderRemindShipping = /* #__PURE__ */ (() => {
20048   - const method = "post";
20049   - const url = "/service/order/remindShipping";
  20106 + const method = 'post';
  20107 + const url = '/service/order/remindShipping';
20050 20108 function request(
20051   - option: PostServiceOrderRemindShippingOption
  20109 + option: PostServiceOrderRemindShippingOption,
20052 20110 ): Promise<PostServiceOrderRemindShippingResponseSuccess> {
20053 20111 return requester(request.url, {
20054 20112 method: request.method,
... ... @@ -20116,10 +20174,10 @@ export type PostServiceOrderSaleCancelInvoicingResponseSuccess =
20116 20174 * @consumes application/json
20117 20175 */
20118 20176 export const postServiceOrderSaleCancelInvoicing = /* #__PURE__ */ (() => {
20119   - const method = "post";
20120   - const url = "/service/order/saleCancelInvoicing";
  20177 + const method = 'post';
  20178 + const url = '/service/order/saleCancelInvoicing';
20121 20179 function request(
20122   - option: PostServiceOrderSaleCancelInvoicingOption
  20180 + option: PostServiceOrderSaleCancelInvoicingOption,
20123 20181 ): Promise<PostServiceOrderSaleCancelInvoicingResponseSuccess> {
20124 20182 return requester(request.url, {
20125 20183 method: request.method,
... ... @@ -20187,10 +20245,10 @@ export type PostServiceOrderSalesConfirmResponseSuccess =
20187 20245 * @consumes application/json
20188 20246 */
20189 20247 export const postServiceOrderSalesConfirm = /* #__PURE__ */ (() => {
20190   - const method = "post";
20191   - const url = "/service/order/salesConfirm";
  20248 + const method = 'post';
  20249 + const url = '/service/order/salesConfirm';
20192 20250 function request(
20193   - option: PostServiceOrderSalesConfirmOption
  20251 + option: PostServiceOrderSalesConfirmOption,
20194 20252 ): Promise<PostServiceOrderSalesConfirmResponseSuccess> {
20195 20253 return requester(request.url, {
20196 20254 method: request.method,
... ... @@ -20258,10 +20316,10 @@ export type PostServiceOrderSendProductResponseSuccess =
20258 20316 * @consumes application/json
20259 20317 */
20260 20318 export const postServiceOrderSendProduct = /* #__PURE__ */ (() => {
20261   - const method = "post";
20262   - const url = "/service/order/sendProduct";
  20319 + const method = 'post';
  20320 + const url = '/service/order/sendProduct';
20263 20321 function request(
20264   - option: PostServiceOrderSendProductOption
  20322 + option: PostServiceOrderSendProductOption,
20265 20323 ): Promise<PostServiceOrderSendProductResponseSuccess> {
20266 20324 return requester(request.url, {
20267 20325 method: request.method,
... ... @@ -20329,10 +20387,10 @@ export type PostServiceOrderShippingWarehouseChangeResponseSuccess =
20329 20387 * @consumes application/json
20330 20388 */
20331 20389 export const postServiceOrderShippingWarehouseChange = /* #__PURE__ */ (() => {
20332   - const method = "post";
20333   - const url = "/service/order/shippingWarehouseChange";
  20390 + const method = 'post';
  20391 + const url = '/service/order/shippingWarehouseChange';
20334 20392 function request(
20335   - option: PostServiceOrderShippingWarehouseChangeOption
  20393 + option: PostServiceOrderShippingWarehouseChangeOption,
20336 20394 ): Promise<PostServiceOrderShippingWarehouseChangeResponseSuccess> {
20337 20395 return requester(request.url, {
20338 20396 method: request.method,
... ... @@ -20400,10 +20458,10 @@ export type PostServiceOrderSupplierPrintResponseSuccess =
20400 20458 * @consumes application/json
20401 20459 */
20402 20460 export const postServiceOrderSupplierPrint = /* #__PURE__ */ (() => {
20403   - const method = "post";
20404   - const url = "/service/order/supplierPrint";
  20461 + const method = 'post';
  20462 + const url = '/service/order/supplierPrint';
20405 20463 function request(
20406   - option: PostServiceOrderSupplierPrintOption
  20464 + option: PostServiceOrderSupplierPrintOption,
20407 20465 ): Promise<PostServiceOrderSupplierPrintResponseSuccess> {
20408 20466 return requester(request.url, {
20409 20467 method: request.method,
... ... @@ -20471,10 +20529,10 @@ export type PostServiceOrderSupplierSendOrderResponseSuccess =
20471 20529 * @consumes application/json
20472 20530 */
20473 20531 export const postServiceOrderSupplierSendOrder = /* #__PURE__ */ (() => {
20474   - const method = "post";
20475   - const url = "/service/order/supplierSendOrder";
  20532 + const method = 'post';
  20533 + const url = '/service/order/supplierSendOrder';
20476 20534 function request(
20477   - option: PostServiceOrderSupplierSendOrderOption
  20535 + option: PostServiceOrderSupplierSendOrderOption,
20478 20536 ): Promise<PostServiceOrderSupplierSendOrderResponseSuccess> {
20479 20537 return requester(request.url, {
20480 20538 method: request.method,
... ... @@ -20542,10 +20600,10 @@ export type PostServiceOrderToProcureAuditResponseSuccess =
20542 20600 * @consumes application/json
20543 20601 */
20544 20602 export const postServiceOrderToProcureAudit = /* #__PURE__ */ (() => {
20545   - const method = "post";
20546   - const url = "/service/order/toProcureAudit";
  20603 + const method = 'post';
  20604 + const url = '/service/order/toProcureAudit';
20547 20605 function request(
20548   - option: PostServiceOrderToProcureAuditOption
  20606 + option: PostServiceOrderToProcureAuditOption,
20549 20607 ): Promise<PostServiceOrderToProcureAuditResponseSuccess> {
20550 20608 return requester(request.url, {
20551 20609 method: request.method,
... ... @@ -20613,10 +20671,10 @@ export type PostServiceOrderUpdateAnnexResponseSuccess =
20613 20671 * @consumes application/json
20614 20672 */
20615 20673 export const postServiceOrderUpdateAnnex = /* #__PURE__ */ (() => {
20616   - const method = "post";
20617   - const url = "/service/order/updateAnnex";
  20674 + const method = 'post';
  20675 + const url = '/service/order/updateAnnex';
20618 20676 function request(
20619   - option: PostServiceOrderUpdateAnnexOption
  20677 + option: PostServiceOrderUpdateAnnexOption,
20620 20678 ): Promise<PostServiceOrderUpdateAnnexResponseSuccess> {
20621 20679 return requester(request.url, {
20622 20680 method: request.method,
... ... @@ -20684,10 +20742,10 @@ export type PostServiceOrderUpdateHirePurchaseResponseSuccess =
20684 20742 * @consumes application/json
20685 20743 */
20686 20744 export const postServiceOrderUpdateHirePurchase = /* #__PURE__ */ (() => {
20687   - const method = "post";
20688   - const url = "/service/order/updateHirePurchase";
  20745 + const method = 'post';
  20746 + const url = '/service/order/updateHirePurchase';
20689 20747 function request(
20690   - option: PostServiceOrderUpdateHirePurchaseOption
  20748 + option: PostServiceOrderUpdateHirePurchaseOption,
20691 20749 ): Promise<PostServiceOrderUpdateHirePurchaseResponseSuccess> {
20692 20750 return requester(request.url, {
20693 20751 method: request.method,
... ... @@ -20755,10 +20813,10 @@ export type PostServiceOrderUpdateOrderResponseSuccess =
20755 20813 * @consumes application/json
20756 20814 */
20757 20815 export const postServiceOrderUpdateOrder = /* #__PURE__ */ (() => {
20758   - const method = "post";
20759   - const url = "/service/order/updateOrder";
  20816 + const method = 'post';
  20817 + const url = '/service/order/updateOrder';
20760 20818 function request(
20761   - option: PostServiceOrderUpdateOrderOption
  20819 + option: PostServiceOrderUpdateOrderOption,
20762 20820 ): Promise<PostServiceOrderUpdateOrderResponseSuccess> {
20763 20821 return requester(request.url, {
20764 20822 method: request.method,
... ... @@ -20826,10 +20884,10 @@ export type PostServiceOrderUpdateReportFormsTargetResponseSuccess =
20826 20884 * @consumes application/json
20827 20885 */
20828 20886 export const postServiceOrderUpdateReportFormsTarget = /* #__PURE__ */ (() => {
20829   - const method = "post";
20830   - const url = "/service/order/updateReportFormsTarget";
  20887 + const method = 'post';
  20888 + const url = '/service/order/updateReportFormsTarget';
20831 20889 function request(
20832   - option: PostServiceOrderUpdateReportFormsTargetOption
  20890 + option: PostServiceOrderUpdateReportFormsTargetOption,
20833 20891 ): Promise<PostServiceOrderUpdateReportFormsTargetResponseSuccess> {
20834 20892 return requester(request.url, {
20835 20893 method: request.method,
... ... @@ -20897,10 +20955,10 @@ export type PostServiceOrderUploadPaymentReceiptResponseSuccess =
20897 20955 * @consumes application/json
20898 20956 */
20899 20957 export const postServiceOrderUploadPaymentReceipt = /* #__PURE__ */ (() => {
20900   - const method = "post";
20901   - const url = "/service/order/uploadPaymentReceipt";
  20958 + const method = 'post';
  20959 + const url = '/service/order/uploadPaymentReceipt';
20902 20960 function request(
20903   - option: PostServiceOrderUploadPaymentReceiptOption
  20961 + option: PostServiceOrderUploadPaymentReceiptOption,
20904 20962 ): Promise<PostServiceOrderUploadPaymentReceiptResponseSuccess> {
20905 20963 return requester(request.url, {
20906 20964 method: request.method,
... ... @@ -20968,10 +21026,10 @@ export type PostServiceOrderViewImagesResponseSuccess =
20968 21026 * @consumes application/json
20969 21027 */
20970 21028 export const postServiceOrderViewImages = /* #__PURE__ */ (() => {
20971   - const method = "post";
20972   - const url = "/service/order/viewImages";
  21029 + const method = 'post';
  21030 + const url = '/service/order/viewImages';
20973 21031 function request(
20974   - option: PostServiceOrderViewImagesOption
  21032 + option: PostServiceOrderViewImagesOption,
20975 21033 ): Promise<PostServiceOrderViewImagesResponseSuccess> {
20976 21034 return requester(request.url, {
20977 21035 method: request.method,
... ... @@ -21025,8 +21083,8 @@ export type PostServiceOrderWarningOrderStatisticsResponseSuccess =
21025 21083 * @consumes application/json
21026 21084 */
21027 21085 export const postServiceOrderWarningOrderStatistics = /* #__PURE__ */ (() => {
21028   - const method = "post";
21029   - const url = "/service/order/warningOrderStatistics";
  21086 + const method = 'post';
  21087 + const url = '/service/order/warningOrderStatistics';
21030 21088 function request(): Promise<PostServiceOrderWarningOrderStatisticsResponseSuccess> {
21031 21089 return requester(request.url, {
21032 21090 method: request.method,
... ... @@ -21087,16 +21145,16 @@ export type PostServiceOrderWarningOrderWhiteListsResponseSuccess =
21087 21145 PostServiceOrderWarningOrderWhiteListsResponse[200];
21088 21146 /**
21089 21147 * @description
21090   - * 查询账号预警白名单
  21148 + * 查询订单预警白名单
21091 21149 * @tags 内部订单
21092 21150 * @produces *
21093 21151 * @consumes application/json
21094 21152 */
21095 21153 export const postServiceOrderWarningOrderWhiteLists = /* #__PURE__ */ (() => {
21096   - const method = "post";
21097   - const url = "/service/order/warningOrderWhiteLists";
  21154 + const method = 'post';
  21155 + const url = '/service/order/warningOrderWhiteLists';
21098 21156 function request(
21099   - option: PostServiceOrderWarningOrderWhiteListsOption
  21157 + option: PostServiceOrderWarningOrderWhiteListsOption,
21100 21158 ): Promise<PostServiceOrderWarningOrderWhiteListsResponseSuccess> {
21101 21159 return requester(request.url, {
21102 21160 method: request.method,
... ... @@ -21164,10 +21222,10 @@ export type PostServiceOrderWarningUserWhiteListsResponseSuccess =
21164 21222 * @consumes application/json
21165 21223 */
21166 21224 export const postServiceOrderWarningUserWhiteLists = /* #__PURE__ */ (() => {
21167   - const method = "post";
21168   - const url = "/service/order/warningUserWhiteLists";
  21225 + const method = 'post';
  21226 + const url = '/service/order/warningUserWhiteLists';
21169 21227 function request(
21170   - option: PostServiceOrderWarningUserWhiteListsOption
  21228 + option: PostServiceOrderWarningUserWhiteListsOption,
21171 21229 ): Promise<PostServiceOrderWarningUserWhiteListsResponseSuccess> {
21172 21230 return requester(request.url, {
21173 21231 method: request.method,
... ... @@ -21233,10 +21291,10 @@ export type GetServiceTogglesResponseSuccess = GetServiceTogglesResponse[200];
21233 21291 * @produces *
21234 21292 */
21235 21293 export const getServiceToggles = /* #__PURE__ */ (() => {
21236   - const method = "get";
21237   - const url = "/service/toggles";
  21294 + const method = 'get';
  21295 + const url = '/service/toggles';
21238 21296 function request(
21239   - option?: GetServiceTogglesOption
  21297 + option?: GetServiceTogglesOption,
21240 21298 ): Promise<GetServiceTogglesResponseSuccess> {
21241 21299 return requester(request.url, {
21242 21300 method: request.method,
... ...