Commit 2a08cdcf40e24d5b7dc2e67ae1d83db7177dedd1

Authored by 曾国涛
1 parent 0460bf4a

feat: 添加订单商品信息字体大小调整

src/pages/Order/components/OrderDrawer.tsx
@@ -1528,7 +1528,10 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1528,7 +1528,10 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1528 optionItemRender(item) { 1528 optionItemRender(item) {
1529 if (item.type === 'add') { 1529 if (item.type === 'add') {
1530 return ( 1530 return (
1531 - <div title={item.name + '(新增商品信息)'}> 1531 + <div
  1532 + style={{ fontSize: '11px' }}
  1533 + title={item.name + '(新增商品信息)'}
  1534 + >
1532 <span style={{ color: '#333333' }}> 1535 <span style={{ color: '#333333' }}>
1533 {item.label} 1536 {item.label}
1534 </span> 1537 </span>
@@ -1539,6 +1542,7 @@ export default ({ onClose, data, subOrders, orderOptType }) =&gt; { @@ -1539,6 +1542,7 @@ export default ({ onClose, data, subOrders, orderOptType }) =&gt; {
1539 } 1542 }
1540 return ( 1543 return (
1541 <div 1544 <div
  1545 + style={{ fontSize: '11px' }}
1542 title={ 1546 title={
1543 item.label + 1547 item.label +
1544 ' | ' + 1548 ' | ' +
src/pages/Order/index.tsx
@@ -1232,6 +1232,39 @@ const OrderPage = () =&gt; { @@ -1232,6 +1232,39 @@ const OrderPage = () =&gt; {
1232 </div> 1232 </div>
1233 </Flex> 1233 </Flex>
1234 <Flex className="w-[18%]" wrap="wrap" gap="small"> 1234 <Flex className="w-[18%]" wrap="wrap" gap="small">
  1235 + {optRecord.subPath?.includes('postAudit') ? (
  1236 + <Button
  1237 + className="p-0"
  1238 + type="link"
  1239 + onClick={() => {
  1240 + createOptObject(optRecord.id, record.id);
  1241 + setCheckVisible(true);
  1242 + setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT);
  1243 + }}
  1244 + >
  1245 + 后置审核
  1246 + </Button>
  1247 + ) : (
  1248 + ''
  1249 + )}
  1250 + {/* 加急审核 */}
  1251 + {optRecord.subPath?.includes('URGENT_INVOICE_AUDITING') ? (
  1252 + <Button
  1253 + className="p-0"
  1254 + type="link"
  1255 + onClick={() => {
  1256 + console.log('here');
  1257 + setCurrentMainId(record.id);
  1258 + setCurretnOptSubId(optRecord.id);
  1259 + setCheckVisible(true);
  1260 + setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING);
  1261 + }}
  1262 + >
  1263 + 加急审核
  1264 + </Button>
  1265 + ) : (
  1266 + ''
  1267 + )}
1235 {optRecord.subPath?.includes('salesConfirm') && ( 1268 {optRecord.subPath?.includes('salesConfirm') && (
1236 <ButtonConfirm 1269 <ButtonConfirm
1237 className="p-0" 1270 className="p-0"
@@ -1351,41 +1384,6 @@ const OrderPage = () =&gt; { @@ -1351,41 +1384,6 @@ const OrderPage = () =&gt; {
1351 '' 1384 ''
1352 )} 1385 )}
1353 1386
1354 - {/* 加急审核 */}  
1355 - {optRecord.subPath?.includes('URGENT_INVOICE_AUDITING') ? (  
1356 - <Button  
1357 - className="p-0"  
1358 - type="link"  
1359 - onClick={() => {  
1360 - console.log('here');  
1361 - setCurrentMainId(record.id);  
1362 - setCurretnOptSubId(optRecord.id);  
1363 - setCheckVisible(true);  
1364 - setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING);  
1365 - }}  
1366 - >  
1367 - 加急审核  
1368 - </Button>  
1369 - ) : (  
1370 - ''  
1371 - )}  
1372 -  
1373 - {optRecord.subPath?.includes('postAudit') ? (  
1374 - <Button  
1375 - className="p-0"  
1376 - type="link"  
1377 - onClick={() => {  
1378 - createOptObject(optRecord.id, record.id);  
1379 - setCheckVisible(true);  
1380 - setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT);  
1381 - }}  
1382 - >  
1383 - 后置审核  
1384 - </Button>  
1385 - ) : (  
1386 - ''  
1387 - )}  
1388 -  
1389 {optRecord.subPath?.includes('modifiedAuditRequest') ? ( 1387 {optRecord.subPath?.includes('modifiedAuditRequest') ? (
1390 <Button 1388 <Button
1391 className="p-0" 1389 className="p-0"
@@ -2545,6 +2543,37 @@ const OrderPage = () =&gt; { @@ -2545,6 +2543,37 @@ const OrderPage = () =&gt; {
2545 <Flex justify="flex-end"> 2543 <Flex justify="flex-end">
2546 <Space.Compact direction="vertical" align="end"> 2544 <Space.Compact direction="vertical" align="end">
2547 <Space wrap> 2545 <Space wrap>
  2546 + {record.mainPath?.includes('postAudit') ? (
  2547 + <Button
  2548 + className="p-0"
  2549 + type="link"
  2550 + onClick={() => {
  2551 + setCurrentMainId(record.id);
  2552 + setCurretnOptSubId(null);
  2553 + setCheckVisible(true);
  2554 + setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT);
  2555 + }}
  2556 + >
  2557 + 后置审核
  2558 + </Button>
  2559 + ) : (
  2560 + ''
  2561 + )}
  2562 + {record.mainPath?.includes('URGENT_INVOICE_AUDITING') ? (
  2563 + <Button
  2564 + className="p-0"
  2565 + type="link"
  2566 + onClick={() => {
  2567 + createOptObject(null, record.id);
  2568 + setCheckVisible(true);
  2569 + setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING);
  2570 + }}
  2571 + >
  2572 + 加急审核
  2573 + </Button>
  2574 + ) : (
  2575 + ''
  2576 + )}
2548 {record.mainPath?.includes('salesConfirm') && ( 2577 {record.mainPath?.includes('salesConfirm') && (
2549 <ButtonConfirm 2578 <ButtonConfirm
2550 className="p-0" 2579 className="p-0"
@@ -2607,22 +2636,6 @@ const OrderPage = () =&gt; { @@ -2607,22 +2636,6 @@ const OrderPage = () =&gt; {
2607 '' 2636 ''
2608 )} 2637 )}
2609 2638
2610 - {record.mainPath?.includes('URGENT_INVOICE_AUDITING') ? (  
2611 - <Button  
2612 - className="p-0"  
2613 - type="link"  
2614 - onClick={() => {  
2615 - createOptObject(null, record.id);  
2616 - setCheckVisible(true);  
2617 - setOrderCheckType(CHECK_TYPE.URGENT_INVOICE_AUDITING);  
2618 - }}  
2619 - >  
2620 - 加急审核  
2621 - </Button>  
2622 - ) : (  
2623 - ''  
2624 - )}  
2625 -  
2626 {record.mainPath?.includes('auditPaymentReceipt') ? ( 2639 {record.mainPath?.includes('auditPaymentReceipt') ? (
2627 <Button 2640 <Button
2628 className="p-0" 2641 className="p-0"
@@ -2705,22 +2718,6 @@ const OrderPage = () =&gt; { @@ -2705,22 +2718,6 @@ const OrderPage = () =&gt; {
2705 ) : ( 2718 ) : (
2706 '' 2719 ''
2707 )} 2720 )}
2708 - {record.mainPath?.includes('postAudit') ? (  
2709 - <Button  
2710 - className="p-0"  
2711 - type="link"  
2712 - onClick={() => {  
2713 - setCurrentMainId(record.id);  
2714 - setCurretnOptSubId(null);  
2715 - setCheckVisible(true);  
2716 - setOrderCheckType(CHECK_TYPE.WAITING_FOR_POST_AUDIT);  
2717 - }}  
2718 - >  
2719 - 后置审核  
2720 - </Button>  
2721 - ) : (  
2722 - ''  
2723 - )}  
2724 2721
2725 {record.mainPath?.includes('procureOrder') ? ( 2722 {record.mainPath?.includes('procureOrder') ? (
2726 <ButtonConfirm 2723 <ButtonConfirm
src/services/definition.ts
@@ -86,6 +86,8 @@ export interface AdminAuthUserVO { @@ -86,6 +86,8 @@ export interface AdminAuthUserVO {
86 export interface AdminDeptQueryVO { 86 export interface AdminDeptQueryVO {
87 /** @format int32 */ 87 /** @format int32 */
88 current?: number; 88 current?: number;
  89 + /** @format int32 */
  90 + end?: number;
89 /** @format int64 */ 91 /** @format int64 */
90 id?: number; 92 id?: number;
91 ids?: Array<number>; 93 ids?: Array<number>;
@@ -95,6 +97,8 @@ export interface AdminDeptQueryVO { @@ -95,6 +97,8 @@ export interface AdminDeptQueryVO {
95 /** @format int64 */ 97 /** @format int64 */
96 pid?: number; 98 pid?: number;
97 /** @format int32 */ 99 /** @format int32 */
  100 + start?: number;
  101 + /** @format int32 */
98 total?: number; 102 total?: number;
99 } 103 }
100 104
@@ -109,6 +113,8 @@ export interface AdminDeptVO { @@ -109,6 +113,8 @@ export interface AdminDeptVO {
109 export interface AdminJobQueryVO { 113 export interface AdminJobQueryVO {
110 /** @format int32 */ 114 /** @format int32 */
111 current?: number; 115 current?: number;
  116 + /** @format int32 */
  117 + end?: number;
112 /** @format int64 */ 118 /** @format int64 */
113 id?: number; 119 id?: number;
114 ids?: Array<number>; 120 ids?: Array<number>;
@@ -118,6 +124,8 @@ export interface AdminJobQueryVO { @@ -118,6 +124,8 @@ export interface AdminJobQueryVO {
118 /** @format int32 */ 124 /** @format int32 */
119 sort?: number; 125 sort?: number;
120 /** @format int32 */ 126 /** @format int32 */
  127 + start?: number;
  128 + /** @format int32 */
121 total?: number; 129 total?: number;
122 } 130 }
123 131
@@ -136,6 +144,8 @@ export interface AdminMenuQueryVO { @@ -136,6 +144,8 @@ export interface AdminMenuQueryVO {
136 /** @format int32 */ 144 /** @format int32 */
137 current?: number; 145 current?: number;
138 /** @format int32 */ 146 /** @format int32 */
  147 + end?: number;
  148 + /** @format int32 */
139 hidden?: number; 149 hidden?: number;
140 icon?: string; 150 icon?: string;
141 /** @format int64 */ 151 /** @format int64 */
@@ -151,6 +161,8 @@ export interface AdminMenuQueryVO { @@ -151,6 +161,8 @@ export interface AdminMenuQueryVO {
151 /** @format int64 */ 161 /** @format int64 */
152 pid?: number; 162 pid?: number;
153 /** @format int32 */ 163 /** @format int32 */
  164 + start?: number;
  165 + /** @format int32 */
154 total?: number; 166 total?: number;
155 /** @format int32 */ 167 /** @format int32 */
156 type?: number; 168 type?: number;
@@ -181,6 +193,8 @@ export interface AdminRoleQueryVO { @@ -181,6 +193,8 @@ export interface AdminRoleQueryVO {
181 /** @format int32 */ 193 /** @format int32 */
182 current?: number; 194 current?: number;
183 dataScope?: string; 195 dataScope?: string;
  196 + /** @format int32 */
  197 + end?: number;
184 /** @format int64 */ 198 /** @format int64 */
185 id?: number; 199 id?: number;
186 ids?: Array<number>; 200 ids?: Array<number>;
@@ -192,6 +206,8 @@ export interface AdminRoleQueryVO { @@ -192,6 +206,8 @@ export interface AdminRoleQueryVO {
192 permission?: string; 206 permission?: string;
193 remark?: string; 207 remark?: string;
194 /** @format int32 */ 208 /** @format int32 */
  209 + start?: number;
  210 + /** @format int32 */
195 total?: number; 211 total?: number;
196 } 212 }
197 213
@@ -209,22 +225,30 @@ export interface AdminUserLoginByPhoneVO { @@ -209,22 +225,30 @@ export interface AdminUserLoginByPhoneVO {
209 /** @format int32 */ 225 /** @format int32 */
210 current?: number; 226 current?: number;
211 /** @format int32 */ 227 /** @format int32 */
  228 + end?: number;
  229 + /** @format int32 */
212 pageSize?: number; 230 pageSize?: number;
213 phone?: string; 231 phone?: string;
214 smsCaptchaCode?: string; 232 smsCaptchaCode?: string;
215 /** @format int32 */ 233 /** @format int32 */
  234 + start?: number;
  235 + /** @format int32 */
216 total?: number; 236 total?: number;
217 } 237 }
218 238
219 export interface AdminUserLoginByPwdVO { 239 export interface AdminUserLoginByPwdVO {
220 /** @format int32 */ 240 /** @format int32 */
221 current?: number; 241 current?: number;
  242 + /** @format int32 */
  243 + end?: number;
222 imgCaptchaCode?: string; 244 imgCaptchaCode?: string;
223 imgCaptchaUuid?: string; 245 imgCaptchaUuid?: string;
224 /** @format int32 */ 246 /** @format int32 */
225 pageSize?: number; 247 pageSize?: number;
226 password?: string; 248 password?: string;
227 /** @format int32 */ 249 /** @format int32 */
  250 + start?: number;
  251 + /** @format int32 */
228 total?: number; 252 total?: number;
229 userName?: string; 253 userName?: string;
230 } 254 }
@@ -234,11 +258,15 @@ export interface AdminUserModifyPwdVO { @@ -234,11 +258,15 @@ export interface AdminUserModifyPwdVO {
234 /** @format int32 */ 258 /** @format int32 */
235 current?: number; 259 current?: number;
236 /** @format int32 */ 260 /** @format int32 */
  261 + end?: number;
  262 + /** @format int32 */
237 pageSize?: number; 263 pageSize?: number;
238 password?: string; 264 password?: string;
239 phone?: string; 265 phone?: string;
240 smsCaptchaCode?: string; 266 smsCaptchaCode?: string;
241 /** @format int32 */ 267 /** @format int32 */
  268 + start?: number;
  269 + /** @format int32 */
242 total?: number; 270 total?: number;
243 } 271 }
244 272
@@ -246,8 +274,12 @@ export interface AdminUserPasswordRecoverEmailVO { @@ -246,8 +274,12 @@ export interface AdminUserPasswordRecoverEmailVO {
246 /** @format int32 */ 274 /** @format int32 */
247 current?: number; 275 current?: number;
248 /** @format int32 */ 276 /** @format int32 */
  277 + end?: number;
  278 + /** @format int32 */
249 pageSize?: number; 279 pageSize?: number;
250 /** @format int32 */ 280 /** @format int32 */
  281 + start?: number;
  282 + /** @format int32 */
251 total?: number; 283 total?: number;
252 userName?: string; 284 userName?: string;
253 } 285 }
@@ -256,6 +288,8 @@ export interface AdminUserQueryVO { @@ -256,6 +288,8 @@ export interface AdminUserQueryVO {
256 /** @format int32 */ 288 /** @format int32 */
257 current?: number; 289 current?: number;
258 email?: string; 290 email?: string;
  291 + /** @format int32 */
  292 + end?: number;
259 /** @format int64 */ 293 /** @format int64 */
260 id?: number; 294 id?: number;
261 ids?: Array<number>; 295 ids?: Array<number>;
@@ -266,6 +300,8 @@ export interface AdminUserQueryVO { @@ -266,6 +300,8 @@ export interface AdminUserQueryVO {
266 phone?: string; 300 phone?: string;
267 sex?: string; 301 sex?: string;
268 /** @format int32 */ 302 /** @format int32 */
  303 + start?: number;
  304 + /** @format int32 */
269 total?: number; 305 total?: number;
270 userName?: string; 306 userName?: string;
271 workerType?: string; 307 workerType?: string;
@@ -276,6 +312,8 @@ export interface AdminUserRegisterVO { @@ -276,6 +312,8 @@ export interface AdminUserRegisterVO {
276 /** @format int32 */ 312 /** @format int32 */
277 current?: number; 313 current?: number;
278 email?: string; 314 email?: string;
  315 + /** @format int32 */
  316 + end?: number;
279 isAgreeAgreement?: boolean; 317 isAgreeAgreement?: boolean;
280 /** @format int32 */ 318 /** @format int32 */
281 pageSize?: number; 319 pageSize?: number;
@@ -285,6 +323,8 @@ export interface AdminUserRegisterVO { @@ -285,6 +323,8 @@ export interface AdminUserRegisterVO {
285 safeQuestion?: string; 323 safeQuestion?: string;
286 smsCaptchaCode?: string; 324 smsCaptchaCode?: string;
287 /** @format int32 */ 325 /** @format int32 */
  326 + start?: number;
  327 + /** @format int32 */
288 total?: number; 328 total?: number;
289 userName?: string; 329 userName?: string;
290 } 330 }
@@ -480,8 +520,12 @@ export interface ApiOrderCustomersRequest { @@ -480,8 +520,12 @@ export interface ApiOrderCustomersRequest {
480 /** @format int32 */ 520 /** @format int32 */
481 current?: number; 521 current?: number;
482 /** @format int32 */ 522 /** @format int32 */
  523 + end?: number;
  524 + /** @format int32 */
483 pageSize?: number; 525 pageSize?: number;
484 /** @format int32 */ 526 /** @format int32 */
  527 + start?: number;
  528 + /** @format int32 */
485 total?: number; 529 total?: number;
486 } 530 }
487 531
@@ -528,221 +572,6 @@ export interface ApiQueryOrderStatusCountsRequest { @@ -528,221 +572,6 @@ export interface ApiQueryOrderStatusCountsRequest {
528 uid?: number; 572 uid?: number;
529 } 573 }
530 574
531 -export interface ApplyInvoiceDto {  
532 - /**  
533 - * @description  
534 - * 备注  
535 - */  
536 - applyInvoicingNotes?: string;  
537 - /**  
538 - * @description  
539 - * 开票备注  
540 - */  
541 - comment?: string;  
542 - /**  
543 - * @description  
544 - * 联系人  
545 - */  
546 - contacts?: string;  
547 - /**  
548 - * @description  
549 - * 开票内容  
550 - */  
551 - content?: string;  
552 - createByName?: string;  
553 - /** @format date-time */  
554 - createTime?: string;  
555 - failureReason?: string;  
556 - /**  
557 - * @description  
558 - * id  
559 - * @format int64  
560 - */  
561 - id?: number;  
562 - /**  
563 - * @description  
564 - * 发票地址  
565 - */  
566 - invoiceAddress?: string;  
567 - /**  
568 - * @description  
569 - * 发票明细  
570 - */  
571 - invoiceDetails?: Array<InvoiceDetail>;  
572 - /**  
573 - * @description  
574 - * 关联发票id  
575 - */  
576 - invoiceId?: string;  
577 - /**  
578 - * @description  
579 - * 发票号码  
580 - */  
581 - invoiceNumber?: string;  
582 - /**  
583 - * @description  
584 - * 开票人  
585 - */  
586 - invoicingPerson?: string;  
587 - /**  
588 - * @description  
589 - * 开票时间  
590 - * @format date-time  
591 - */  
592 - invoicingTime?: string;  
593 - /**  
594 - * @description  
595 - * 开具类型  
596 - */  
597 - invoicingType?: string;  
598 - /**  
599 - * @description  
600 - * 开具类型  
601 - */  
602 - invoicingTypeText?: string;  
603 - /** @format date */  
604 - invoicingdate?: string;  
605 - /**  
606 - * @description  
607 - * 是否加急  
608 - */  
609 - isUrgent?: boolean;  
610 - /**  
611 - * @description  
612 - * 是否加急文本  
613 - */  
614 - isUrgentText?: string;  
615 - logicDelete?: boolean;  
616 - /**  
617 - * @description  
618 - * 买方注册地址  
619 - */  
620 - partyAAddress?: string;  
621 - /**  
622 - * @description  
623 - * 买方开户行账号  
624 - */  
625 - partyABankAccount?: string;  
626 - /**  
627 - * @description  
628 - * 买方名称  
629 - */  
630 - partyAName?: string;  
631 - /**  
632 - * @description  
633 - * 买方开户行  
634 - */  
635 - partyAOpenBank?: string;  
636 - /**  
637 - * @description  
638 - * 买方电话号码  
639 - */  
640 - partyAPhoneNumber?: string;  
641 - /**  
642 - * @description  
643 - * 买方税号  
644 - */  
645 - partyATaxid?: string;  
646 - /**  
647 - * @description  
648 - * 抬头类型  
649 - */  
650 - partyAType?: string;  
651 - partyB?: string;  
652 - /**  
653 - * @description  
654 - * 卖方注册地址  
655 - */  
656 - partyBAddress?: string;  
657 - /**  
658 - * @description  
659 - * 卖方开户行账号  
660 - */  
661 - partyBBankAccount?: string;  
662 - /**  
663 - * @description  
664 - * 卖方名称  
665 - */  
666 - partyBName?: string;  
667 - /**  
668 - * @description  
669 - * 卖方开户行  
670 - */  
671 - partyBOpenBank?: string;  
672 - /**  
673 - * @description  
674 - * 卖方电话号码  
675 - */  
676 - partyBPhoneNumber?: string;  
677 - /**  
678 - * @description  
679 - * 卖方税号  
680 - */  
681 - partyBTaxid?: string;  
682 - /**  
683 - * @description  
684 - * 发票金额  
685 - * @format double  
686 - */  
687 - price?: number;  
688 - /**  
689 - * @description  
690 - * 接收邮箱地址  
691 - */  
692 - receiveEmail?: string;  
693 - /**  
694 - * @description  
695 - * 订单来源  
696 - */  
697 - salesCodes?: Array<string>;  
698 - /**  
699 - * @description  
700 - * 订单来源  
701 - */  
702 - salesCodesText?: string;  
703 - /**  
704 - * @description  
705 - * 开票状态  
706 - */  
707 - status?: string;  
708 - /**  
709 - * @description  
710 - * 开票状态  
711 - */  
712 - statusText?: string;  
713 - /**  
714 - * @description  
715 - * 子订单id  
716 - */  
717 - subOrderIds?: Array<number>;  
718 - /**  
719 - * @description  
720 - * 关联订单  
721 - */  
722 - subOrders?: Array<SubOrder>;  
723 - /** @format double */  
724 - totalPrice?: number;  
725 - totalPriceText?: string;  
726 - /**  
727 - * @description  
728 - * 开票类型  
729 - */  
730 - type?: string;  
731 - /**  
732 - * @description  
733 - * 开票类型文本  
734 - */  
735 - typeText?: string;  
736 - /**  
737 - * @description  
738 - * 用户id  
739 - */  
740 - uid?: string;  
741 - updateByName?: string;  
742 - /** @format date-time */  
743 - updateTime?: string;  
744 -}  
745 -  
746 export interface AuditDto { 575 export interface AuditDto {
747 /** 576 /**
748 * @description 577 * @description
@@ -767,11 +596,15 @@ export interface AuditDto { @@ -767,11 +596,15 @@ export interface AuditDto {
767 export interface AuditVO { 596 export interface AuditVO {
768 /** @format int32 */ 597 /** @format int32 */
769 current?: number; 598 current?: number;
  599 + /** @format int32 */
  600 + end?: number;
770 /** @format int64 */ 601 /** @format int64 */
771 id?: number; 602 id?: number;
772 /** @format int32 */ 603 /** @format int32 */
773 pageSize?: number; 604 pageSize?: number;
774 /** @format int32 */ 605 /** @format int32 */
  606 + start?: number;
  607 + /** @format int32 */
775 status?: number; 608 status?: number;
776 /** @format int32 */ 609 /** @format int32 */
777 total?: number; 610 total?: number;
@@ -841,16 +674,32 @@ export interface CancelSendOrderDto { @@ -841,16 +674,32 @@ export interface CancelSendOrderDto {
841 export interface CaptchaMessageVO { 674 export interface CaptchaMessageVO {
842 /** @format int32 */ 675 /** @format int32 */
843 current?: number; 676 current?: number;
  677 + /** @format int32 */
  678 + end?: number;
844 imgCaptchaCode?: string; 679 imgCaptchaCode?: string;
845 imgCaptchaUuid?: string; 680 imgCaptchaUuid?: string;
846 /** @format int32 */ 681 /** @format int32 */
847 pageSize?: number; 682 pageSize?: number;
848 phone?: string; 683 phone?: string;
849 /** @format int32 */ 684 /** @format int32 */
  685 + start?: number;
  686 + /** @format int32 */
850 total?: number; 687 total?: number;
851 type?: string; 688 type?: string;
852 } 689 }
853 690
  691 +export interface CommonAuditRequest {
  692 + extend?: any;
  693 + /**
  694 + * @description
  695 + * id集合
  696 + */
  697 + ids?: Array<string>;
  698 + notes?: string;
  699 + pass?: boolean;
  700 + type?: string;
  701 +}
  702 +
854 export interface Contactperson { 703 export interface Contactperson {
855 birthday?: string; 704 birthday?: string;
856 contactAddress?: string; 705 contactAddress?: string;
@@ -1038,6 +887,8 @@ export interface DictionaryQueryVO { @@ -1038,6 +887,8 @@ export interface DictionaryQueryVO {
1038 dictCode?: string; 887 dictCode?: string;
1039 dictName?: string; 888 dictName?: string;
1040 dictValue?: string; 889 dictValue?: string;
  890 + /** @format int32 */
  891 + end?: number;
1041 /** @format int64 */ 892 /** @format int64 */
1042 id?: number; 893 id?: number;
1043 ids?: Array<number>; 894 ids?: Array<number>;
@@ -1047,6 +898,8 @@ export interface DictionaryQueryVO { @@ -1047,6 +898,8 @@ export interface DictionaryQueryVO {
1047 /** @format int32 */ 898 /** @format int32 */
1048 sort?: number; 899 sort?: number;
1049 /** @format int32 */ 900 /** @format int32 */
  901 + start?: number;
  902 + /** @format int32 */
1050 total?: number; 903 total?: number;
1051 } 904 }
1052 905
@@ -1061,6 +914,13 @@ export interface DictionaryVO { @@ -1061,6 +914,13 @@ export interface DictionaryVO {
1061 sort?: number; 914 sort?: number;
1062 } 915 }
1063 916
  917 +export interface DistrictDo {
  918 + /** @format int32 */
  919 + level?: number;
  920 + /** @format int32 */
  921 + pid?: number;
  922 +}
  923 +
1064 export interface Entry { 924 export interface Entry {
1065 bankAccount?: string; 925 bankAccount?: string;
1066 bankName?: string; 926 bankName?: string;
@@ -1177,391 +1037,18 @@ export interface InvoiceDto { @@ -1177,391 +1037,18 @@ export interface InvoiceDto {
1177 status?: string; 1037 status?: string;
1178 } 1038 }
1179 1039
1180 -export interface InvoiceRecordDto {  
1181 - applyInvoicingNotes?: string; 1040 +export interface InvoiceRecordQueryRequest {
  1041 + /** @format date */
  1042 + createTimeGe?: string;
  1043 + /** @format date */
  1044 + createTimeLe?: string;
  1045 + /** @format int32 */
  1046 + pageNumber?: number;
  1047 + /** @format int32 */
  1048 + pageSize?: number;
1182 /** 1049 /**
1183 * @description 1050 * @description
1184 - * 开票备注  
1185 - */  
1186 - comment?: string;  
1187 - /**  
1188 - * @description  
1189 - * 联系人  
1190 - */  
1191 - contacts?: string;  
1192 - /**  
1193 - * @description  
1194 - * 开票内容  
1195 - */  
1196 - content?: string;  
1197 - createByName?: string;  
1198 - /** @format date-time */  
1199 - createTime?: string;  
1200 - failureReason?: string;  
1201 - /**  
1202 - * @description  
1203 - * id  
1204 - * @format int64  
1205 - */  
1206 - id?: number;  
1207 - /**  
1208 - * @description  
1209 - * 发票地址  
1210 - */  
1211 - invoiceAddress?: string;  
1212 - /**  
1213 - * @description  
1214 - * 发票明细  
1215 - */  
1216 - invoiceDetails?: Array<InvoiceDetail>;  
1217 - /**  
1218 - * @description  
1219 - * 关联发票id  
1220 - */  
1221 - invoiceId?: string;  
1222 - /**  
1223 - * @description  
1224 - * 发票号码  
1225 - */  
1226 - invoiceNumber?: string;  
1227 - /**  
1228 - * @description  
1229 - * 开票人  
1230 - */  
1231 - invoicingPerson?: string;  
1232 - /**  
1233 - * @description  
1234 - * 开票时间  
1235 - * @format date-time  
1236 - */  
1237 - invoicingTime?: string;  
1238 - /**  
1239 - * @description  
1240 - * 开具类型  
1241 - */  
1242 - invoicingType?: string;  
1243 - /**  
1244 - * @description  
1245 - * 开具类型  
1246 - */  
1247 - invoicingTypeText?: string;  
1248 - /** @format date */  
1249 - invoicingdate?: string;  
1250 - /**  
1251 - * @description  
1252 - * 是否加急  
1253 - */  
1254 - isUrgent?: boolean;  
1255 - /**  
1256 - * @description  
1257 - * 是否加急文本  
1258 - */  
1259 - isUrgentText?: string;  
1260 - logicDelete?: boolean;  
1261 - /**  
1262 - * @description  
1263 - * 买方注册地址  
1264 - */  
1265 - partyAAddress?: string;  
1266 - /**  
1267 - * @description  
1268 - * 买方开户行账号  
1269 - */  
1270 - partyABankAccount?: string;  
1271 - /**  
1272 - * @description  
1273 - * 买方名称  
1274 - */  
1275 - partyAName?: string;  
1276 - /**  
1277 - * @description  
1278 - * 买方开户行  
1279 - */  
1280 - partyAOpenBank?: string;  
1281 - /**  
1282 - * @description  
1283 - * 买方电话号码  
1284 - */  
1285 - partyAPhoneNumber?: string;  
1286 - /**  
1287 - * @description  
1288 - * 买方税号  
1289 - */  
1290 - partyATaxid?: string;  
1291 - /**  
1292 - * @description  
1293 - * 抬头类型  
1294 - */  
1295 - partyAType?: string;  
1296 - partyB?: string;  
1297 - /**  
1298 - * @description  
1299 - * 卖方注册地址  
1300 - */  
1301 - partyBAddress?: string;  
1302 - /**  
1303 - * @description  
1304 - * 卖方开户行账号  
1305 - */  
1306 - partyBBankAccount?: string;  
1307 - /**  
1308 - * @description  
1309 - * 卖方名称  
1310 - */  
1311 - partyBName?: string;  
1312 - /**  
1313 - * @description  
1314 - * 卖方开户行  
1315 - */  
1316 - partyBOpenBank?: string;  
1317 - /**  
1318 - * @description  
1319 - * 卖方电话号码  
1320 - */  
1321 - partyBPhoneNumber?: string;  
1322 - /**  
1323 - * @description  
1324 - * 卖方税号  
1325 - */  
1326 - partyBTaxid?: string;  
1327 - /**  
1328 - * @description  
1329 - * 发票金额  
1330 - * @format double  
1331 - */  
1332 - price?: number;  
1333 - /**  
1334 - * @description  
1335 - * 接收邮箱地址  
1336 - */  
1337 - receiveEmail?: string;  
1338 - /**  
1339 - * @description  
1340 - * 订单来源  
1341 - */  
1342 - salesCodes?: Array<string>;  
1343 - /**  
1344 - * @description  
1345 - * 订单来源  
1346 - */  
1347 - salesCodesText?: string;  
1348 - /**  
1349 - * @description  
1350 - * 开票状态  
1351 - */  
1352 - status?: string;  
1353 - /**  
1354 - * @description  
1355 - * 开票状态  
1356 - */  
1357 - statusText?: string;  
1358 - /**  
1359 - * @description  
1360 - * 子订单id  
1361 - */  
1362 - subOrderIds?: Array<number>;  
1363 - /**  
1364 - * @description  
1365 - * 关联订单  
1366 - */  
1367 - subOrders?: Array<SubOrder>;  
1368 - /** @format double */  
1369 - totalPrice?: number;  
1370 - totalPriceText?: string;  
1371 - /**  
1372 - * @description  
1373 - * 开票类型  
1374 - */  
1375 - type?: string;  
1376 - /**  
1377 - * @description  
1378 - * 开票类型文本  
1379 - */  
1380 - typeText?: string;  
1381 - /**  
1382 - * @description  
1383 - * 用户id  
1384 - */  
1385 - uid?: string;  
1386 - updateByName?: string;  
1387 - /** @format date-time */  
1388 - updateTime?: string;  
1389 -}  
1390 -  
1391 -export interface InvoiceRecordQueryRequest {  
1392 - /**  
1393 - * @description  
1394 - * 联系人  
1395 - */  
1396 - contactsLike?: string;  
1397 - /** @format date-time */  
1398 - createTimeGe?: string;  
1399 - /** @format date-time */  
1400 - createTimeLe?: string;  
1401 - /** @format int32 */  
1402 - current?: number;  
1403 - /** @format int32 */  
1404 - end?: number;  
1405 - /**  
1406 - * @description  
1407 - * id  
1408 - * @format int64  
1409 - */  
1410 - id?: number;  
1411 - /**  
1412 - * @description  
1413 - * IdIn  
1414 - */  
1415 - idIn?: Array<number>;  
1416 - /**  
1417 - * @description  
1418 - * 关联发票id  
1419 - */  
1420 - invoiceId?: string;  
1421 - /**  
1422 - * @description  
1423 - * 发票号码  
1424 - */  
1425 - invoiceNumber?: string;  
1426 - /**  
1427 - * @description  
1428 - * 发票号码  
1429 - */  
1430 - invoiceNumberLike?: string;  
1431 - /**  
1432 - * @description  
1433 - * 开票时间  
1434 - * @format date-time  
1435 - */  
1436 - invoicingTimeGe?: string;  
1437 - /**  
1438 - * @description  
1439 - * 开票时间  
1440 - * @format date-time  
1441 - */  
1442 - invoicingTimeLe?: string;  
1443 - /**  
1444 - * @description  
1445 - * 开票类型  
1446 - */  
1447 - invoicingType?: string;  
1448 - /**  
1449 - * @description  
1450 - * 是否加急  
1451 - */  
1452 - isUrgent?: boolean;  
1453 - /**  
1454 - * @description  
1455 - * 订单号  
1456 - * @format int64  
1457 - */  
1458 - mainOrderId?: number;  
1459 - /**  
1460 - * @description  
1461 - * 主订单idIn  
1462 - */  
1463 - mainOrderIdIn?: Array<number>;  
1464 - /**  
1465 - * @description  
1466 - * 订单号  
1467 - */  
1468 - mainOrderIdLike?: string;  
1469 - /**  
1470 - * @description  
1471 - * 是否需要构建发票明细  
1472 - */  
1473 - needBuildDetails?: boolean;  
1474 - /**  
1475 - * @description  
1476 - * 是否需要构建发票明细  
1477 - */  
1478 - needBuildSubOrders?: boolean;  
1479 - /** @format int32 */  
1480 - pageSize?: number;  
1481 - /**  
1482 - * @description  
1483 - * 买方名称  
1484 - */  
1485 - partyANameLike?: string;  
1486 - /**  
1487 - * @description  
1488 - * 买方电话号码  
1489 - */  
1490 - partyAPhoneNumberLike?: string;  
1491 - /**  
1492 - * @description  
1493 - * 买方税号  
1494 - */  
1495 - partyATaxid?: string;  
1496 - /**  
1497 - * @description  
1498 - * 买方税号  
1499 - */  
1500 - partyATaxidLike?: string;  
1501 - partyB?: string;  
1502 - /**  
1503 - * @description  
1504 - * 卖方名称  
1505 - */  
1506 - partyBName?: string;  
1507 - /**  
1508 - * @description  
1509 - * 销售代表  
1510 - */  
1511 - salesCode?: string;  
1512 - /**  
1513 - * @description  
1514 - * 销售代表  
1515 - */  
1516 - salesCodeLike?: string;  
1517 - /** @format int32 */  
1518 - start?: number;  
1519 - /**  
1520 - * @description  
1521 - * 发票状态  
1522 - */  
1523 - status?: string;  
1524 - /**  
1525 - * @description  
1526 - * 状态非空  
1527 - */  
1528 - statusIn?: Array<string>;  
1529 - /**  
1530 - * @description  
1531 - * 状态非空  
1532 - */  
1533 - statusIsNotNull?: boolean;  
1534 - /**  
1535 - * @description  
1536 - * 状态为空  
1537 - */  
1538 - statusIsNull?: boolean;  
1539 - /**  
1540 - * @description  
1541 - * 子订单  
1542 - * @format int64  
1543 - */  
1544 - subOrderId?: number;  
1545 - /**  
1546 - * @description  
1547 - * 子订单idIn  
1548 - */  
1549 - subOrderIdIn?: Array<number>;  
1550 - /**  
1551 - * @description  
1552 - * 子订单  
1553 - */  
1554 - subOrderIdLike?: string;  
1555 - /** @format int32 */  
1556 - total?: number;  
1557 - /**  
1558 - * @description  
1559 - * 开票类型  
1560 - */  
1561 - type?: string;  
1562 - /**  
1563 - * @description  
1564 - * 用户id 1051 + * 用户id
1565 */ 1052 */
1566 uid?: string; 1053 uid?: string;
1567 } 1054 }
@@ -1581,14 +1068,10 @@ export interface ItemSaItem { @@ -1581,14 +1068,10 @@ export interface ItemSaItem {
1581 1068
1582 export interface MainOrderqueryRequest { 1069 export interface MainOrderqueryRequest {
1583 afterInvoicingStatusIsNull?: boolean; 1070 afterInvoicingStatusIsNull?: boolean;
1584 - /** @format date */  
1585 - createDateGe?: string;  
1586 - /** @format date */  
1587 - createDateLe?: string;  
1588 /** @format date-time */ 1071 /** @format date-time */
1589 - createTimeGe?: string; 1072 + invoicingTimeGe?: string;
1590 /** @format date-time */ 1073 /** @format date-time */
1591 - createTimeLe?: string; 1074 + invoicingTimeLe?: string;
1592 orderStatusNotIn?: Array<string>; 1075 orderStatusNotIn?: Array<string>;
1593 /** @format int32 */ 1076 /** @format int32 */
1594 pageNumber?: number; 1077 pageNumber?: number;
@@ -1730,10 +1213,14 @@ export interface MeasureUnitListResRow { @@ -1730,10 +1213,14 @@ export interface MeasureUnitListResRow {
1730 export interface MessageQueryDTO { 1213 export interface MessageQueryDTO {
1731 /** @format int32 */ 1214 /** @format int32 */
1732 current?: number; 1215 current?: number;
  1216 + /** @format int32 */
  1217 + end?: number;
1733 isReaded?: string; 1218 isReaded?: string;
1734 /** @format int32 */ 1219 /** @format int32 */
1735 pageSize?: number; 1220 pageSize?: number;
1736 /** @format int32 */ 1221 /** @format int32 */
  1222 + start?: number;
  1223 + /** @format int32 */
1737 total?: number; 1224 total?: number;
1738 username?: string; 1225 username?: string;
1739 } 1226 }
@@ -1769,6 +1256,8 @@ export interface OrderAuditLogQueryVO { @@ -1769,6 +1256,8 @@ export interface OrderAuditLogQueryVO {
1769 applyId?: number; 1256 applyId?: number;
1770 /** @format int32 */ 1257 /** @format int32 */
1771 current?: number; 1258 current?: number;
  1259 + /** @format int32 */
  1260 + end?: number;
1772 /** @format int64 */ 1261 /** @format int64 */
1773 id?: number; 1262 id?: number;
1774 ids?: Array<number>; 1263 ids?: Array<number>;
@@ -1778,6 +1267,8 @@ export interface OrderAuditLogQueryVO { @@ -1778,6 +1267,8 @@ export interface OrderAuditLogQueryVO {
1778 /** @format int32 */ 1267 /** @format int32 */
1779 pageSize?: number; 1268 pageSize?: number;
1780 /** @format int32 */ 1269 /** @format int32 */
  1270 + start?: number;
  1271 + /** @format int32 */
1781 total?: number; 1272 total?: number;
1782 } 1273 }
1783 1274
@@ -1812,6 +1303,8 @@ export interface OrderBaseInfoQueryVO { @@ -1812,6 +1303,8 @@ export interface OrderBaseInfoQueryVO {
1812 customerCode?: string; 1303 customerCode?: string;
1813 customerPo?: string; 1304 customerPo?: string;
1814 customerStyle?: string; 1305 customerStyle?: string;
  1306 + /** @format int32 */
  1307 + end?: number;
1815 /** @format int64 */ 1308 /** @format int64 */
1816 id?: number; 1309 id?: number;
1817 ids?: Array<number>; 1310 ids?: Array<number>;
@@ -1833,6 +1326,8 @@ export interface OrderBaseInfoQueryVO { @@ -1833,6 +1326,8 @@ export interface OrderBaseInfoQueryVO {
1833 productionDepartmentConsignTime?: string; 1326 productionDepartmentConsignTime?: string;
1834 projectNo?: string; 1327 projectNo?: string;
1835 /** @format int32 */ 1328 /** @format int32 */
  1329 + start?: number;
  1330 + /** @format int32 */
1836 total?: number; 1331 total?: number;
1837 } 1332 }
1838 1333
@@ -1893,6 +1388,8 @@ export interface OrderFieldLockApplyQueryVO { @@ -1893,6 +1388,8 @@ export interface OrderFieldLockApplyQueryVO {
1893 auditUserId?: number; 1388 auditUserId?: number;
1894 /** @format int32 */ 1389 /** @format int32 */
1895 current?: number; 1390 current?: number;
  1391 + /** @format int32 */
  1392 + end?: number;
1896 fields?: string; 1393 fields?: string;
1897 /** @format int64 */ 1394 /** @format int64 */
1898 id?: number; 1395 id?: number;
@@ -1902,6 +1399,8 @@ export interface OrderFieldLockApplyQueryVO { @@ -1902,6 +1399,8 @@ export interface OrderFieldLockApplyQueryVO {
1902 /** @format int32 */ 1399 /** @format int32 */
1903 pageSize?: number; 1400 pageSize?: number;
1904 /** @format int32 */ 1401 /** @format int32 */
  1402 + start?: number;
  1403 + /** @format int32 */
1905 status?: number; 1404 status?: number;
1906 statusList?: Array<number>; 1405 statusList?: Array<number>;
1907 /** @format int32 */ 1406 /** @format int32 */
@@ -1950,6 +1449,8 @@ export interface OrderInspectionStageVO { @@ -1950,6 +1449,8 @@ export interface OrderInspectionStageVO {
1950 export interface OrderOptLogQueryVO { 1449 export interface OrderOptLogQueryVO {
1951 /** @format int32 */ 1450 /** @format int32 */
1952 current?: number; 1451 current?: number;
  1452 + /** @format int32 */
  1453 + end?: number;
1953 /** @format int64 */ 1454 /** @format int64 */
1954 id?: number; 1455 id?: number;
1955 ids?: Array<number>; 1456 ids?: Array<number>;
@@ -1958,6 +1459,8 @@ export interface OrderOptLogQueryVO { @@ -1958,6 +1459,8 @@ export interface OrderOptLogQueryVO {
1958 /** @format int32 */ 1459 /** @format int32 */
1959 pageSize?: number; 1460 pageSize?: number;
1960 /** @format int32 */ 1461 /** @format int32 */
  1462 + start?: number;
  1463 + /** @format int32 */
1961 total?: number; 1464 total?: number;
1962 } 1465 }
1963 1466
@@ -2263,6 +1766,8 @@ export interface QueryBankStatementDto { @@ -2263,6 +1766,8 @@ export interface QueryBankStatementDto {
2263 collectionDatetimeEnd?: string; 1766 collectionDatetimeEnd?: string;
2264 /** @format int32 */ 1767 /** @format int32 */
2265 current?: number; 1768 current?: number;
  1769 + /** @format int32 */
  1770 + end?: number;
2266 /** @format int64 */ 1771 /** @format int64 */
2267 id?: number; 1772 id?: number;
2268 /** @format int32 */ 1773 /** @format int32 */
@@ -2284,6 +1789,8 @@ export interface QueryBankStatementDto { @@ -2284,6 +1789,8 @@ export interface QueryBankStatementDto {
2284 remark?: string; 1789 remark?: string;
2285 remarkNote?: string; 1790 remarkNote?: string;
2286 serialNumber?: string; 1791 serialNumber?: string;
  1792 + /** @format int32 */
  1793 + start?: number;
2287 status?: string; 1794 status?: string;
2288 /** @format int32 */ 1795 /** @format int32 */
2289 total?: number; 1796 total?: number;
@@ -2329,240 +1836,368 @@ export interface QueryInvoiceDetailDto { @@ -2329,240 +1836,368 @@ export interface QueryInvoiceDetailDto {
2329 invoiceId?: number; 1836 invoiceId?: number;
2330 } 1837 }
2331 1838
2332 -export interface QueryInvoiceProjectDto {  
2333 - /** @format int32 */  
2334 - current?: number;  
2335 - /** @format int32 */  
2336 - end?: number;  
2337 - nameLike?: string;  
2338 - /** @format int32 */  
2339 - pageSize?: number;  
2340 - /** @format int32 */  
2341 - start?: number;  
2342 - /** @format int32 */  
2343 - total?: number; 1839 +export interface QueryMainOrderDto {
  1840 + /**
  1841 + * @description
  1842 + * 收货人姓名
  1843 + */
  1844 + customerName?: string;
2344 } 1845 }
2345 1846
2346 -export interface QueryInvoiceRecordDto { 1847 +export interface QueryReportFormsDto {
2347 /** 1848 /**
2348 * @description 1849 * @description
2349 - * 联系人 1850 + * 是否包含实验设备事业部
2350 */ 1851 */
2351 - contactsLike?: string;  
2352 - /** @format date-time */  
2353 - createTimeGe?: string;  
2354 - /** @format date-time */  
2355 - createTimeLe?: string;  
2356 - /** @format int32 */  
2357 - current?: number;  
2358 - /** @format int32 */  
2359 - end?: number; 1852 + includeExperimentalEquipment?: boolean;
2360 /** 1853 /**
2361 * @description 1854 * @description
2362 - * id 1855 + * 最大金额
  1856 + * @example
  1857 + * 2343
  1858 + */
  1859 + maxAccount?: number;
  1860 + /**
  1861 + * @description
  1862 + * 所属部门
  1863 + */
  1864 + productBelongBusiness?: string;
  1865 + /**
  1866 + * @description
  1867 + * 销售代表
  1868 + */
  1869 + salesCode?: Array<string>;
  1870 + /**
  1871 + * @description
  1872 + * 统计方式
  1873 + */
  1874 + statisticsMethod?: string;
  1875 +}
  1876 +
  1877 +export interface ReissueInvoiceDto {
  1878 + /** @format int64 */
  1879 + invoiceId?: number;
  1880 + notes?: string;
  1881 + purchaser?: string;
  1882 +}
  1883 +
  1884 +export interface ResearchGroupAccountAddRequest {
  1885 + /**
  1886 + * @description
  1887 + * 关联的账号id
  1888 + * @format int64
  1889 + */
  1890 + accountId?: number;
  1891 + /**
  1892 + * @description
  1893 + * 关联的账号名称
  1894 + */
  1895 + accountName?: string;
  1896 + /**
  1897 + * @description
  1898 + * 关联的账号手机号
  1899 + */
  1900 + accountPhone?: string;
  1901 + /**
  1902 + * @description
  1903 + * 课题组id
  1904 + * @format int64
  1905 + */
  1906 + groupId?: number;
  1907 +}
  1908 +
  1909 +export interface ResearchGroupAccountEditRequest {
  1910 + /**
  1911 + * @description
  1912 + * 关联的账号id
  1913 + * @format int64
  1914 + */
  1915 + accountId?: number;
  1916 + /**
  1917 + * @description
  1918 + * 关联的账号名称
  1919 + */
  1920 + accountName?: string;
  1921 + /**
  1922 + * @description
  1923 + * 关联的账号手机号
  1924 + */
  1925 + accountPhone?: string;
  1926 + /**
  1927 + * @description
  1928 + * 课题组id
  1929 + * @format int64
  1930 + */
  1931 + groupId?: number;
  1932 + /**
  1933 + * @description
  1934 + * 主键id
2363 * @format int64 1935 * @format int64
2364 */ 1936 */
2365 id?: number; 1937 id?: number;
  1938 +}
  1939 +
  1940 +export interface ResearchGroupAddRequest {
  1941 + accounts?: Array<ResearchGroupAccountAddRequest>;
2366 /** 1942 /**
2367 * @description 1943 * @description
2368 - * IdIn 1944 + * 课题组名称
2369 */ 1945 */
2370 - idIn?: Array<number>; 1946 + group?: string;
2371 /** 1947 /**
2372 * @description 1948 * @description
2373 - * 关联发票id 1949 + * 课题组负责人
2374 */ 1950 */
2375 - invoiceId?: string; 1951 + leader?: string;
  1952 + members?: Array<ResearchGroupMemberAddRequest>;
  1953 +}
  1954 +
  1955 +export interface ResearchGroupDeleteRequest {
2376 /** 1956 /**
2377 * @description 1957 * @description
2378 - * 发票号码 1958 + * 主键id
2379 */ 1959 */
2380 - invoiceNumber?: string; 1960 + ids?: Array<number>;
  1961 +}
  1962 +
  1963 +export interface ResearchGroupDetailRequest {
2381 /** 1964 /**
2382 * @description 1965 * @description
2383 - * 发票号码 1966 + * 主键id
  1967 + * @format int64
2384 */ 1968 */
2385 - invoiceNumberLike?: string; 1969 + id?: number;
  1970 +}
  1971 +
  1972 +export interface ResearchGroupEditRequest {
2386 /** 1973 /**
2387 * @description 1974 * @description
2388 - * 开票时间  
2389 - * @format date-time 1975 + * 课题组预存账号
2390 */ 1976 */
2391 - invoicingTimeGe?: string; 1977 + accounts?: Array<ResearchGroupAccountEditRequest>;
2392 /** 1978 /**
2393 * @description 1979 * @description
2394 - * 开票时间  
2395 - * @format date-time 1980 + * 课题组名称
2396 */ 1981 */
2397 - invoicingTimeLe?: string; 1982 + group?: string;
  1983 + /**
  1984 + * @description
  1985 + * 主键id
  1986 + * @format int64
  1987 + */
  1988 + id?: number;
  1989 + /**
  1990 + * @description
  1991 + * 课题组负责人
  1992 + */
  1993 + leader?: string;
  1994 + /**
  1995 + * @description
  1996 + * 课题组成员集合
  1997 + */
  1998 + members?: Array<ResearchGroupMemberEditRequest>;
  1999 +}
  2000 +
  2001 +export interface ResearchGroupListRequest {
2398 /** 2002 /**
2399 * @description 2003 * @description
2400 - * 开票类型 2004 + * 预存账号手机号
2401 */ 2005 */
2402 - invoicingType?: string; 2006 + accountPhone?: string;
  2007 + /** @format int32 */
  2008 + current?: number;
  2009 + /** @format int32 */
  2010 + end?: number;
2403 /** 2011 /**
2404 * @description 2012 * @description
2405 - * 是否加急 2013 + * 课题组名称
2406 */ 2014 */
2407 - isUrgent?: boolean; 2015 + groupName?: string;
2408 /** 2016 /**
2409 * @description 2017 * @description
2410 - * 订单号  
2411 - * @format int64 2018 + * 课题组负责人
2412 */ 2019 */
2413 - mainOrderId?: number; 2020 + leaderName?: string;
2414 /** 2021 /**
2415 * @description 2022 * @description
2416 - * 主订单idIn 2023 + * 课题组成员名称
2417 */ 2024 */
2418 - mainOrderIdIn?: Array<number>; 2025 + memberName?: string;
2419 /** 2026 /**
2420 * @description 2027 * @description
2421 - * 订单 2028 + * 课题组成员手机
2422 */ 2029 */
2423 - mainOrderIdLike?: string; 2030 + memberPhone?: string;
  2031 + /** @format int32 */
  2032 + pageSize?: number;
  2033 + /** @format int32 */
  2034 + start?: number;
  2035 + /** @format int32 */
  2036 + total?: number;
  2037 +}
  2038 +
  2039 +export interface ResearchGroupMemberAddRequest {
2424 /** 2040 /**
2425 * @description 2041 * @description
2426 - * 是否需要构建发票明细 2042 + * 课题组ID
  2043 + * @format int64
2427 */ 2044 */
2428 - needBuildDetails?: boolean; 2045 + groupId?: number;
2429 /** 2046 /**
2430 * @description 2047 * @description
2431 - * 是否需要构建发票明细 2048 + * 成员名称
2432 */ 2049 */
2433 - needBuildSubOrders?: boolean;  
2434 - /** @format int32 */  
2435 - pageSize?: number; 2050 + memberName?: string;
2436 /** 2051 /**
2437 * @description 2052 * @description
2438 - * 买方名称 2053 + * 成员手机号
2439 */ 2054 */
2440 - partyANameLike?: string; 2055 + memberPhone?: string;
  2056 +}
  2057 +
  2058 +export interface ResearchGroupMemberEditRequest {
2441 /** 2059 /**
2442 * @description 2060 * @description
2443 - * 买方电话号码 2061 + * 课题组ID
  2062 + * @format int64
2444 */ 2063 */
2445 - partyAPhoneNumberLike?: string; 2064 + groupId?: number;
2446 /** 2065 /**
2447 * @description 2066 * @description
2448 - * 买方税号 2067 + * 主键id
  2068 + * @format int64
2449 */ 2069 */
2450 - partyATaxid?: string; 2070 + id?: number;
2451 /** 2071 /**
2452 * @description 2072 * @description
2453 - * 买方税号 2073 + * 成员名称
2454 */ 2074 */
2455 - partyATaxidLike?: string;  
2456 - partyB?: string; 2075 + memberName?: string;
2457 /** 2076 /**
2458 * @description 2077 * @description
2459 - * 卖方名称 2078 + * 成员手机号
2460 */ 2079 */
2461 - partyBName?: string; 2080 + memberPhone?: string;
  2081 +}
  2082 +
  2083 +export interface ResearchGroupMemberRequestAddRequest {
2462 /** 2084 /**
2463 * @description 2085 * @description
2464 - * 销售代表 2086 + * 课题组ID
  2087 + * @format int64
2465 */ 2088 */
2466 - salesCode?: string; 2089 + groupId?: number;
2467 /** 2090 /**
2468 * @description 2091 * @description
2469 - * 销售代表 2092 + * 课题组名称
2470 */ 2093 */
2471 - salesCodeLike?: string;  
2472 - /** @format int32 */  
2473 - start?: number; 2094 + groupName?: string;
  2095 + members?: Array<ResearchGroupMemberAddRequest>;
2474 /** 2096 /**
2475 * @description 2097 * @description
2476 - * 发票状态 2098 + * 申请备注
2477 */ 2099 */
2478 - status?: string; 2100 + requestNotes?: string;
  2101 +}
  2102 +
  2103 +export interface ResearchGroupMemberRequestDeleteRequest {
2479 /** 2104 /**
2480 * @description 2105 * @description
2481 - * 状态非空 2106 + * 主键id
2482 */ 2107 */
2483 - statusIn?: Array<string>; 2108 + ids?: Array<number>;
  2109 +}
  2110 +
  2111 +export interface ResearchGroupMemberRequestDetailRequest {
2484 /** 2112 /**
2485 * @description 2113 * @description
2486 - * 状态非空 2114 + * 主键id
  2115 + * @format int64
2487 */ 2116 */
2488 - statusIsNotNull?: boolean; 2117 + id?: number;
  2118 +}
  2119 +
  2120 +export interface ResearchGroupMemberRequestEditRequest {
2489 /** 2121 /**
2490 * @description 2122 * @description
2491 - * 状态为空 2123 + * 课题组ID
  2124 + * @format int64
2492 */ 2125 */
2493 - statusIsNull?: boolean; 2126 + groupId?: number;
2494 /** 2127 /**
2495 * @description 2128 * @description
2496 - * 子订单  
2497 - * @format int64 2129 + * 课题组名称
2498 */ 2130 */
2499 - subOrderId?: number; 2131 + groupName?: string;
2500 /** 2132 /**
2501 * @description 2133 * @description
2502 - * 子订单idIn 2134 + * 主键id
  2135 + * @format int64
2503 */ 2136 */
2504 - subOrderIdIn?: Array<number>; 2137 + id?: number;
2505 /** 2138 /**
2506 * @description 2139 * @description
2507 - * 子订单 2140 + * 成员名称
2508 */ 2141 */
2509 - subOrderIdLike?: string;  
2510 - /** @format int32 */  
2511 - total?: number; 2142 + memberName?: string;
2512 /** 2143 /**
2513 * @description 2144 * @description
2514 - * 开票类型 2145 + * 成员手机号
2515 */ 2146 */
2516 - type?: string; 2147 + memberPhone?: string;
2517 /** 2148 /**
2518 * @description 2149 * @description
2519 - * 用户id 2150 + * 申请备注
2520 */ 2151 */
2521 - uid?: string; 2152 + requestNotes?: string;
2522 } 2153 }
2523 2154
2524 -export interface QueryMainOrderDto { 2155 +export interface ResearchGroupMemberRequestsRequest {
2525 /** 2156 /**
2526 * @description 2157 * @description
2527 - * 收货人姓名 2158 + * 审核备注
2528 */ 2159 */
2529 - customerName?: string;  
2530 -}  
2531 -  
2532 -export interface QueryReportFormsDto { 2160 + auditNotes?: string;
2533 /** 2161 /**
2534 * @description 2162 * @description
2535 - * 是否包含实验设备事业部 2163 + * 审核状态
2536 */ 2164 */
2537 - includeExperimentalEquipment?: boolean; 2165 + auditStatus?: string;
2538 /** 2166 /**
2539 * @description 2167 * @description
2540 - * 最大金额  
2541 - * @example  
2542 - * 2343 2168 + * 创建人
2543 */ 2169 */
2544 - maxAccount?: number; 2170 + createByName?: string;
  2171 + /** @format int32 */
  2172 + current?: number;
  2173 + /** @format int32 */
  2174 + end?: number;
2545 /** 2175 /**
2546 * @description 2176 * @description
2547 - * 所属部门 2177 + * 课题组名称
2548 */ 2178 */
2549 - productBelongBusiness?: string; 2179 + groupName?: string;
2550 /** 2180 /**
2551 * @description 2181 * @description
2552 - * 销售代表 2182 + * 成员名称
2553 */ 2183 */
2554 - salesCode?: string; 2184 + memberName?: string;
2555 /** 2185 /**
2556 * @description 2186 * @description
2557 - * 统计方式 2187 + * 成员手机号
2558 */ 2188 */
2559 - statisticsMethod?: string;  
2560 -}  
2561 -  
2562 -export interface ReissueInvoiceDto {  
2563 - /** @format int64 */  
2564 - invoiceId?: number;  
2565 - notes?: string; 2189 + memberPhone?: string;
  2190 + /** @format int32 */
  2191 + pageSize?: number;
  2192 + /**
  2193 + * @description
  2194 + * 申请备注
  2195 + */
  2196 + requestNotes?: string;
  2197 + /** @format int32 */
  2198 + start?: number;
  2199 + /** @format int32 */
  2200 + total?: number;
2566 } 2201 }
2567 2202
2568 export interface ResetPwdVO { 2203 export interface ResetPwdVO {
@@ -2604,134 +2239,14 @@ export interface ShippingWarehouseChangeDto { @@ -2604,134 +2239,14 @@ export interface ShippingWarehouseChangeDto {
2604 shippingWarehouse?: string; 2239 shippingWarehouse?: string;
2605 } 2240 }
2606 2241
2607 -export interface SubOrder {  
2608 - afterInvoicingStatus?: string;  
2609 - /** @format date-time */  
2610 - afterInvoicingStatusUpdateTime?: string;  
2611 - afterSalesAnnex?: string;  
2612 - afterSalesNotes?: string;  
2613 - afterSalesPlan?: string;  
2614 - annex?: string;  
2615 - applyInvoicingAnnex?: string;  
2616 - applyInvoicingNotes?: string;  
2617 - /** @format date-time */  
2618 - applyTime?: string;  
2619 - /** @format int32 */  
2620 - attrId?: number;  
2621 - checkNotes?: string;  
2622 - /** @format date-time */  
2623 - collectMoneyTime?: string;  
2624 - confirmDeliverNotes?: string;  
2625 - confirmReissueNotes?: string;  
2626 - createByName?: string;  
2627 - /** @format date-time */  
2628 - createTime?: string;  
2629 - /** @format date-time */  
2630 - deadline?: string;  
2631 - ext?: string;  
2632 - extendField?: string;  
2633 - /** @format date-time */  
2634 - financialReceiptIssuanceTime?: string;  
2635 - fullPaymentStatus?: string;  
2636 - /** @format double */  
2637 - goodsVolume?: number;  
2638 - /** @format double */  
2639 - goodsWeight?: number;  
2640 - /** @format int64 */  
2641 - id?: number;  
2642 - image?: string;  
2643 - invoiceApplyUsername?: string;  
2644 - invoiceInformation?: string;  
2645 - /** @format int64 */  
2646 - invoiceRecordId?: number;  
2647 - invoicingCheckAnnex?: string;  
2648 - invoicingNotes?: string;  
2649 - invoicingStatus?: string;  
2650 - /** @format date-time */  
2651 - invoicingTime?: string;  
2652 - invoicingUrgentCause?: string;  
2653 - isUrgent?: boolean;  
2654 - kingdeeErrorMessage?: string;  
2655 - logicDelete?: boolean;  
2656 - logisticsMethod?: string;  
2657 - logisticsNotes?: string;  
2658 - /** @format int64 */  
2659 - mainOrderAmountProportion?: number;  
2660 - /** @format int64 */  
2661 - mainOrderId?: number;  
2662 - materialId?: string;  
2663 - modified?: boolean;  
2664 - modifiedAuditNotes?: string;  
2665 - modifiedAuditStatus?: string;  
2666 - modifiedOptFlag?: string;  
2667 - nextOrderStatus?: string;  
2668 - notes?: string;  
2669 - orderStatus?: string;  
2670 - orderStatusBeforeModify?: string;  
2671 - /** @format date-time */  
2672 - orderStatusUpdateTime?: string;  
2673 - /** @format int32 */  
2674 - packageNumber?: number;  
2675 - parameters?: string;  
2676 - paymentChannel?: string;  
2677 - paymentMethod?: string;  
2678 - paymentReceiptAnnex?: string;  
2679 - paymentReceiptNotes?: string;  
2680 - paymentReceiptStatus?: string;  
2681 - paymentStatus?: string;  
2682 - paymentTransactionId?: string;  
2683 - postAuditNotes?: string;  
2684 - postAuditStatus?: string;  
2685 - /** @format date-time */  
2686 - postAuditStatusUpdateTime?: string;  
2687 - preAfterInvoicingStatus?: string;  
2688 - procureConvertNotes?: string;  
2689 - procureNotes?: string;  
2690 - /** @format date-time */  
2691 - procureOrderDatetime?: string;  
2692 - procureOrderStatus?: string;  
2693 - productBelongBusiness?: string;  
2694 - productCode?: string;  
2695 - /** @format int32 */  
2696 - productId?: number;  
2697 - productName?: string;  
2698 - /** @format int64 */  
2699 - productPrice?: number;  
2700 - /** @format date-time */  
2701 - productionEndTime?: string;  
2702 - /** @format date-time */  
2703 - productionStartTime?: string;  
2704 - productionTimePushStatus?: string;  
2705 - /** @format int32 */  
2706 - quantity?: number;  
2707 - receivingCompany?: string;  
2708 - reissueNotes?: string;  
2709 - serialNumber?: string;  
2710 - shippingWarehouse?: string;  
2711 - /** @format int64 */  
2712 - subOrderPayment?: number;  
2713 - supplierName?: string;  
2714 - supplierNotes?: string;  
2715 - /** @format int64 */  
2716 - totalPayment?: number;  
2717 - /** @format int32 */  
2718 - uid?: number;  
2719 - unit?: string;  
2720 - unitId?: string;  
2721 - updateByName?: string;  
2722 - /** @format date-time */  
2723 - updateTime?: string;  
2724 - urgentInvoiceAuditNotes?: string;  
2725 - /** @format int32 */  
2726 - version?: number;  
2727 -}  
2728 -  
2729 export interface SysLogQueryVO { 2242 export interface SysLogQueryVO {
2730 address?: string; 2243 address?: string;
2731 browser?: string; 2244 browser?: string;
2732 /** @format int32 */ 2245 /** @format int32 */
2733 current?: number; 2246 current?: number;
2734 description?: string; 2247 description?: string;
  2248 + /** @format int32 */
  2249 + end?: number;
2735 exceptionDetail?: string; 2250 exceptionDetail?: string;
2736 /** @format int64 */ 2251 /** @format int64 */
2737 id?: number; 2252 id?: number;
@@ -2742,6 +2257,8 @@ export interface SysLogQueryVO { @@ -2742,6 +2257,8 @@ export interface SysLogQueryVO {
2742 pageSize?: number; 2257 pageSize?: number;
2743 params?: string; 2258 params?: string;
2744 requestIp?: string; 2259 requestIp?: string;
  2260 + /** @format int32 */
  2261 + start?: number;
2745 /** @format int64 */ 2262 /** @format int64 */
2746 time?: number; 2263 time?: number;
2747 /** @format int32 */ 2264 /** @format int32 */
@@ -2905,8 +2422,12 @@ export interface UserCenterInfoRequest { @@ -2905,8 +2422,12 @@ export interface UserCenterInfoRequest {
2905 /** @format int32 */ 2422 /** @format int32 */
2906 current?: number; 2423 current?: number;
2907 /** @format int32 */ 2424 /** @format int32 */
  2425 + end?: number;
  2426 + /** @format int32 */
2908 pageSize?: number; 2427 pageSize?: number;
2909 /** @format int32 */ 2428 /** @format int32 */
  2429 + start?: number;
  2430 + /** @format int32 */
2910 total?: number; 2431 total?: number;
2911 /** 2432 /**
2912 * @description 2433 * @description
@@ -2926,6 +2447,8 @@ export interface UserDetailRequest { @@ -2926,6 +2447,8 @@ export interface UserDetailRequest {
2926 /** @format int32 */ 2447 /** @format int32 */
2927 current?: number; 2448 current?: number;
2928 /** @format int32 */ 2449 /** @format int32 */
  2450 + end?: number;
  2451 + /** @format int32 */
2929 pageSize?: number; 2452 pageSize?: number;
2930 /** 2453 /**
2931 * @description 2454 * @description
@@ -2933,6 +2456,8 @@ export interface UserDetailRequest { @@ -2933,6 +2456,8 @@ export interface UserDetailRequest {
2933 */ 2456 */
2934 phone?: string; 2457 phone?: string;
2935 /** @format int32 */ 2458 /** @format int32 */
  2459 + start?: number;
  2460 + /** @format int32 */
2936 total?: number; 2461 total?: number;
2937 /** 2462 /**
2938 * @description 2463 * @description
@@ -2949,6 +2474,8 @@ export interface UserListRequest { @@ -2949,6 +2474,8 @@ export interface UserListRequest {
2949 * 创建日期开始时间 2474 * 创建日期开始时间
2950 */ 2475 */
2951 dateLimit?: string; 2476 dateLimit?: string;
  2477 + /** @format int32 */
  2478 + end?: number;
2952 /** 2479 /**
2953 * @description 2480 * @description
2954 * 单位 2481 * 单位
@@ -2973,10 +2500,23 @@ export interface UserListRequest { @@ -2973,10 +2500,23 @@ export interface UserListRequest {
2973 phone?: string; 2500 phone?: string;
2974 /** 2501 /**
2975 * @description 2502 * @description
  2503 + * phones
  2504 + */
  2505 + phones?: Array<string>;
  2506 + /**
  2507 + * @description
  2508 + * 内部订单系统课题组id
  2509 + * @format int64
  2510 + */
  2511 + researchGroupId?: number;
  2512 + /**
  2513 + * @description
2976 * salesCode 2514 * salesCode
2977 */ 2515 */
2978 salesCode?: string; 2516 salesCode?: string;
2979 /** @format int32 */ 2517 /** @format int32 */
  2518 + start?: number;
  2519 + /** @format int32 */
2980 total?: number; 2520 total?: number;
2981 /** 2521 /**
2982 * @description 2522 * @description
@@ -2986,11 +2526,23 @@ export interface UserListRequest { @@ -2986,11 +2526,23 @@ export interface UserListRequest {
2986 uid?: number; 2526 uid?: number;
2987 /** 2527 /**
2988 * @description 2528 * @description
  2529 + * ids
  2530 + */
  2531 + uids?: Array<number>;
  2532 + /**
  2533 + * @description
2989 * 用户名 2534 * 用户名
2990 */ 2535 */
2991 username?: string; 2536 username?: string;
2992 } 2537 }
2993 2538
  2539 +export interface UserNowMoneyCheckRequest {
  2540 + phone?: string;
  2541 + subPrice?: number;
  2542 + /** @format int64 */
  2543 + uid?: number;
  2544 +}
  2545 +
2994 export interface View { 2546 export interface View {
2995 contentType?: string; 2547 contentType?: string;
2996 } 2548 }
@@ -3039,44 +2591,6 @@ export interface TsgFile { @@ -3039,44 +2591,6 @@ export interface TsgFile {
3039 writable?: boolean; 2591 writable?: boolean;
3040 } 2592 }
3041 2593
3042 -export interface InvoiceDetail {  
3043 - /** @format int64 */  
3044 - id?: number;  
3045 - /**  
3046 - * @description  
3047 - * 发票id  
3048 - * @format int64  
3049 - */  
3050 - invoiceRecordId?: number;  
3051 - /**  
3052 - * @description  
3053 - * 单价  
3054 - * @format double  
3055 - */  
3056 - price?: number;  
3057 - projectName?: string;  
3058 - /** @format double */  
3059 - quantity?: number;  
3060 - /**  
3061 - * @description  
3062 - * 型号  
3063 - */  
3064 - specification?: string;  
3065 - /** @format int64 */  
3066 - subOrderId?: number;  
3067 - /** @format double */  
3068 - taxPrice?: number;  
3069 - /** @format double */  
3070 - taxRate?: number;  
3071 - /**  
3072 - * @description  
3073 - * 总价  
3074 - * @format double  
3075 - */  
3076 - totalPrice?: number;  
3077 - unit?: string;  
3078 -}  
3079 -  
3080 export interface SalesRechargePrepaymentAuditRequest { 2594 export interface SalesRechargePrepaymentAuditRequest {
3081 /** 2595 /**
3082 * @description 2596 * @description
@@ -3093,6 +2607,11 @@ export interface SalesRechargePrepaymentAuditRequest { @@ -3093,6 +2607,11 @@ export interface SalesRechargePrepaymentAuditRequest {
3093 * 是否通过 2607 * 是否通过
3094 */ 2608 */
3095 pass?: boolean; 2609 pass?: boolean;
  2610 + /**
  2611 + * @description
  2612 + * 手机号
  2613 + */
  2614 + phone?: string;
3096 } 2615 }
3097 2616
3098 export interface SalesRechargePrepaymentCreateRequest { 2617 export interface SalesRechargePrepaymentCreateRequest {
@@ -3198,6 +2717,8 @@ export interface SalesRechargePrepaymentRequest { @@ -3198,6 +2717,8 @@ export interface SalesRechargePrepaymentRequest {
3198 * @format int32 2717 * @format int32
3199 */ 2718 */
3200 enableFlag?: number; 2719 enableFlag?: number;
  2720 + /** @format int32 */
  2721 + end?: number;
3201 /** 2722 /**
3202 * @description 2723 * @description
3203 * id 2724 * id
@@ -3242,6 +2763,8 @@ export interface SalesRechargePrepaymentRequest { @@ -3242,6 +2763,8 @@ export interface SalesRechargePrepaymentRequest {
3242 * 销售代表 2763 * 销售代表
3243 */ 2764 */
3244 salesCode?: string; 2765 salesCode?: string;
  2766 + /** @format int32 */
  2767 + start?: number;
3245 /** 2768 /**
3246 * @description 2769 * @description
3247 * 状态 2770 * 状态
@@ -3420,6 +2943,38 @@ export interface TsgURL { @@ -3420,6 +2943,38 @@ export interface TsgURL {
3420 userInfo?: string; 2943 userInfo?: string;
3421 } 2944 }
3422 2945
  2946 +/**
  2947 + * @description
  2948 + * 保存用户地址请求对象
  2949 + */
  2950 +export interface UserAddressSaveRequest {
  2951 + /**
  2952 + * @description
  2953 + * 联系电话
  2954 + */
  2955 + customerContactNumber: string;
  2956 + /**
  2957 + * @description
  2958 + * 客户姓名
  2959 + */
  2960 + customerName: string;
  2961 + /**
  2962 + * @description
  2963 + * 收货地址
  2964 + */
  2965 + customerShippingAddress?: string;
  2966 + /**
  2967 + * @description
  2968 + * 客户单位
  2969 + */
  2970 + institution?: string;
  2971 + /**
  2972 + * @description
  2973 + * 课题组老师
  2974 + */
  2975 + institutionContactName?: string;
  2976 +}
  2977 +
3423 export interface UploadPaymentReceiptDTO { 2978 export interface UploadPaymentReceiptDTO {
3424 /** 2979 /**
3425 * @description 2980 * @description
src/services/request.ts
@@ -29,12 +29,12 @@ import type { @@ -29,12 +29,12 @@ import type {
29 ApiOrderEvaluatedRequest, 29 ApiOrderEvaluatedRequest,
30 ApiQueryOrderDetailRequest, 30 ApiQueryOrderDetailRequest,
31 ApiQueryOrderStatusCountsRequest, 31 ApiQueryOrderStatusCountsRequest,
32 - ApplyInvoiceDto,  
33 AuditDto, 32 AuditDto,
34 AuditVO, 33 AuditVO,
35 CancelInvoiceAndBankStatementDto, 34 CancelInvoiceAndBankStatementDto,
36 CancelSendOrderDto, 35 CancelSendOrderDto,
37 CaptchaMessageVO, 36 CaptchaMessageVO,
  37 + CommonAuditRequest,
38 CustomFieldRes, 38 CustomFieldRes,
39 CustomerCustomerListReq, 39 CustomerCustomerListReq,
40 CustomerDetailDto, 40 CustomerDetailDto,
@@ -43,10 +43,10 @@ import type { @@ -43,10 +43,10 @@ import type {
43 CustomerSaveReq, 43 CustomerSaveReq,
44 DictionaryQueryVO, 44 DictionaryQueryVO,
45 DictionaryVO, 45 DictionaryVO,
  46 + DistrictDo,
46 Dto, 47 Dto,
47 InventoryMaterialStockReq, 48 InventoryMaterialStockReq,
48 InvoiceDto, 49 InvoiceDto,
49 - InvoiceRecordDto,  
50 InvoiceRecordQueryRequest, 50 InvoiceRecordQueryRequest,
51 MainOrderqueryRequest, 51 MainOrderqueryRequest,
52 MaterialListReply, 52 MaterialListReply,
@@ -81,11 +81,19 @@ import type { @@ -81,11 +81,19 @@ import type {
81 QueryCustomerInformationDto, 81 QueryCustomerInformationDto,
82 QueryHistoryRecordDto, 82 QueryHistoryRecordDto,
83 QueryInvoiceDetailDto, 83 QueryInvoiceDetailDto,
84 - QueryInvoiceProjectDto,  
85 - QueryInvoiceRecordDto,  
86 QueryMainOrderDto, 84 QueryMainOrderDto,
87 QueryReportFormsDto, 85 QueryReportFormsDto,
88 ReissueInvoiceDto, 86 ReissueInvoiceDto,
  87 + ResearchGroupAddRequest,
  88 + ResearchGroupDeleteRequest,
  89 + ResearchGroupDetailRequest,
  90 + ResearchGroupEditRequest,
  91 + ResearchGroupListRequest,
  92 + ResearchGroupMemberRequestAddRequest,
  93 + ResearchGroupMemberRequestDeleteRequest,
  94 + ResearchGroupMemberRequestDetailRequest,
  95 + ResearchGroupMemberRequestEditRequest,
  96 + ResearchGroupMemberRequestsRequest,
89 ResetPwdVO, 97 ResetPwdVO,
90 SalOrderSaveDto, 98 SalOrderSaveDto,
91 SalesRechargePrepaymentAuditRequest, 99 SalesRechargePrepaymentAuditRequest,
@@ -107,9 +115,11 @@ import type { @@ -107,9 +115,11 @@ import type {
107 UpdatePwdVO, 115 UpdatePwdVO,
108 UploadPaymentReceiptDTO, 116 UploadPaymentReceiptDTO,
109 UserAddressListRequest, 117 UserAddressListRequest,
  118 + UserAddressSaveRequest,
110 UserCenterInfoRequest, 119 UserCenterInfoRequest,
111 UserDetailRequest, 120 UserDetailRequest,
112 UserListRequest, 121 UserListRequest,
  122 + UserNowMoneyCheckRequest,
113 } from './definition'; 123 } from './definition';
114 124
115 /** @description request parameter type for postApiLocalStorageUpload */ 125 /** @description request parameter type for postApiLocalStorageUpload */
@@ -1472,6 +1482,78 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() =&gt; { @@ -1472,6 +1482,78 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() =&gt; {
1472 return request; 1482 return request;
1473 })(); 1483 })();
1474 1484
  1485 +/** @description request parameter type for postCanrdApiUserInnerOrderSystemAddressSave */
  1486 +export interface PostCanrdApiUserInnerOrderSystemAddressSaveOption {
  1487 + /**
  1488 + * @description
  1489 + * request
  1490 + */
  1491 + body: {
  1492 + /**
  1493 + @description
  1494 + request */
  1495 + request: UserAddressSaveRequest;
  1496 + };
  1497 +}
  1498 +
  1499 +/** @description response type for postCanrdApiUserInnerOrderSystemAddressSave */
  1500 +export interface PostCanrdApiUserInnerOrderSystemAddressSaveResponse {
  1501 + /**
  1502 + * @description
  1503 + * OK
  1504 + */
  1505 + 200: ServerResult;
  1506 + /**
  1507 + * @description
  1508 + * Created
  1509 + */
  1510 + 201: any;
  1511 + /**
  1512 + * @description
  1513 + * Unauthorized
  1514 + */
  1515 + 401: any;
  1516 + /**
  1517 + * @description
  1518 + * Forbidden
  1519 + */
  1520 + 403: any;
  1521 + /**
  1522 + * @description
  1523 + * Not Found
  1524 + */
  1525 + 404: any;
  1526 +}
  1527 +
  1528 +export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess =
  1529 + PostCanrdApiUserInnerOrderSystemAddressSaveResponse[200];
  1530 +/**
  1531 + * @description
  1532 + * 查询地址信息
  1533 + * @tags canrd-mobile-api-controller
  1534 + * @produces *
  1535 + * @consumes application/json
  1536 + */
  1537 +export const postCanrdApiUserInnerOrderSystemAddressSave =
  1538 + /* #__PURE__ */ (() => {
  1539 + const method = 'post';
  1540 + const url = '/canrd/api/user/innerOrderSystem/address/save';
  1541 + function request(
  1542 + option: PostCanrdApiUserInnerOrderSystemAddressSaveOption,
  1543 + ): Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess> {
  1544 + return requester(request.url, {
  1545 + method: request.method,
  1546 + ...option,
  1547 + }) as unknown as Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess>;
  1548 + }
  1549 +
  1550 + /** http method */
  1551 + request.method = method;
  1552 + /** request url */
  1553 + request.url = url;
  1554 + return request;
  1555 + })();
  1556 +
1475 /** @description request parameter type for postCanrdApiUserList */ 1557 /** @description request parameter type for postCanrdApiUserList */
1476 export interface PostCanrdApiUserListOption { 1558 export interface PostCanrdApiUserListOption {
1477 /** 1559 /**
@@ -1543,13 +1625,32 @@ export const postCanrdApiUserList = /* #__PURE__ */ (() =&gt; { @@ -1543,13 +1625,32 @@ export const postCanrdApiUserList = /* #__PURE__ */ (() =&gt; {
1543 return request; 1625 return request;
1544 })(); 1626 })();
1545 1627
1546 -/** @description response type for getError */  
1547 -export interface GetErrorResponse { 1628 +/** @description request parameter type for postCanrdApiUserNowMoneyCheck */
  1629 +export interface PostCanrdApiUserNowMoneyCheckOption {
  1630 + /**
  1631 + * @description
  1632 + * request
  1633 + */
  1634 + body: {
  1635 + /**
  1636 + @description
  1637 + request */
  1638 + request: UserNowMoneyCheckRequest;
  1639 + };
  1640 +}
  1641 +
  1642 +/** @description response type for postCanrdApiUserNowMoneyCheck */
  1643 +export interface PostCanrdApiUserNowMoneyCheckResponse {
1548 /** 1644 /**
1549 * @description 1645 * @description
1550 * OK 1646 * OK
1551 */ 1647 */
1552 - 200: ModelAndView; 1648 + 200: ServerResult;
  1649 + /**
  1650 + * @description
  1651 + * Created
  1652 + */
  1653 + 201: any;
1553 /** 1654 /**
1554 * @description 1655 * @description
1555 * Unauthorized 1656 * Unauthorized
@@ -1567,20 +1668,25 @@ export interface GetErrorResponse { @@ -1567,20 +1668,25 @@ export interface GetErrorResponse {
1567 404: any; 1668 404: any;
1568 } 1669 }
1569 1670
1570 -export type GetErrorResponseSuccess = GetErrorResponse[200]; 1671 +export type PostCanrdApiUserNowMoneyCheckResponseSuccess =
  1672 + PostCanrdApiUserNowMoneyCheckResponse[200];
1571 /** 1673 /**
1572 * @description 1674 * @description
1573 - * errorHtml  
1574 - * @tags basic-error-controller  
1575 - * @produces text/html 1675 + * 检查用户额度
  1676 + * @tags canrd-mobile-api-controller
  1677 + * @produces *
  1678 + * @consumes application/json
1576 */ 1679 */
1577 -export const getError = /* #__PURE__ */ (() => {  
1578 - const method = 'get';  
1579 - const url = '/error';  
1580 - function request(): Promise<GetErrorResponseSuccess> { 1680 +export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => {
  1681 + const method = 'post';
  1682 + const url = '/canrd/api/user/nowMoney/check';
  1683 + function request(
  1684 + option: PostCanrdApiUserNowMoneyCheckOption,
  1685 + ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> {
1581 return requester(request.url, { 1686 return requester(request.url, {
1582 method: request.method, 1687 method: request.method,
1583 - }) as unknown as Promise<GetErrorResponseSuccess>; 1688 + ...option,
  1689 + }) as unknown as Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess>;
1584 } 1690 }
1585 1691
1586 /** http method */ 1692 /** http method */
@@ -1590,13 +1696,27 @@ export const getError = /* #__PURE__ */ (() =&gt; { @@ -1590,13 +1696,27 @@ export const getError = /* #__PURE__ */ (() =&gt; {
1590 return request; 1696 return request;
1591 })(); 1697 })();
1592 1698
1593 -/** @description response type for putError */  
1594 -export interface PutErrorResponse { 1699 +/** @description request parameter type for postCommonAudit */
  1700 +export interface PostCommonAuditOption {
  1701 + /**
  1702 + * @description
  1703 + * request
  1704 + */
  1705 + body: {
  1706 + /**
  1707 + @description
  1708 + request */
  1709 + request: CommonAuditRequest;
  1710 + };
  1711 +}
  1712 +
  1713 +/** @description response type for postCommonAudit */
  1714 +export interface PostCommonAuditResponse {
1595 /** 1715 /**
1596 * @description 1716 * @description
1597 * OK 1717 * OK
1598 */ 1718 */
1599 - 200: ModelAndView; 1719 + 200: ServerResult;
1600 /** 1720 /**
1601 * @description 1721 * @description
1602 * Created 1722 * Created
@@ -1619,21 +1739,24 @@ export interface PutErrorResponse { @@ -1619,21 +1739,24 @@ export interface PutErrorResponse {
1619 404: any; 1739 404: any;
1620 } 1740 }
1621 1741
1622 -export type PutErrorResponseSuccess = PutErrorResponse[200]; 1742 +export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200];
1623 /** 1743 /**
1624 * @description 1744 * @description
1625 - * errorHtml  
1626 - * @tags basic-error-controller  
1627 - * @produces text/html 1745 + * audit
  1746 + * @tags common-controller
  1747 + * @produces *
1628 * @consumes application/json 1748 * @consumes application/json
1629 */ 1749 */
1630 -export const putError = /* #__PURE__ */ (() => {  
1631 - const method = 'put';  
1632 - const url = '/error';  
1633 - function request(): Promise<PutErrorResponseSuccess> { 1750 +export const postCommonAudit = /* #__PURE__ */ (() => {
  1751 + const method = 'post';
  1752 + const url = '/common/audit';
  1753 + function request(
  1754 + option: PostCommonAuditOption,
  1755 + ): Promise<PostCommonAuditResponseSuccess> {
1634 return requester(request.url, { 1756 return requester(request.url, {
1635 method: request.method, 1757 method: request.method,
1636 - }) as unknown as Promise<PutErrorResponseSuccess>; 1758 + ...option,
  1759 + }) as unknown as Promise<PostCommonAuditResponseSuccess>;
1637 } 1760 }
1638 1761
1639 /** http method */ 1762 /** http method */
@@ -1643,18 +1766,13 @@ export const putError = /* #__PURE__ */ (() =&gt; { @@ -1643,18 +1766,13 @@ export const putError = /* #__PURE__ */ (() =&gt; {
1643 return request; 1766 return request;
1644 })(); 1767 })();
1645 1768
1646 -/** @description response type for postError */  
1647 -export interface PostErrorResponse { 1769 +/** @description response type for getDistrictSelectAll */
  1770 +export interface GetDistrictSelectAllResponse {
1648 /** 1771 /**
1649 * @description 1772 * @description
1650 * OK 1773 * OK
1651 */ 1774 */
1652 - 200: ModelAndView;  
1653 - /**  
1654 - * @description  
1655 - * Created  
1656 - */  
1657 - 201: any; 1775 + 200: ServerResult;
1658 /** 1776 /**
1659 * @description 1777 * @description
1660 * Unauthorized 1778 * Unauthorized
@@ -1672,21 +1790,21 @@ export interface PostErrorResponse { @@ -1672,21 +1790,21 @@ export interface PostErrorResponse {
1672 404: any; 1790 404: any;
1673 } 1791 }
1674 1792
1675 -export type PostErrorResponseSuccess = PostErrorResponse[200]; 1793 +export type GetDistrictSelectAllResponseSuccess =
  1794 + GetDistrictSelectAllResponse[200];
1676 /** 1795 /**
1677 * @description 1796 * @description
1678 - * errorHtml  
1679 - * @tags basic-error-controller  
1680 - * @produces text/html  
1681 - * @consumes application/json 1797 + * 查询全部
  1798 + * @tags order-district-controller
  1799 + * @produces *
1682 */ 1800 */
1683 -export const postError = /* #__PURE__ */ (() => {  
1684 - const method = 'post';  
1685 - const url = '/error';  
1686 - function request(): Promise<PostErrorResponseSuccess> { 1801 +export const getDistrictSelectAll = /* #__PURE__ */ (() => {
  1802 + const method = 'get';
  1803 + const url = '/district/selectAll';
  1804 + function request(): Promise<GetDistrictSelectAllResponseSuccess> {
1687 return requester(request.url, { 1805 return requester(request.url, {
1688 method: request.method, 1806 method: request.method,
1689 - }) as unknown as Promise<PostErrorResponseSuccess>; 1807 + }) as unknown as Promise<GetDistrictSelectAllResponseSuccess>;
1690 } 1808 }
1691 1809
1692 /** http method */ 1810 /** http method */
@@ -1696,18 +1814,32 @@ export const postError = /* #__PURE__ */ (() =&gt; { @@ -1696,18 +1814,32 @@ export const postError = /* #__PURE__ */ (() =&gt; {
1696 return request; 1814 return request;
1697 })(); 1815 })();
1698 1816
1699 -/** @description response type for deleteError */  
1700 -export interface DeleteErrorResponse { 1817 +/** @description request parameter type for postDistrictSelectBelong */
  1818 +export interface PostDistrictSelectBelongOption {
  1819 + /**
  1820 + * @description
  1821 + * pid
  1822 + */
  1823 + body: {
  1824 + /**
  1825 + @description
  1826 + pid */
  1827 + pid: number;
  1828 + };
  1829 +}
  1830 +
  1831 +/** @description response type for postDistrictSelectBelong */
  1832 +export interface PostDistrictSelectBelongResponse {
1701 /** 1833 /**
1702 * @description 1834 * @description
1703 * OK 1835 * OK
1704 */ 1836 */
1705 - 200: ModelAndView; 1837 + 200: ServerResult;
1706 /** 1838 /**
1707 * @description 1839 * @description
1708 - * No Content 1840 + * Created
1709 */ 1841 */
1710 - 204: any; 1842 + 201: any;
1711 /** 1843 /**
1712 * @description 1844 * @description
1713 * Unauthorized 1845 * Unauthorized
@@ -1718,22 +1850,32 @@ export interface DeleteErrorResponse { @@ -1718,22 +1850,32 @@ export interface DeleteErrorResponse {
1718 * Forbidden 1850 * Forbidden
1719 */ 1851 */
1720 403: any; 1852 403: any;
  1853 + /**
  1854 + * @description
  1855 + * Not Found
  1856 + */
  1857 + 404: any;
1721 } 1858 }
1722 1859
1723 -export type DeleteErrorResponseSuccess = DeleteErrorResponse[200]; 1860 +export type PostDistrictSelectBelongResponseSuccess =
  1861 + PostDistrictSelectBelongResponse[200];
1724 /** 1862 /**
1725 * @description 1863 * @description
1726 - * errorHtml  
1727 - * @tags basic-error-controller  
1728 - * @produces text/html 1864 + * 根据父级进行筛选
  1865 + * @tags order-district-controller
  1866 + * @produces *
  1867 + * @consumes application/json
1729 */ 1868 */
1730 -export const deleteError = /* #__PURE__ */ (() => {  
1731 - const method = 'delete';  
1732 - const url = '/error';  
1733 - function request(): Promise<DeleteErrorResponseSuccess> { 1869 +export const postDistrictSelectBelong = /* #__PURE__ */ (() => {
  1870 + const method = 'post';
  1871 + const url = '/district/selectBelong';
  1872 + function request(
  1873 + option: PostDistrictSelectBelongOption,
  1874 + ): Promise<PostDistrictSelectBelongResponseSuccess> {
1734 return requester(request.url, { 1875 return requester(request.url, {
1735 method: request.method, 1876 method: request.method,
1736 - }) as unknown as Promise<DeleteErrorResponseSuccess>; 1877 + ...option,
  1878 + }) as unknown as Promise<PostDistrictSelectBelongResponseSuccess>;
1737 } 1879 }
1738 1880
1739 /** http method */ 1881 /** http method */
@@ -1743,18 +1885,32 @@ export const deleteError = /* #__PURE__ */ (() =&gt; { @@ -1743,18 +1885,32 @@ export const deleteError = /* #__PURE__ */ (() =&gt; {
1743 return request; 1885 return request;
1744 })(); 1886 })();
1745 1887
1746 -/** @description response type for optionsError */  
1747 -export interface OptionsErrorResponse { 1888 +/** @description request parameter type for postDistrictSelectBelongAndLevel */
  1889 +export interface PostDistrictSelectBelongAndLevelOption {
  1890 + /**
  1891 + * @description
  1892 + * districtDo
  1893 + */
  1894 + body: {
  1895 + /**
  1896 + @description
  1897 + districtDo */
  1898 + districtDo: DistrictDo;
  1899 + };
  1900 +}
  1901 +
  1902 +/** @description response type for postDistrictSelectBelongAndLevel */
  1903 +export interface PostDistrictSelectBelongAndLevelResponse {
1748 /** 1904 /**
1749 * @description 1905 * @description
1750 * OK 1906 * OK
1751 */ 1907 */
1752 - 200: ModelAndView; 1908 + 200: ServerResult;
1753 /** 1909 /**
1754 * @description 1910 * @description
1755 - * No Content 1911 + * Created
1756 */ 1912 */
1757 - 204: any; 1913 + 201: any;
1758 /** 1914 /**
1759 * @description 1915 * @description
1760 * Unauthorized 1916 * Unauthorized
@@ -1765,23 +1921,32 @@ export interface OptionsErrorResponse { @@ -1765,23 +1921,32 @@ export interface OptionsErrorResponse {
1765 * Forbidden 1921 * Forbidden
1766 */ 1922 */
1767 403: any; 1923 403: any;
  1924 + /**
  1925 + * @description
  1926 + * Not Found
  1927 + */
  1928 + 404: any;
1768 } 1929 }
1769 1930
1770 -export type OptionsErrorResponseSuccess = OptionsErrorResponse[200]; 1931 +export type PostDistrictSelectBelongAndLevelResponseSuccess =
  1932 + PostDistrictSelectBelongAndLevelResponse[200];
1771 /** 1933 /**
1772 * @description 1934 * @description
1773 - * errorHtml  
1774 - * @tags basic-error-controller  
1775 - * @produces text/html 1935 + * 根据父级和等级进行筛选
  1936 + * @tags order-district-controller
  1937 + * @produces *
1776 * @consumes application/json 1938 * @consumes application/json
1777 */ 1939 */
1778 -export const optionsError = /* #__PURE__ */ (() => {  
1779 - const method = 'options';  
1780 - const url = '/error';  
1781 - function request(): Promise<OptionsErrorResponseSuccess> { 1940 +export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() => {
  1941 + const method = 'post';
  1942 + const url = '/district/selectBelongAndLevel';
  1943 + function request(
  1944 + option: PostDistrictSelectBelongAndLevelOption,
  1945 + ): Promise<PostDistrictSelectBelongAndLevelResponseSuccess> {
1782 return requester(request.url, { 1946 return requester(request.url, {
1783 method: request.method, 1947 method: request.method,
1784 - }) as unknown as Promise<OptionsErrorResponseSuccess>; 1948 + ...option,
  1949 + }) as unknown as Promise<PostDistrictSelectBelongAndLevelResponseSuccess>;
1785 } 1950 }
1786 1951
1787 /** http method */ 1952 /** http method */
@@ -1791,18 +1956,32 @@ export const optionsError = /* #__PURE__ */ (() =&gt; { @@ -1791,18 +1956,32 @@ export const optionsError = /* #__PURE__ */ (() =&gt; {
1791 return request; 1956 return request;
1792 })(); 1957 })();
1793 1958
1794 -/** @description response type for headError */  
1795 -export interface HeadErrorResponse { 1959 +/** @description request parameter type for postDistrictSelectBelongByName */
  1960 +export interface PostDistrictSelectBelongByNameOption {
  1961 + /**
  1962 + * @description
  1963 + * district
  1964 + */
  1965 + body: {
  1966 + /**
  1967 + @description
  1968 + district */
  1969 + district: string;
  1970 + };
  1971 +}
  1972 +
  1973 +/** @description response type for postDistrictSelectBelongByName */
  1974 +export interface PostDistrictSelectBelongByNameResponse {
1796 /** 1975 /**
1797 * @description 1976 * @description
1798 * OK 1977 * OK
1799 */ 1978 */
1800 - 200: ModelAndView; 1979 + 200: ServerResult;
1801 /** 1980 /**
1802 * @description 1981 * @description
1803 - * No Content 1982 + * Created
1804 */ 1983 */
1805 - 204: any; 1984 + 201: any;
1806 /** 1985 /**
1807 * @description 1986 * @description
1808 * Unauthorized 1987 * Unauthorized
@@ -1813,23 +1992,32 @@ export interface HeadErrorResponse { @@ -1813,23 +1992,32 @@ export interface HeadErrorResponse {
1813 * Forbidden 1992 * Forbidden
1814 */ 1993 */
1815 403: any; 1994 403: any;
  1995 + /**
  1996 + * @description
  1997 + * Not Found
  1998 + */
  1999 + 404: any;
1816 } 2000 }
1817 2001
1818 -export type HeadErrorResponseSuccess = HeadErrorResponse[200]; 2002 +export type PostDistrictSelectBelongByNameResponseSuccess =
  2003 + PostDistrictSelectBelongByNameResponse[200];
1819 /** 2004 /**
1820 * @description 2005 * @description
1821 - * errorHtml  
1822 - * @tags basic-error-controller  
1823 - * @produces text/html 2006 + * 根据父级名字进行筛选
  2007 + * @tags order-district-controller
  2008 + * @produces *
1824 * @consumes application/json 2009 * @consumes application/json
1825 */ 2010 */
1826 -export const headError = /* #__PURE__ */ (() => {  
1827 - const method = 'head';  
1828 - const url = '/error';  
1829 - function request(): Promise<HeadErrorResponseSuccess> { 2011 +export const postDistrictSelectBelongByName = /* #__PURE__ */ (() => {
  2012 + const method = 'post';
  2013 + const url = '/district/selectBelongByName';
  2014 + function request(
  2015 + option: PostDistrictSelectBelongByNameOption,
  2016 + ): Promise<PostDistrictSelectBelongByNameResponseSuccess> {
1830 return requester(request.url, { 2017 return requester(request.url, {
1831 method: request.method, 2018 method: request.method,
1832 - }) as unknown as Promise<HeadErrorResponseSuccess>; 2019 + ...option,
  2020 + }) as unknown as Promise<PostDistrictSelectBelongByNameResponseSuccess>;
1833 } 2021 }
1834 2022
1835 /** http method */ 2023 /** http method */
@@ -1839,75 +2027,27 @@ export const headError = /* #__PURE__ */ (() =&gt; { @@ -1839,75 +2027,27 @@ export const headError = /* #__PURE__ */ (() =&gt; {
1839 return request; 2027 return request;
1840 })(); 2028 })();
1841 2029
1842 -/** @description response type for patchError */  
1843 -export interface PatchErrorResponse { 2030 +/** @description request parameter type for postDistrictSelectByLevel */
  2031 +export interface PostDistrictSelectByLevelOption {
1844 /** 2032 /**
1845 * @description 2033 * @description
1846 - * OK  
1847 - */  
1848 - 200: ModelAndView;  
1849 - /**  
1850 - * @description  
1851 - * No Content  
1852 - */  
1853 - 204: any;  
1854 - /**  
1855 - * @description  
1856 - * Unauthorized  
1857 - */  
1858 - 401: any;  
1859 - /**  
1860 - * @description  
1861 - * Forbidden  
1862 - */  
1863 - 403: any;  
1864 -}  
1865 -  
1866 -export type PatchErrorResponseSuccess = PatchErrorResponse[200];  
1867 -/**  
1868 - * @description  
1869 - * errorHtml  
1870 - * @tags basic-error-controller  
1871 - * @produces text/html  
1872 - * @consumes application/json  
1873 - */  
1874 -export const patchError = /* #__PURE__ */ (() => {  
1875 - const method = 'patch';  
1876 - const url = '/error';  
1877 - function request(): Promise<PatchErrorResponseSuccess> {  
1878 - return requester(request.url, {  
1879 - method: request.method,  
1880 - }) as unknown as Promise<PatchErrorResponseSuccess>;  
1881 - }  
1882 -  
1883 - /** http method */  
1884 - request.method = method;  
1885 - /** request url */  
1886 - request.url = url;  
1887 - return request;  
1888 -})();  
1889 -  
1890 -/** @description request parameter type for postKingdeeRepCustomer */  
1891 -export interface PostKingdeeRepCustomerOption {  
1892 - /**  
1893 - * @description  
1894 - * req 2034 + * level
1895 */ 2035 */
1896 body: { 2036 body: {
1897 /** 2037 /**
1898 @description 2038 @description
1899 - req */  
1900 - req: CustomerCustomerListReq; 2039 + level */
  2040 + level: number;
1901 }; 2041 };
1902 } 2042 }
1903 2043
1904 -/** @description response type for postKingdeeRepCustomer */  
1905 -export interface PostKingdeeRepCustomerResponse { 2044 +/** @description response type for postDistrictSelectByLevel */
  2045 +export interface PostDistrictSelectByLevelResponse {
1906 /** 2046 /**
1907 * @description 2047 * @description
1908 * OK 2048 * OK
1909 */ 2049 */
1910 - 200: CustomerListRes; 2050 + 200: ServerResult;
1911 /** 2051 /**
1912 * @description 2052 * @description
1913 * Created 2053 * Created
@@ -1930,25 +2070,25 @@ export interface PostKingdeeRepCustomerResponse { @@ -1930,25 +2070,25 @@ export interface PostKingdeeRepCustomerResponse {
1930 404: any; 2070 404: any;
1931 } 2071 }
1932 2072
1933 -export type PostKingdeeRepCustomerResponseSuccess =  
1934 - PostKingdeeRepCustomerResponse[200]; 2073 +export type PostDistrictSelectByLevelResponseSuccess =
  2074 + PostDistrictSelectByLevelResponse[200];
1935 /** 2075 /**
1936 * @description 2076 * @description
1937 - * listCustomers  
1938 - * @tags kingdee-erp-controller 2077 + * 根据等级查询
  2078 + * @tags order-district-controller
1939 * @produces * 2079 * @produces *
1940 * @consumes application/json 2080 * @consumes application/json
1941 */ 2081 */
1942 -export const postKingdeeRepCustomer = /* #__PURE__ */ (() => { 2082 +export const postDistrictSelectByLevel = /* #__PURE__ */ (() => {
1943 const method = 'post'; 2083 const method = 'post';
1944 - const url = '/kingdee/rep/customer'; 2084 + const url = '/district/selectByLevel';
1945 function request( 2085 function request(
1946 - option: PostKingdeeRepCustomerOption,  
1947 - ): Promise<PostKingdeeRepCustomerResponseSuccess> { 2086 + option: PostDistrictSelectByLevelOption,
  2087 + ): Promise<PostDistrictSelectByLevelResponseSuccess> {
1948 return requester(request.url, { 2088 return requester(request.url, {
1949 method: request.method, 2089 method: request.method,
1950 ...option, 2090 ...option,
1951 - }) as unknown as Promise<PostKingdeeRepCustomerResponseSuccess>; 2091 + }) as unknown as Promise<PostDistrictSelectByLevelResponseSuccess>;
1952 } 2092 }
1953 2093
1954 /** http method */ 2094 /** http method */
@@ -1958,32 +2098,13 @@ export const postKingdeeRepCustomer = /* #__PURE__ */ (() =&gt; { @@ -1958,32 +2098,13 @@ export const postKingdeeRepCustomer = /* #__PURE__ */ (() =&gt; {
1958 return request; 2098 return request;
1959 })(); 2099 })();
1960 2100
1961 -/** @description request parameter type for postKingdeeRepCustomerDetail */  
1962 -export interface PostKingdeeRepCustomerDetailOption {  
1963 - /**  
1964 - * @description  
1965 - * dto  
1966 - */  
1967 - body: {  
1968 - /**  
1969 - @description  
1970 - dto */  
1971 - dto: CustomerDetailDto;  
1972 - };  
1973 -}  
1974 -  
1975 -/** @description response type for postKingdeeRepCustomerDetail */  
1976 -export interface PostKingdeeRepCustomerDetailResponse { 2101 +/** @description response type for getError */
  2102 +export interface GetErrorResponse {
1977 /** 2103 /**
1978 * @description 2104 * @description
1979 * OK 2105 * OK
1980 */ 2106 */
1981 - 200: CustomerDetailRes;  
1982 - /**  
1983 - * @description  
1984 - * Created  
1985 - */  
1986 - 201: any; 2107 + 200: ModelAndView;
1987 /** 2108 /**
1988 * @description 2109 * @description
1989 * Unauthorized 2110 * Unauthorized
@@ -2001,25 +2122,20 @@ export interface PostKingdeeRepCustomerDetailResponse { @@ -2001,25 +2122,20 @@ export interface PostKingdeeRepCustomerDetailResponse {
2001 404: any; 2122 404: any;
2002 } 2123 }
2003 2124
2004 -export type PostKingdeeRepCustomerDetailResponseSuccess =  
2005 - PostKingdeeRepCustomerDetailResponse[200]; 2125 +export type GetErrorResponseSuccess = GetErrorResponse[200];
2006 /** 2126 /**
2007 * @description 2127 * @description
2008 - * getCustomerDetail  
2009 - * @tags kingdee-erp-controller  
2010 - * @produces *  
2011 - * @consumes application/json 2128 + * errorHtml
  2129 + * @tags basic-error-controller
  2130 + * @produces text/html
2012 */ 2131 */
2013 -export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() => {  
2014 - const method = 'post';  
2015 - const url = '/kingdee/rep/customerDetail';  
2016 - function request(  
2017 - option: PostKingdeeRepCustomerDetailOption,  
2018 - ): Promise<PostKingdeeRepCustomerDetailResponseSuccess> { 2132 +export const getError = /* #__PURE__ */ (() => {
  2133 + const method = 'get';
  2134 + const url = '/error';
  2135 + function request(): Promise<GetErrorResponseSuccess> {
2019 return requester(request.url, { 2136 return requester(request.url, {
2020 method: request.method, 2137 method: request.method,
2021 - ...option,  
2022 - }) as unknown as Promise<PostKingdeeRepCustomerDetailResponseSuccess>; 2138 + }) as unknown as Promise<GetErrorResponseSuccess>;
2023 } 2139 }
2024 2140
2025 /** http method */ 2141 /** http method */
@@ -2029,27 +2145,13 @@ export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() =&gt; { @@ -2029,27 +2145,13 @@ export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() =&gt; {
2029 return request; 2145 return request;
2030 })(); 2146 })();
2031 2147
2032 -/** @description request parameter type for postKingdeeRepCustomerSave */  
2033 -export interface PostKingdeeRepCustomerSaveOption {  
2034 - /**  
2035 - * @description  
2036 - * req  
2037 - */  
2038 - body: {  
2039 - /**  
2040 - @description  
2041 - req */  
2042 - req: CustomerSaveReq;  
2043 - };  
2044 -}  
2045 -  
2046 -/** @description response type for postKingdeeRepCustomerSave */  
2047 -export interface PostKingdeeRepCustomerSaveResponse { 2148 +/** @description response type for putError */
  2149 +export interface PutErrorResponse {
2048 /** 2150 /**
2049 * @description 2151 * @description
2050 * OK 2152 * OK
2051 */ 2153 */
2052 - 200: SaveReply; 2154 + 200: ModelAndView;
2053 /** 2155 /**
2054 * @description 2156 * @description
2055 * Created 2157 * Created
@@ -2072,25 +2174,21 @@ export interface PostKingdeeRepCustomerSaveResponse { @@ -2072,25 +2174,21 @@ export interface PostKingdeeRepCustomerSaveResponse {
2072 404: any; 2174 404: any;
2073 } 2175 }
2074 2176
2075 -export type PostKingdeeRepCustomerSaveResponseSuccess =  
2076 - PostKingdeeRepCustomerSaveResponse[200]; 2177 +export type PutErrorResponseSuccess = PutErrorResponse[200];
2077 /** 2178 /**
2078 * @description 2179 * @description
2079 - * customerSave  
2080 - * @tags kingdee-erp-controller  
2081 - * @produces * 2180 + * errorHtml
  2181 + * @tags basic-error-controller
  2182 + * @produces text/html
2082 * @consumes application/json 2183 * @consumes application/json
2083 */ 2184 */
2084 -export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() => {  
2085 - const method = 'post';  
2086 - const url = '/kingdee/rep/customerSave';  
2087 - function request(  
2088 - option: PostKingdeeRepCustomerSaveOption,  
2089 - ): Promise<PostKingdeeRepCustomerSaveResponseSuccess> { 2185 +export const putError = /* #__PURE__ */ (() => {
  2186 + const method = 'put';
  2187 + const url = '/error';
  2188 + function request(): Promise<PutErrorResponseSuccess> {
2090 return requester(request.url, { 2189 return requester(request.url, {
2091 method: request.method, 2190 method: request.method,
2092 - ...option,  
2093 - }) as unknown as Promise<PostKingdeeRepCustomerSaveResponseSuccess>; 2191 + }) as unknown as Promise<PutErrorResponseSuccess>;
2094 } 2192 }
2095 2193
2096 /** http method */ 2194 /** http method */
@@ -2100,27 +2198,13 @@ export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() =&gt; { @@ -2100,27 +2198,13 @@ export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() =&gt; {
2100 return request; 2198 return request;
2101 })(); 2199 })();
2102 2200
2103 -/** @description request parameter type for postKingdeeRepMaterial */  
2104 -export interface PostKingdeeRepMaterialOption {  
2105 - /**  
2106 - * @description  
2107 - * req  
2108 - */  
2109 - body: {  
2110 - /**  
2111 - @description  
2112 - req */  
2113 - req: MaterialMaterialListReq;  
2114 - };  
2115 -}  
2116 -  
2117 -/** @description response type for postKingdeeRepMaterial */  
2118 -export interface PostKingdeeRepMaterialResponse { 2201 +/** @description response type for postError */
  2202 +export interface PostErrorResponse {
2119 /** 2203 /**
2120 * @description 2204 * @description
2121 * OK 2205 * OK
2122 */ 2206 */
2123 - 200: MaterialListReply; 2207 + 200: ModelAndView;
2124 /** 2208 /**
2125 * @description 2209 * @description
2126 * Created 2210 * Created
@@ -2143,25 +2227,21 @@ export interface PostKingdeeRepMaterialResponse { @@ -2143,25 +2227,21 @@ export interface PostKingdeeRepMaterialResponse {
2143 404: any; 2227 404: any;
2144 } 2228 }
2145 2229
2146 -export type PostKingdeeRepMaterialResponseSuccess =  
2147 - PostKingdeeRepMaterialResponse[200]; 2230 +export type PostErrorResponseSuccess = PostErrorResponse[200];
2148 /** 2231 /**
2149 * @description 2232 * @description
2150 - * listMaterial  
2151 - * @tags kingdee-erp-controller  
2152 - * @produces * 2233 + * errorHtml
  2234 + * @tags basic-error-controller
  2235 + * @produces text/html
2153 * @consumes application/json 2236 * @consumes application/json
2154 */ 2237 */
2155 -export const postKingdeeRepMaterial = /* #__PURE__ */ (() => { 2238 +export const postError = /* #__PURE__ */ (() => {
2156 const method = 'post'; 2239 const method = 'post';
2157 - const url = '/kingdee/rep/material';  
2158 - function request(  
2159 - option: PostKingdeeRepMaterialOption,  
2160 - ): Promise<PostKingdeeRepMaterialResponseSuccess> { 2240 + const url = '/error';
  2241 + function request(): Promise<PostErrorResponseSuccess> {
2161 return requester(request.url, { 2242 return requester(request.url, {
2162 method: request.method, 2243 method: request.method,
2163 - ...option,  
2164 - }) as unknown as Promise<PostKingdeeRepMaterialResponseSuccess>; 2244 + }) as unknown as Promise<PostErrorResponseSuccess>;
2165 } 2245 }
2166 2246
2167 /** http method */ 2247 /** http method */
@@ -2171,32 +2251,18 @@ export const postKingdeeRepMaterial = /* #__PURE__ */ (() =&gt; { @@ -2171,32 +2251,18 @@ export const postKingdeeRepMaterial = /* #__PURE__ */ (() =&gt; {
2171 return request; 2251 return request;
2172 })(); 2252 })();
2173 2253
2174 -/** @description request parameter type for postKingdeeRepMaterialStock */  
2175 -export interface PostKingdeeRepMaterialStockOption {  
2176 - /**  
2177 - * @description  
2178 - * req  
2179 - */  
2180 - body: {  
2181 - /**  
2182 - @description  
2183 - req */  
2184 - req: InventoryMaterialStockReq;  
2185 - };  
2186 -}  
2187 -  
2188 -/** @description response type for postKingdeeRepMaterialStock */  
2189 -export interface PostKingdeeRepMaterialStockResponse { 2254 +/** @description response type for deleteError */
  2255 +export interface DeleteErrorResponse {
2190 /** 2256 /**
2191 * @description 2257 * @description
2192 * OK 2258 * OK
2193 */ 2259 */
2194 - 200: MaterialStockRes; 2260 + 200: ModelAndView;
2195 /** 2261 /**
2196 * @description 2262 * @description
2197 - * Created 2263 + * No Content
2198 */ 2264 */
2199 - 201: any; 2265 + 204: any;
2200 /** 2266 /**
2201 * @description 2267 * @description
2202 * Unauthorized 2268 * Unauthorized
@@ -2207,32 +2273,22 @@ export interface PostKingdeeRepMaterialStockResponse { @@ -2207,32 +2273,22 @@ export interface PostKingdeeRepMaterialStockResponse {
2207 * Forbidden 2273 * Forbidden
2208 */ 2274 */
2209 403: any; 2275 403: any;
2210 - /**  
2211 - * @description  
2212 - * Not Found  
2213 - */  
2214 - 404: any;  
2215 } 2276 }
2216 2277
2217 -export type PostKingdeeRepMaterialStockResponseSuccess =  
2218 - PostKingdeeRepMaterialStockResponse[200]; 2278 +export type DeleteErrorResponseSuccess = DeleteErrorResponse[200];
2219 /** 2279 /**
2220 * @description 2280 * @description
2221 - * listMaterialStock  
2222 - * @tags kingdee-erp-controller  
2223 - * @produces *  
2224 - * @consumes application/json 2281 + * errorHtml
  2282 + * @tags basic-error-controller
  2283 + * @produces text/html
2225 */ 2284 */
2226 -export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() => {  
2227 - const method = 'post';  
2228 - const url = '/kingdee/rep/materialStock';  
2229 - function request(  
2230 - option: PostKingdeeRepMaterialStockOption,  
2231 - ): Promise<PostKingdeeRepMaterialStockResponseSuccess> { 2285 +export const deleteError = /* #__PURE__ */ (() => {
  2286 + const method = 'delete';
  2287 + const url = '/error';
  2288 + function request(): Promise<DeleteErrorResponseSuccess> {
2232 return requester(request.url, { 2289 return requester(request.url, {
2233 method: request.method, 2290 method: request.method,
2234 - ...option,  
2235 - }) as unknown as Promise<PostKingdeeRepMaterialStockResponseSuccess>; 2291 + }) as unknown as Promise<DeleteErrorResponseSuccess>;
2236 } 2292 }
2237 2293
2238 /** http method */ 2294 /** http method */
@@ -2242,103 +2298,18 @@ export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() =&gt; { @@ -2242,103 +2298,18 @@ export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() =&gt; {
2242 return request; 2298 return request;
2243 })(); 2299 })();
2244 2300
2245 -/** @description request parameter type for postKingdeeRepMaterialUnit */  
2246 -export interface PostKingdeeRepMaterialUnitOption { 2301 +/** @description response type for optionsError */
  2302 +export interface OptionsErrorResponse {
2247 /** 2303 /**
2248 * @description 2304 * @description
2249 - * req 2305 + * OK
2250 */ 2306 */
2251 - body: {  
2252 - /**  
2253 - @description  
2254 - req */  
2255 - req: UnitMaterialUnitListReq;  
2256 - };  
2257 -}  
2258 -  
2259 -/** @description response type for postKingdeeRepMaterialUnit */  
2260 -export interface PostKingdeeRepMaterialUnitResponse {  
2261 - /**  
2262 - * @description  
2263 - * OK  
2264 - */  
2265 - 200: MaterialUnitListRes;  
2266 - /**  
2267 - * @description  
2268 - * Created  
2269 - */  
2270 - 201: any;  
2271 - /**  
2272 - * @description  
2273 - * Unauthorized  
2274 - */  
2275 - 401: any;  
2276 - /**  
2277 - * @description  
2278 - * Forbidden  
2279 - */  
2280 - 403: any;  
2281 - /**  
2282 - * @description  
2283 - * Not Found  
2284 - */  
2285 - 404: any;  
2286 -}  
2287 -  
2288 -export type PostKingdeeRepMaterialUnitResponseSuccess =  
2289 - PostKingdeeRepMaterialUnitResponse[200];  
2290 -/**  
2291 - * @description  
2292 - * getMaterialDetail  
2293 - * @tags kingdee-erp-controller  
2294 - * @produces *  
2295 - * @consumes application/json  
2296 - */  
2297 -export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() => {  
2298 - const method = 'post';  
2299 - const url = '/kingdee/rep/materialUnit';  
2300 - function request(  
2301 - option: PostKingdeeRepMaterialUnitOption,  
2302 - ): Promise<PostKingdeeRepMaterialUnitResponseSuccess> {  
2303 - return requester(request.url, {  
2304 - method: request.method,  
2305 - ...option,  
2306 - }) as unknown as Promise<PostKingdeeRepMaterialUnitResponseSuccess>;  
2307 - }  
2308 -  
2309 - /** http method */  
2310 - request.method = method;  
2311 - /** request url */  
2312 - request.url = url;  
2313 - return request;  
2314 -})();  
2315 -  
2316 -/** @description request parameter type for postKingdeeRepMeasureUnit */  
2317 -export interface PostKingdeeRepMeasureUnitOption {  
2318 - /**  
2319 - * @description  
2320 - * req  
2321 - */  
2322 - body: {  
2323 - /**  
2324 - @description  
2325 - req */  
2326 - req: UnitMeasureUnitListReq;  
2327 - };  
2328 -}  
2329 -  
2330 -/** @description response type for postKingdeeRepMeasureUnit */  
2331 -export interface PostKingdeeRepMeasureUnitResponse {  
2332 - /**  
2333 - * @description  
2334 - * OK  
2335 - */  
2336 - 200: MeasureUnitListRes; 2307 + 200: ModelAndView;
2337 /** 2308 /**
2338 * @description 2309 * @description
2339 - * Created 2310 + * No Content
2340 */ 2311 */
2341 - 201: any; 2312 + 204: any;
2342 /** 2313 /**
2343 * @description 2314 * @description
2344 * Unauthorized 2315 * Unauthorized
@@ -2349,32 +2320,23 @@ export interface PostKingdeeRepMeasureUnitResponse { @@ -2349,32 +2320,23 @@ export interface PostKingdeeRepMeasureUnitResponse {
2349 * Forbidden 2320 * Forbidden
2350 */ 2321 */
2351 403: any; 2322 403: any;
2352 - /**  
2353 - * @description  
2354 - * Not Found  
2355 - */  
2356 - 404: any;  
2357 } 2323 }
2358 2324
2359 -export type PostKingdeeRepMeasureUnitResponseSuccess =  
2360 - PostKingdeeRepMeasureUnitResponse[200]; 2325 +export type OptionsErrorResponseSuccess = OptionsErrorResponse[200];
2361 /** 2326 /**
2362 * @description 2327 * @description
2363 - * getCustomerDetail  
2364 - * @tags kingdee-erp-controller  
2365 - * @produces * 2328 + * errorHtml
  2329 + * @tags basic-error-controller
  2330 + * @produces text/html
2366 * @consumes application/json 2331 * @consumes application/json
2367 */ 2332 */
2368 -export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() => {  
2369 - const method = 'post';  
2370 - const url = '/kingdee/rep/measureUnit';  
2371 - function request(  
2372 - option: PostKingdeeRepMeasureUnitOption,  
2373 - ): Promise<PostKingdeeRepMeasureUnitResponseSuccess> { 2333 +export const optionsError = /* #__PURE__ */ (() => {
  2334 + const method = 'options';
  2335 + const url = '/error';
  2336 + function request(): Promise<OptionsErrorResponseSuccess> {
2374 return requester(request.url, { 2337 return requester(request.url, {
2375 method: request.method, 2338 method: request.method,
2376 - ...option,  
2377 - }) as unknown as Promise<PostKingdeeRepMeasureUnitResponseSuccess>; 2339 + }) as unknown as Promise<OptionsErrorResponseSuccess>;
2378 } 2340 }
2379 2341
2380 /** http method */ 2342 /** http method */
@@ -2384,32 +2346,18 @@ export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() =&gt; { @@ -2384,32 +2346,18 @@ export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() =&gt; {
2384 return request; 2346 return request;
2385 })(); 2347 })();
2386 2348
2387 -/** @description request parameter type for postKingdeeRepSalBillOutbound */  
2388 -export interface PostKingdeeRepSalBillOutboundOption {  
2389 - /**  
2390 - * @description  
2391 - * salOrderSaveDto  
2392 - */  
2393 - body: {  
2394 - /**  
2395 - @description  
2396 - salOrderSaveDto */  
2397 - salOrderSaveDto: SalOrderSaveDto;  
2398 - };  
2399 -}  
2400 -  
2401 -/** @description response type for postKingdeeRepSalBillOutbound */  
2402 -export interface PostKingdeeRepSalBillOutboundResponse { 2349 +/** @description response type for headError */
  2350 +export interface HeadErrorResponse {
2403 /** 2351 /**
2404 * @description 2352 * @description
2405 * OK 2353 * OK
2406 */ 2354 */
2407 - 200: ServerResult; 2355 + 200: ModelAndView;
2408 /** 2356 /**
2409 * @description 2357 * @description
2410 - * Created 2358 + * No Content
2411 */ 2359 */
2412 - 201: any; 2360 + 204: any;
2413 /** 2361 /**
2414 * @description 2362 * @description
2415 * Unauthorized 2363 * Unauthorized
@@ -2420,32 +2368,23 @@ export interface PostKingdeeRepSalBillOutboundResponse { @@ -2420,32 +2368,23 @@ export interface PostKingdeeRepSalBillOutboundResponse {
2420 * Forbidden 2368 * Forbidden
2421 */ 2369 */
2422 403: any; 2370 403: any;
2423 - /**  
2424 - * @description  
2425 - * Not Found  
2426 - */  
2427 - 404: any;  
2428 } 2371 }
2429 2372
2430 -export type PostKingdeeRepSalBillOutboundResponseSuccess =  
2431 - PostKingdeeRepSalBillOutboundResponse[200]; 2373 +export type HeadErrorResponseSuccess = HeadErrorResponse[200];
2432 /** 2374 /**
2433 * @description 2375 * @description
2434 - * salBillOutbound  
2435 - * @tags kingdee-erp-controller  
2436 - * @produces * 2376 + * errorHtml
  2377 + * @tags basic-error-controller
  2378 + * @produces text/html
2437 * @consumes application/json 2379 * @consumes application/json
2438 */ 2380 */
2439 -export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() => {  
2440 - const method = 'post';  
2441 - const url = '/kingdee/rep/salBillOutbound';  
2442 - function request(  
2443 - option: PostKingdeeRepSalBillOutboundOption,  
2444 - ): Promise<PostKingdeeRepSalBillOutboundResponseSuccess> { 2381 +export const headError = /* #__PURE__ */ (() => {
  2382 + const method = 'head';
  2383 + const url = '/error';
  2384 + function request(): Promise<HeadErrorResponseSuccess> {
2445 return requester(request.url, { 2385 return requester(request.url, {
2446 method: request.method, 2386 method: request.method,
2447 - ...option,  
2448 - }) as unknown as Promise<PostKingdeeRepSalBillOutboundResponseSuccess>; 2387 + }) as unknown as Promise<HeadErrorResponseSuccess>;
2449 } 2388 }
2450 2389
2451 /** http method */ 2390 /** http method */
@@ -2455,32 +2394,18 @@ export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() =&gt; { @@ -2455,32 +2394,18 @@ export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() =&gt; {
2455 return request; 2394 return request;
2456 })(); 2395 })();
2457 2396
2458 -/** @description request parameter type for postKingdeeRepSalOrderSave */  
2459 -export interface PostKingdeeRepSalOrderSaveOption {  
2460 - /**  
2461 - * @description  
2462 - * salOrderSaveDto  
2463 - */  
2464 - body: {  
2465 - /**  
2466 - @description  
2467 - salOrderSaveDto */  
2468 - salOrderSaveDto: SalOrderSaveDto;  
2469 - };  
2470 -}  
2471 -  
2472 -/** @description response type for postKingdeeRepSalOrderSave */  
2473 -export interface PostKingdeeRepSalOrderSaveResponse { 2397 +/** @description response type for patchError */
  2398 +export interface PatchErrorResponse {
2474 /** 2399 /**
2475 * @description 2400 * @description
2476 * OK 2401 * OK
2477 */ 2402 */
2478 - 200: ServerResult; 2403 + 200: ModelAndView;
2479 /** 2404 /**
2480 * @description 2405 * @description
2481 - * Created 2406 + * No Content
2482 */ 2407 */
2483 - 201: any; 2408 + 204: any;
2484 /** 2409 /**
2485 * @description 2410 * @description
2486 * Unauthorized 2411 * Unauthorized
@@ -2491,32 +2416,23 @@ export interface PostKingdeeRepSalOrderSaveResponse { @@ -2491,32 +2416,23 @@ export interface PostKingdeeRepSalOrderSaveResponse {
2491 * Forbidden 2416 * Forbidden
2492 */ 2417 */
2493 403: any; 2418 403: any;
2494 - /**  
2495 - * @description  
2496 - * Not Found  
2497 - */  
2498 - 404: any;  
2499 } 2419 }
2500 2420
2501 -export type PostKingdeeRepSalOrderSaveResponseSuccess =  
2502 - PostKingdeeRepSalOrderSaveResponse[200]; 2421 +export type PatchErrorResponseSuccess = PatchErrorResponse[200];
2503 /** 2422 /**
2504 * @description 2423 * @description
2505 - * salOrderSave  
2506 - * @tags kingdee-erp-controller  
2507 - * @produces * 2424 + * errorHtml
  2425 + * @tags basic-error-controller
  2426 + * @produces text/html
2508 * @consumes application/json 2427 * @consumes application/json
2509 */ 2428 */
2510 -export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() => {  
2511 - const method = 'post';  
2512 - const url = '/kingdee/rep/salOrderSave';  
2513 - function request(  
2514 - option: PostKingdeeRepSalOrderSaveOption,  
2515 - ): Promise<PostKingdeeRepSalOrderSaveResponseSuccess> { 2429 +export const patchError = /* #__PURE__ */ (() => {
  2430 + const method = 'patch';
  2431 + const url = '/error';
  2432 + function request(): Promise<PatchErrorResponseSuccess> {
2516 return requester(request.url, { 2433 return requester(request.url, {
2517 method: request.method, 2434 method: request.method,
2518 - ...option,  
2519 - }) as unknown as Promise<PostKingdeeRepSalOrderSaveResponseSuccess>; 2435 + }) as unknown as Promise<PatchErrorResponseSuccess>;
2520 } 2436 }
2521 2437
2522 /** http method */ 2438 /** http method */
@@ -2526,8 +2442,8 @@ export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() =&gt; { @@ -2526,8 +2442,8 @@ export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() =&gt; {
2526 return request; 2442 return request;
2527 })(); 2443 })();
2528 2444
2529 -/** @description request parameter type for postKingdeeRepSystemCustomField */  
2530 -export interface PostKingdeeRepSystemCustomFieldOption { 2445 +/** @description request parameter type for postKingdeeRepCustomer */
  2446 +export interface PostKingdeeRepCustomerOption {
2531 /** 2447 /**
2532 * @description 2448 * @description
2533 * req 2449 * req
@@ -2536,17 +2452,17 @@ export interface PostKingdeeRepSystemCustomFieldOption { @@ -2536,17 +2452,17 @@ export interface PostKingdeeRepSystemCustomFieldOption {
2536 /** 2452 /**
2537 @description 2453 @description
2538 req */ 2454 req */
2539 - req: SystemCustomFieldReq; 2455 + req: CustomerCustomerListReq;
2540 }; 2456 };
2541 } 2457 }
2542 2458
2543 -/** @description response type for postKingdeeRepSystemCustomField */  
2544 -export interface PostKingdeeRepSystemCustomFieldResponse { 2459 +/** @description response type for postKingdeeRepCustomer */
  2460 +export interface PostKingdeeRepCustomerResponse {
2545 /** 2461 /**
2546 * @description 2462 * @description
2547 * OK 2463 * OK
2548 */ 2464 */
2549 - 200: CustomFieldRes; 2465 + 200: CustomerListRes;
2550 /** 2466 /**
2551 * @description 2467 * @description
2552 * Created 2468 * Created
@@ -2569,96 +2485,25 @@ export interface PostKingdeeRepSystemCustomFieldResponse { @@ -2569,96 +2485,25 @@ export interface PostKingdeeRepSystemCustomFieldResponse {
2569 404: any; 2485 404: any;
2570 } 2486 }
2571 2487
2572 -export type PostKingdeeRepSystemCustomFieldResponseSuccess =  
2573 - PostKingdeeRepSystemCustomFieldResponse[200]; 2488 +export type PostKingdeeRepCustomerResponseSuccess =
  2489 + PostKingdeeRepCustomerResponse[200];
2574 /** 2490 /**
2575 * @description 2491 * @description
2576 - * listCustomFields 2492 + * listCustomers
2577 * @tags kingdee-erp-controller 2493 * @tags kingdee-erp-controller
2578 * @produces * 2494 * @produces *
2579 * @consumes application/json 2495 * @consumes application/json
2580 */ 2496 */
2581 -export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() => {  
2582 - const method = 'post';  
2583 - const url = '/kingdee/rep/systemCustomField';  
2584 - function request(  
2585 - option: PostKingdeeRepSystemCustomFieldOption,  
2586 - ): Promise<PostKingdeeRepSystemCustomFieldResponseSuccess> {  
2587 - return requester(request.url, {  
2588 - method: request.method,  
2589 - ...option,  
2590 - }) as unknown as Promise<PostKingdeeRepSystemCustomFieldResponseSuccess>;  
2591 - }  
2592 -  
2593 - /** http method */  
2594 - request.method = method;  
2595 - /** request url */  
2596 - request.url = url;  
2597 - return request;  
2598 -})();  
2599 -  
2600 -/** @description request parameter type for postOfficialWebsiteUploadAliOss */  
2601 -export interface PostOfficialWebsiteUploadAliOssOption {  
2602 - /**  
2603 - * @description  
2604 - * files  
2605 - */  
2606 - formData: {  
2607 - /**  
2608 - @description  
2609 - files */  
2610 - files: Array<File>;  
2611 - };  
2612 -}  
2613 -  
2614 -/** @description response type for postOfficialWebsiteUploadAliOss */  
2615 -export interface PostOfficialWebsiteUploadAliOssResponse {  
2616 - /**  
2617 - * @description  
2618 - * OK  
2619 - */  
2620 - 200: ServerResult;  
2621 - /**  
2622 - * @description  
2623 - * Created  
2624 - */  
2625 - 201: any;  
2626 - /**  
2627 - * @description  
2628 - * Unauthorized  
2629 - */  
2630 - 401: any;  
2631 - /**  
2632 - * @description  
2633 - * Forbidden  
2634 - */  
2635 - 403: any;  
2636 - /**  
2637 - * @description  
2638 - * Not Found  
2639 - */  
2640 - 404: any;  
2641 -}  
2642 -  
2643 -export type PostOfficialWebsiteUploadAliOssResponseSuccess =  
2644 - PostOfficialWebsiteUploadAliOssResponse[200];  
2645 -/**  
2646 - * @description  
2647 - * 为官网提供上传文件的接口  
2648 - * @tags 官网  
2649 - * @produces *  
2650 - * @consumes application/json  
2651 - */  
2652 -export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() => { 2497 +export const postKingdeeRepCustomer = /* #__PURE__ */ (() => {
2653 const method = 'post'; 2498 const method = 'post';
2654 - const url = '/official/website/uploadAliOss'; 2499 + const url = '/kingdee/rep/customer';
2655 function request( 2500 function request(
2656 - option: PostOfficialWebsiteUploadAliOssOption,  
2657 - ): Promise<PostOfficialWebsiteUploadAliOssResponseSuccess> { 2501 + option: PostKingdeeRepCustomerOption,
  2502 + ): Promise<PostKingdeeRepCustomerResponseSuccess> {
2658 return requester(request.url, { 2503 return requester(request.url, {
2659 method: request.method, 2504 method: request.method,
2660 ...option, 2505 ...option,
2661 - }) as unknown as Promise<PostOfficialWebsiteUploadAliOssResponseSuccess>; 2506 + }) as unknown as Promise<PostKingdeeRepCustomerResponseSuccess>;
2662 } 2507 }
2663 2508
2664 /** http method */ 2509 /** http method */
@@ -2668,27 +2513,27 @@ export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() =&gt; { @@ -2668,27 +2513,27 @@ export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() =&gt; {
2668 return request; 2513 return request;
2669 })(); 2514 })();
2670 2515
2671 -/** @description request parameter type for postOrderErpApplyList */  
2672 -export interface PostOrderErpApplyListOption { 2516 +/** @description request parameter type for postKingdeeRepCustomerDetail */
  2517 +export interface PostKingdeeRepCustomerDetailOption {
2673 /** 2518 /**
2674 * @description 2519 * @description
2675 - * orderFieldLockApplyQueryVO 2520 + * dto
2676 */ 2521 */
2677 body: { 2522 body: {
2678 /** 2523 /**
2679 @description 2524 @description
2680 - orderFieldLockApplyQueryVO */  
2681 - orderFieldLockApplyQueryVO: OrderFieldLockApplyQueryVO; 2525 + dto */
  2526 + dto: CustomerDetailDto;
2682 }; 2527 };
2683 } 2528 }
2684 2529
2685 -/** @description response type for postOrderErpApplyList */  
2686 -export interface PostOrderErpApplyListResponse { 2530 +/** @description response type for postKingdeeRepCustomerDetail */
  2531 +export interface PostKingdeeRepCustomerDetailResponse {
2687 /** 2532 /**
2688 * @description 2533 * @description
2689 * OK 2534 * OK
2690 */ 2535 */
2691 - 200: ServerResult; 2536 + 200: CustomerDetailRes;
2692 /** 2537 /**
2693 * @description 2538 * @description
2694 * Created 2539 * Created
@@ -2711,25 +2556,25 @@ export interface PostOrderErpApplyListResponse { @@ -2711,25 +2556,25 @@ export interface PostOrderErpApplyListResponse {
2711 404: any; 2556 404: any;
2712 } 2557 }
2713 2558
2714 -export type PostOrderErpApplyListResponseSuccess =  
2715 - PostOrderErpApplyListResponse[200]; 2559 +export type PostKingdeeRepCustomerDetailResponseSuccess =
  2560 + PostKingdeeRepCustomerDetailResponse[200];
2716 /** 2561 /**
2717 * @description 2562 * @description
2718 - * 分页查询  
2719 - * @tags 用户订单-字段锁定申请(忽略) 2563 + * getCustomerDetail
  2564 + * @tags kingdee-erp-controller
2720 * @produces * 2565 * @produces *
2721 * @consumes application/json 2566 * @consumes application/json
2722 */ 2567 */
2723 -export const postOrderErpApplyList = /* #__PURE__ */ (() => { 2568 +export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() => {
2724 const method = 'post'; 2569 const method = 'post';
2725 - const url = '/order/erp/apply/list'; 2570 + const url = '/kingdee/rep/customerDetail';
2726 function request( 2571 function request(
2727 - option: PostOrderErpApplyListOption,  
2728 - ): Promise<PostOrderErpApplyListResponseSuccess> { 2572 + option: PostKingdeeRepCustomerDetailOption,
  2573 + ): Promise<PostKingdeeRepCustomerDetailResponseSuccess> {
2729 return requester(request.url, { 2574 return requester(request.url, {
2730 method: request.method, 2575 method: request.method,
2731 ...option, 2576 ...option,
2732 - }) as unknown as Promise<PostOrderErpApplyListResponseSuccess>; 2577 + }) as unknown as Promise<PostKingdeeRepCustomerDetailResponseSuccess>;
2733 } 2578 }
2734 2579
2735 /** http method */ 2580 /** http method */
@@ -2739,27 +2584,27 @@ export const postOrderErpApplyList = /* #__PURE__ */ (() =&gt; { @@ -2739,27 +2584,27 @@ export const postOrderErpApplyList = /* #__PURE__ */ (() =&gt; {
2739 return request; 2584 return request;
2740 })(); 2585 })();
2741 2586
2742 -/** @description request parameter type for postOrderErpAuditAuditList */  
2743 -export interface PostOrderErpAuditAuditListOption { 2587 +/** @description request parameter type for postKingdeeRepCustomerSave */
  2588 +export interface PostKingdeeRepCustomerSaveOption {
2744 /** 2589 /**
2745 * @description 2590 * @description
2746 - * queryVO 2591 + * req
2747 */ 2592 */
2748 body: { 2593 body: {
2749 /** 2594 /**
2750 @description 2595 @description
2751 - queryVO */  
2752 - queryVO: OrderFieldLockApplyQueryVO; 2596 + req */
  2597 + req: CustomerSaveReq;
2753 }; 2598 };
2754 } 2599 }
2755 2600
2756 -/** @description response type for postOrderErpAuditAuditList */  
2757 -export interface PostOrderErpAuditAuditListResponse { 2601 +/** @description response type for postKingdeeRepCustomerSave */
  2602 +export interface PostKingdeeRepCustomerSaveResponse {
2758 /** 2603 /**
2759 * @description 2604 * @description
2760 * OK 2605 * OK
2761 */ 2606 */
2762 - 200: ServerResult; 2607 + 200: SaveReply;
2763 /** 2608 /**
2764 * @description 2609 * @description
2765 * Created 2610 * Created
@@ -2782,25 +2627,25 @@ export interface PostOrderErpAuditAuditListResponse { @@ -2782,25 +2627,25 @@ export interface PostOrderErpAuditAuditListResponse {
2782 404: any; 2627 404: any;
2783 } 2628 }
2784 2629
2785 -export type PostOrderErpAuditAuditListResponseSuccess =  
2786 - PostOrderErpAuditAuditListResponse[200]; 2630 +export type PostKingdeeRepCustomerSaveResponseSuccess =
  2631 + PostKingdeeRepCustomerSaveResponse[200];
2787 /** 2632 /**
2788 * @description 2633 * @description
2789 - * 已审批列表  
2790 - * @tags 审批管理 2634 + * customerSave
  2635 + * @tags kingdee-erp-controller
2791 * @produces * 2636 * @produces *
2792 * @consumes application/json 2637 * @consumes application/json
2793 */ 2638 */
2794 -export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => { 2639 +export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() => {
2795 const method = 'post'; 2640 const method = 'post';
2796 - const url = '/order/erp/audit/audit_list'; 2641 + const url = '/kingdee/rep/customerSave';
2797 function request( 2642 function request(
2798 - option: PostOrderErpAuditAuditListOption,  
2799 - ): Promise<PostOrderErpAuditAuditListResponseSuccess> { 2643 + option: PostKingdeeRepCustomerSaveOption,
  2644 + ): Promise<PostKingdeeRepCustomerSaveResponseSuccess> {
2800 return requester(request.url, { 2645 return requester(request.url, {
2801 method: request.method, 2646 method: request.method,
2802 ...option, 2647 ...option,
2803 - }) as unknown as Promise<PostOrderErpAuditAuditListResponseSuccess>; 2648 + }) as unknown as Promise<PostKingdeeRepCustomerSaveResponseSuccess>;
2804 } 2649 }
2805 2650
2806 /** http method */ 2651 /** http method */
@@ -2810,27 +2655,27 @@ export const postOrderErpAuditAuditList = /* #__PURE__ */ (() =&gt; { @@ -2810,27 +2655,27 @@ export const postOrderErpAuditAuditList = /* #__PURE__ */ (() =&gt; {
2810 return request; 2655 return request;
2811 })(); 2656 })();
2812 2657
2813 -/** @description request parameter type for postOrderErpAuditDoAudit */  
2814 -export interface PostOrderErpAuditDoAuditOption { 2658 +/** @description request parameter type for postKingdeeRepMaterial */
  2659 +export interface PostKingdeeRepMaterialOption {
2815 /** 2660 /**
2816 * @description 2661 * @description
2817 - * auditVO 2662 + * req
2818 */ 2663 */
2819 body: { 2664 body: {
2820 /** 2665 /**
2821 @description 2666 @description
2822 - auditVO */  
2823 - auditVO: AuditVO; 2667 + req */
  2668 + req: MaterialMaterialListReq;
2824 }; 2669 };
2825 } 2670 }
2826 2671
2827 -/** @description response type for postOrderErpAuditDoAudit */  
2828 -export interface PostOrderErpAuditDoAuditResponse { 2672 +/** @description response type for postKingdeeRepMaterial */
  2673 +export interface PostKingdeeRepMaterialResponse {
2829 /** 2674 /**
2830 * @description 2675 * @description
2831 * OK 2676 * OK
2832 */ 2677 */
2833 - 200: ServerResult; 2678 + 200: MaterialListReply;
2834 /** 2679 /**
2835 * @description 2680 * @description
2836 * Created 2681 * Created
@@ -2853,25 +2698,25 @@ export interface PostOrderErpAuditDoAuditResponse { @@ -2853,25 +2698,25 @@ export interface PostOrderErpAuditDoAuditResponse {
2853 404: any; 2698 404: any;
2854 } 2699 }
2855 2700
2856 -export type PostOrderErpAuditDoAuditResponseSuccess =  
2857 - PostOrderErpAuditDoAuditResponse[200]; 2701 +export type PostKingdeeRepMaterialResponseSuccess =
  2702 + PostKingdeeRepMaterialResponse[200];
2858 /** 2703 /**
2859 * @description 2704 * @description
2860 - * 审核  
2861 - * @tags 审批管理 2705 + * listMaterial
  2706 + * @tags kingdee-erp-controller
2862 * @produces * 2707 * @produces *
2863 * @consumes application/json 2708 * @consumes application/json
2864 */ 2709 */
2865 -export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => { 2710 +export const postKingdeeRepMaterial = /* #__PURE__ */ (() => {
2866 const method = 'post'; 2711 const method = 'post';
2867 - const url = '/order/erp/audit/do_audit'; 2712 + const url = '/kingdee/rep/material';
2868 function request( 2713 function request(
2869 - option: PostOrderErpAuditDoAuditOption,  
2870 - ): Promise<PostOrderErpAuditDoAuditResponseSuccess> { 2714 + option: PostKingdeeRepMaterialOption,
  2715 + ): Promise<PostKingdeeRepMaterialResponseSuccess> {
2871 return requester(request.url, { 2716 return requester(request.url, {
2872 method: request.method, 2717 method: request.method,
2873 ...option, 2718 ...option,
2874 - }) as unknown as Promise<PostOrderErpAuditDoAuditResponseSuccess>; 2719 + }) as unknown as Promise<PostKingdeeRepMaterialResponseSuccess>;
2875 } 2720 }
2876 2721
2877 /** http method */ 2722 /** http method */
@@ -2881,27 +2726,27 @@ export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() =&gt; { @@ -2881,27 +2726,27 @@ export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() =&gt; {
2881 return request; 2726 return request;
2882 })(); 2727 })();
2883 2728
2884 -/** @description request parameter type for postOrderErpAuditListByPage */  
2885 -export interface PostOrderErpAuditListByPageOption { 2729 +/** @description request parameter type for postKingdeeRepMaterialStock */
  2730 +export interface PostKingdeeRepMaterialStockOption {
2886 /** 2731 /**
2887 * @description 2732 * @description
2888 - * queryVO 2733 + * req
2889 */ 2734 */
2890 body: { 2735 body: {
2891 /** 2736 /**
2892 @description 2737 @description
2893 - queryVO */  
2894 - queryVO: OrderFieldLockApplyQueryVO; 2738 + req */
  2739 + req: InventoryMaterialStockReq;
2895 }; 2740 };
2896 } 2741 }
2897 2742
2898 -/** @description response type for postOrderErpAuditListByPage */  
2899 -export interface PostOrderErpAuditListByPageResponse { 2743 +/** @description response type for postKingdeeRepMaterialStock */
  2744 +export interface PostKingdeeRepMaterialStockResponse {
2900 /** 2745 /**
2901 * @description 2746 * @description
2902 * OK 2747 * OK
2903 */ 2748 */
2904 - 200: ServerResult; 2749 + 200: MaterialStockRes;
2905 /** 2750 /**
2906 * @description 2751 * @description
2907 * Created 2752 * Created
@@ -2924,25 +2769,25 @@ export interface PostOrderErpAuditListByPageResponse { @@ -2924,25 +2769,25 @@ export interface PostOrderErpAuditListByPageResponse {
2924 404: any; 2769 404: any;
2925 } 2770 }
2926 2771
2927 -export type PostOrderErpAuditListByPageResponseSuccess =  
2928 - PostOrderErpAuditListByPageResponse[200]; 2772 +export type PostKingdeeRepMaterialStockResponseSuccess =
  2773 + PostKingdeeRepMaterialStockResponse[200];
2929 /** 2774 /**
2930 * @description 2775 * @description
2931 - * 分页查询  
2932 - * @tags 审批管理 2776 + * listMaterialStock
  2777 + * @tags kingdee-erp-controller
2933 * @produces * 2778 * @produces *
2934 * @consumes application/json 2779 * @consumes application/json
2935 */ 2780 */
2936 -export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => { 2781 +export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() => {
2937 const method = 'post'; 2782 const method = 'post';
2938 - const url = '/order/erp/audit/list_by_page'; 2783 + const url = '/kingdee/rep/materialStock';
2939 function request( 2784 function request(
2940 - option: PostOrderErpAuditListByPageOption,  
2941 - ): Promise<PostOrderErpAuditListByPageResponseSuccess> { 2785 + option: PostKingdeeRepMaterialStockOption,
  2786 + ): Promise<PostKingdeeRepMaterialStockResponseSuccess> {
2942 return requester(request.url, { 2787 return requester(request.url, {
2943 method: request.method, 2788 method: request.method,
2944 ...option, 2789 ...option,
2945 - }) as unknown as Promise<PostOrderErpAuditListByPageResponseSuccess>; 2790 + }) as unknown as Promise<PostKingdeeRepMaterialStockResponseSuccess>;
2946 } 2791 }
2947 2792
2948 /** http method */ 2793 /** http method */
@@ -2952,27 +2797,27 @@ export const postOrderErpAuditListByPage = /* #__PURE__ */ (() =&gt; { @@ -2952,27 +2797,27 @@ export const postOrderErpAuditListByPage = /* #__PURE__ */ (() =&gt; {
2952 return request; 2797 return request;
2953 })(); 2798 })();
2954 2799
2955 -/** @description request parameter type for postOrderErpAuditLogListByPage */  
2956 -export interface PostOrderErpAuditLogListByPageOption { 2800 +/** @description request parameter type for postKingdeeRepMaterialUnit */
  2801 +export interface PostKingdeeRepMaterialUnitOption {
2957 /** 2802 /**
2958 * @description 2803 * @description
2959 - * orderAuditLogQueryVO 2804 + * req
2960 */ 2805 */
2961 body: { 2806 body: {
2962 /** 2807 /**
2963 @description 2808 @description
2964 - orderAuditLogQueryVO */  
2965 - orderAuditLogQueryVO: OrderAuditLogQueryVO; 2809 + req */
  2810 + req: UnitMaterialUnitListReq;
2966 }; 2811 };
2967 } 2812 }
2968 2813
2969 -/** @description response type for postOrderErpAuditLogListByPage */  
2970 -export interface PostOrderErpAuditLogListByPageResponse { 2814 +/** @description response type for postKingdeeRepMaterialUnit */
  2815 +export interface PostKingdeeRepMaterialUnitResponse {
2971 /** 2816 /**
2972 * @description 2817 * @description
2973 * OK 2818 * OK
2974 */ 2819 */
2975 - 200: ServerResult; 2820 + 200: MaterialUnitListRes;
2976 /** 2821 /**
2977 * @description 2822 * @description
2978 * Created 2823 * Created
@@ -2995,25 +2840,25 @@ export interface PostOrderErpAuditLogListByPageResponse { @@ -2995,25 +2840,25 @@ export interface PostOrderErpAuditLogListByPageResponse {
2995 404: any; 2840 404: any;
2996 } 2841 }
2997 2842
2998 -export type PostOrderErpAuditLogListByPageResponseSuccess =  
2999 - PostOrderErpAuditLogListByPageResponse[200]; 2843 +export type PostKingdeeRepMaterialUnitResponseSuccess =
  2844 + PostKingdeeRepMaterialUnitResponse[200];
3000 /** 2845 /**
3001 * @description 2846 * @description
3002 - * 分页查询  
3003 - * @tags 用户订单审批日志 2847 + * getMaterialDetail
  2848 + * @tags kingdee-erp-controller
3004 * @produces * 2849 * @produces *
3005 * @consumes application/json 2850 * @consumes application/json
3006 */ 2851 */
3007 -export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => { 2852 +export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() => {
3008 const method = 'post'; 2853 const method = 'post';
3009 - const url = '/order/erp/audit/log/list_by_page'; 2854 + const url = '/kingdee/rep/materialUnit';
3010 function request( 2855 function request(
3011 - option: PostOrderErpAuditLogListByPageOption,  
3012 - ): Promise<PostOrderErpAuditLogListByPageResponseSuccess> { 2856 + option: PostKingdeeRepMaterialUnitOption,
  2857 + ): Promise<PostKingdeeRepMaterialUnitResponseSuccess> {
3013 return requester(request.url, { 2858 return requester(request.url, {
3014 method: request.method, 2859 method: request.method,
3015 ...option, 2860 ...option,
3016 - }) as unknown as Promise<PostOrderErpAuditLogListByPageResponseSuccess>; 2861 + }) as unknown as Promise<PostKingdeeRepMaterialUnitResponseSuccess>;
3017 } 2862 }
3018 2863
3019 /** http method */ 2864 /** http method */
@@ -3023,27 +2868,27 @@ export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() =&gt; { @@ -3023,27 +2868,27 @@ export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() =&gt; {
3023 return request; 2868 return request;
3024 })(); 2869 })();
3025 2870
3026 -/** @description request parameter type for postOrderErpAuditLogQueryById */  
3027 -export interface PostOrderErpAuditLogQueryByIdOption { 2871 +/** @description request parameter type for postKingdeeRepMeasureUnit */
  2872 +export interface PostKingdeeRepMeasureUnitOption {
3028 /** 2873 /**
3029 * @description 2874 * @description
3030 - * orderAuditLogQueryVO 2875 + * req
3031 */ 2876 */
3032 body: { 2877 body: {
3033 /** 2878 /**
3034 @description 2879 @description
3035 - orderAuditLogQueryVO */  
3036 - orderAuditLogQueryVO: OrderAuditLogQueryVO; 2880 + req */
  2881 + req: UnitMeasureUnitListReq;
3037 }; 2882 };
3038 } 2883 }
3039 2884
3040 -/** @description response type for postOrderErpAuditLogQueryById */  
3041 -export interface PostOrderErpAuditLogQueryByIdResponse { 2885 +/** @description response type for postKingdeeRepMeasureUnit */
  2886 +export interface PostKingdeeRepMeasureUnitResponse {
3042 /** 2887 /**
3043 * @description 2888 * @description
3044 * OK 2889 * OK
3045 */ 2890 */
3046 - 200: ServerResult; 2891 + 200: MeasureUnitListRes;
3047 /** 2892 /**
3048 * @description 2893 * @description
3049 * Created 2894 * Created
@@ -3066,25 +2911,25 @@ export interface PostOrderErpAuditLogQueryByIdResponse { @@ -3066,25 +2911,25 @@ export interface PostOrderErpAuditLogQueryByIdResponse {
3066 404: any; 2911 404: any;
3067 } 2912 }
3068 2913
3069 -export type PostOrderErpAuditLogQueryByIdResponseSuccess =  
3070 - PostOrderErpAuditLogQueryByIdResponse[200]; 2914 +export type PostKingdeeRepMeasureUnitResponseSuccess =
  2915 + PostKingdeeRepMeasureUnitResponse[200];
3071 /** 2916 /**
3072 * @description 2917 * @description
3073 - * 通过主键查询单条数据  
3074 - * @tags 用户订单审批日志 2918 + * getCustomerDetail
  2919 + * @tags kingdee-erp-controller
3075 * @produces * 2920 * @produces *
3076 * @consumes application/json 2921 * @consumes application/json
3077 */ 2922 */
3078 -export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() => { 2923 +export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() => {
3079 const method = 'post'; 2924 const method = 'post';
3080 - const url = '/order/erp/audit/log/query_by_id'; 2925 + const url = '/kingdee/rep/measureUnit';
3081 function request( 2926 function request(
3082 - option: PostOrderErpAuditLogQueryByIdOption,  
3083 - ): Promise<PostOrderErpAuditLogQueryByIdResponseSuccess> { 2927 + option: PostKingdeeRepMeasureUnitOption,
  2928 + ): Promise<PostKingdeeRepMeasureUnitResponseSuccess> {
3084 return requester(request.url, { 2929 return requester(request.url, {
3085 method: request.method, 2930 method: request.method,
3086 ...option, 2931 ...option,
3087 - }) as unknown as Promise<PostOrderErpAuditLogQueryByIdResponseSuccess>; 2932 + }) as unknown as Promise<PostKingdeeRepMeasureUnitResponseSuccess>;
3088 } 2933 }
3089 2934
3090 /** http method */ 2935 /** http method */
@@ -3094,22 +2939,22 @@ export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() =&gt; { @@ -3094,22 +2939,22 @@ export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() =&gt; {
3094 return request; 2939 return request;
3095 })(); 2940 })();
3096 2941
3097 -/** @description request parameter type for postOrderErpAuditWaitAuditList */  
3098 -export interface PostOrderErpAuditWaitAuditListOption { 2942 +/** @description request parameter type for postKingdeeRepSalBillOutbound */
  2943 +export interface PostKingdeeRepSalBillOutboundOption {
3099 /** 2944 /**
3100 * @description 2945 * @description
3101 - * queryVO 2946 + * salOrderSaveDto
3102 */ 2947 */
3103 body: { 2948 body: {
3104 /** 2949 /**
3105 @description 2950 @description
3106 - queryVO */  
3107 - queryVO: OrderFieldLockApplyQueryVO; 2951 + salOrderSaveDto */
  2952 + salOrderSaveDto: SalOrderSaveDto;
3108 }; 2953 };
3109 } 2954 }
3110 2955
3111 -/** @description response type for postOrderErpAuditWaitAuditList */  
3112 -export interface PostOrderErpAuditWaitAuditListResponse { 2956 +/** @description response type for postKingdeeRepSalBillOutbound */
  2957 +export interface PostKingdeeRepSalBillOutboundResponse {
3113 /** 2958 /**
3114 * @description 2959 * @description
3115 * OK 2960 * OK
@@ -3137,25 +2982,25 @@ export interface PostOrderErpAuditWaitAuditListResponse { @@ -3137,25 +2982,25 @@ export interface PostOrderErpAuditWaitAuditListResponse {
3137 404: any; 2982 404: any;
3138 } 2983 }
3139 2984
3140 -export type PostOrderErpAuditWaitAuditListResponseSuccess =  
3141 - PostOrderErpAuditWaitAuditListResponse[200]; 2985 +export type PostKingdeeRepSalBillOutboundResponseSuccess =
  2986 + PostKingdeeRepSalBillOutboundResponse[200];
3142 /** 2987 /**
3143 * @description 2988 * @description
3144 - * 待审批列表  
3145 - * @tags 审批管理 2989 + * salBillOutbound
  2990 + * @tags kingdee-erp-controller
3146 * @produces * 2991 * @produces *
3147 * @consumes application/json 2992 * @consumes application/json
3148 */ 2993 */
3149 -export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() => { 2994 +export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() => {
3150 const method = 'post'; 2995 const method = 'post';
3151 - const url = '/order/erp/audit/wait_audit_list'; 2996 + const url = '/kingdee/rep/salBillOutbound';
3152 function request( 2997 function request(
3153 - option: PostOrderErpAuditWaitAuditListOption,  
3154 - ): Promise<PostOrderErpAuditWaitAuditListResponseSuccess> { 2998 + option: PostKingdeeRepSalBillOutboundOption,
  2999 + ): Promise<PostKingdeeRepSalBillOutboundResponseSuccess> {
3155 return requester(request.url, { 3000 return requester(request.url, {
3156 method: request.method, 3001 method: request.method,
3157 ...option, 3002 ...option,
3158 - }) as unknown as Promise<PostOrderErpAuditWaitAuditListResponseSuccess>; 3003 + }) as unknown as Promise<PostKingdeeRepSalBillOutboundResponseSuccess>;
3159 } 3004 }
3160 3005
3161 /** http method */ 3006 /** http method */
@@ -3165,22 +3010,22 @@ export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() =&gt; { @@ -3165,22 +3010,22 @@ export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() =&gt; {
3165 return request; 3010 return request;
3166 })(); 3011 })();
3167 3012
3168 -/** @description request parameter type for postOrderErpAuthLoginByPhone */  
3169 -export interface PostOrderErpAuthLoginByPhoneOption { 3013 +/** @description request parameter type for postKingdeeRepSalOrderSave */
  3014 +export interface PostKingdeeRepSalOrderSaveOption {
3170 /** 3015 /**
3171 * @description 3016 * @description
3172 - * loginByPhoneVO 3017 + * salOrderSaveDto
3173 */ 3018 */
3174 body: { 3019 body: {
3175 /** 3020 /**
3176 @description 3021 @description
3177 - loginByPhoneVO */  
3178 - loginByPhoneVO: AdminUserLoginByPhoneVO; 3022 + salOrderSaveDto */
  3023 + salOrderSaveDto: SalOrderSaveDto;
3179 }; 3024 };
3180 } 3025 }
3181 3026
3182 -/** @description response type for postOrderErpAuthLoginByPhone */  
3183 -export interface PostOrderErpAuthLoginByPhoneResponse { 3027 +/** @description response type for postKingdeeRepSalOrderSave */
  3028 +export interface PostKingdeeRepSalOrderSaveResponse {
3184 /** 3029 /**
3185 * @description 3030 * @description
3186 * OK 3031 * OK
@@ -3208,25 +3053,25 @@ export interface PostOrderErpAuthLoginByPhoneResponse { @@ -3208,25 +3053,25 @@ export interface PostOrderErpAuthLoginByPhoneResponse {
3208 404: any; 3053 404: any;
3209 } 3054 }
3210 3055
3211 -export type PostOrderErpAuthLoginByPhoneResponseSuccess =  
3212 - PostOrderErpAuthLoginByPhoneResponse[200]; 3056 +export type PostKingdeeRepSalOrderSaveResponseSuccess =
  3057 + PostKingdeeRepSalOrderSaveResponse[200];
3213 /** 3058 /**
3214 * @description 3059 * @description
3215 - * 手机登录  
3216 - * @tags login-controller 3060 + * salOrderSave
  3061 + * @tags kingdee-erp-controller
3217 * @produces * 3062 * @produces *
3218 * @consumes application/json 3063 * @consumes application/json
3219 */ 3064 */
3220 -export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => { 3065 +export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() => {
3221 const method = 'post'; 3066 const method = 'post';
3222 - const url = '/order/erp/auth/login_by_phone'; 3067 + const url = '/kingdee/rep/salOrderSave';
3223 function request( 3068 function request(
3224 - option: PostOrderErpAuthLoginByPhoneOption,  
3225 - ): Promise<PostOrderErpAuthLoginByPhoneResponseSuccess> { 3069 + option: PostKingdeeRepSalOrderSaveOption,
  3070 + ): Promise<PostKingdeeRepSalOrderSaveResponseSuccess> {
3226 return requester(request.url, { 3071 return requester(request.url, {
3227 method: request.method, 3072 method: request.method,
3228 ...option, 3073 ...option,
3229 - }) as unknown as Promise<PostOrderErpAuthLoginByPhoneResponseSuccess>; 3074 + }) as unknown as Promise<PostKingdeeRepSalOrderSaveResponseSuccess>;
3230 } 3075 }
3231 3076
3232 /** http method */ 3077 /** http method */
@@ -3236,27 +3081,27 @@ export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() =&gt; { @@ -3236,27 +3081,27 @@ export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() =&gt; {
3236 return request; 3081 return request;
3237 })(); 3082 })();
3238 3083
3239 -/** @description request parameter type for postOrderErpAuthLoginByPwd */  
3240 -export interface PostOrderErpAuthLoginByPwdOption { 3084 +/** @description request parameter type for postKingdeeRepSystemCustomField */
  3085 +export interface PostKingdeeRepSystemCustomFieldOption {
3241 /** 3086 /**
3242 * @description 3087 * @description
3243 - * loginByPwdVO 3088 + * req
3244 */ 3089 */
3245 body: { 3090 body: {
3246 /** 3091 /**
3247 @description 3092 @description
3248 - loginByPwdVO */  
3249 - loginByPwdVO: AdminUserLoginByPwdVO; 3093 + req */
  3094 + req: SystemCustomFieldReq;
3250 }; 3095 };
3251 } 3096 }
3252 3097
3253 -/** @description response type for postOrderErpAuthLoginByPwd */  
3254 -export interface PostOrderErpAuthLoginByPwdResponse { 3098 +/** @description response type for postKingdeeRepSystemCustomField */
  3099 +export interface PostKingdeeRepSystemCustomFieldResponse {
3255 /** 3100 /**
3256 * @description 3101 * @description
3257 * OK 3102 * OK
3258 */ 3103 */
3259 - 200: ServerResult; 3104 + 200: CustomFieldRes;
3260 /** 3105 /**
3261 * @description 3106 * @description
3262 * Created 3107 * Created
@@ -3279,25 +3124,25 @@ export interface PostOrderErpAuthLoginByPwdResponse { @@ -3279,25 +3124,25 @@ export interface PostOrderErpAuthLoginByPwdResponse {
3279 404: any; 3124 404: any;
3280 } 3125 }
3281 3126
3282 -export type PostOrderErpAuthLoginByPwdResponseSuccess =  
3283 - PostOrderErpAuthLoginByPwdResponse[200]; 3127 +export type PostKingdeeRepSystemCustomFieldResponseSuccess =
  3128 + PostKingdeeRepSystemCustomFieldResponse[200];
3284 /** 3129 /**
3285 * @description 3130 * @description
3286 - * 用户登录  
3287 - * @tags login-controller 3131 + * listCustomFields
  3132 + * @tags kingdee-erp-controller
3288 * @produces * 3133 * @produces *
3289 * @consumes application/json 3134 * @consumes application/json
3290 */ 3135 */
3291 -export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => { 3136 +export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() => {
3292 const method = 'post'; 3137 const method = 'post';
3293 - const url = '/order/erp/auth/login_by_pwd'; 3138 + const url = '/kingdee/rep/systemCustomField';
3294 function request( 3139 function request(
3295 - option: PostOrderErpAuthLoginByPwdOption,  
3296 - ): Promise<PostOrderErpAuthLoginByPwdResponseSuccess> { 3140 + option: PostKingdeeRepSystemCustomFieldOption,
  3141 + ): Promise<PostKingdeeRepSystemCustomFieldResponseSuccess> {
3297 return requester(request.url, { 3142 return requester(request.url, {
3298 method: request.method, 3143 method: request.method,
3299 ...option, 3144 ...option,
3300 - }) as unknown as Promise<PostOrderErpAuthLoginByPwdResponseSuccess>; 3145 + }) as unknown as Promise<PostKingdeeRepSystemCustomFieldResponseSuccess>;
3301 } 3146 }
3302 3147
3303 /** http method */ 3148 /** http method */
@@ -3307,8 +3152,22 @@ export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() =&gt; { @@ -3307,8 +3152,22 @@ export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() =&gt; {
3307 return request; 3152 return request;
3308 })(); 3153 })();
3309 3154
3310 -/** @description response type for postOrderErpAuthLoginOut */  
3311 -export interface PostOrderErpAuthLoginOutResponse { 3155 +/** @description request parameter type for postOfficialWebsiteUploadAliOss */
  3156 +export interface PostOfficialWebsiteUploadAliOssOption {
  3157 + /**
  3158 + * @description
  3159 + * files
  3160 + */
  3161 + formData: {
  3162 + /**
  3163 + @description
  3164 + files */
  3165 + files: Array<File>;
  3166 + };
  3167 +}
  3168 +
  3169 +/** @description response type for postOfficialWebsiteUploadAliOss */
  3170 +export interface PostOfficialWebsiteUploadAliOssResponse {
3312 /** 3171 /**
3313 * @description 3172 * @description
3314 * OK 3173 * OK
@@ -3336,22 +3195,25 @@ export interface PostOrderErpAuthLoginOutResponse { @@ -3336,22 +3195,25 @@ export interface PostOrderErpAuthLoginOutResponse {
3336 404: any; 3195 404: any;
3337 } 3196 }
3338 3197
3339 -export type PostOrderErpAuthLoginOutResponseSuccess =  
3340 - PostOrderErpAuthLoginOutResponse[200]; 3198 +export type PostOfficialWebsiteUploadAliOssResponseSuccess =
  3199 + PostOfficialWebsiteUploadAliOssResponse[200];
3341 /** 3200 /**
3342 * @description 3201 * @description
3343 - * 退出登录  
3344 - * @tags login-controller 3202 + * 为官网提供上传文件的接口
  3203 + * @tags 官网
3345 * @produces * 3204 * @produces *
3346 * @consumes application/json 3205 * @consumes application/json
3347 */ 3206 */
3348 -export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => { 3207 +export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() => {
3349 const method = 'post'; 3208 const method = 'post';
3350 - const url = '/order/erp/auth/login_out';  
3351 - function request(): Promise<PostOrderErpAuthLoginOutResponseSuccess> { 3209 + const url = '/official/website/uploadAliOss';
  3210 + function request(
  3211 + option: PostOfficialWebsiteUploadAliOssOption,
  3212 + ): Promise<PostOfficialWebsiteUploadAliOssResponseSuccess> {
3352 return requester(request.url, { 3213 return requester(request.url, {
3353 method: request.method, 3214 method: request.method,
3354 - }) as unknown as Promise<PostOrderErpAuthLoginOutResponseSuccess>; 3215 + ...option,
  3216 + }) as unknown as Promise<PostOfficialWebsiteUploadAliOssResponseSuccess>;
3355 } 3217 }
3356 3218
3357 /** http method */ 3219 /** http method */
@@ -3361,22 +3223,22 @@ export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() =&gt; { @@ -3361,22 +3223,22 @@ export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() =&gt; {
3361 return request; 3223 return request;
3362 })(); 3224 })();
3363 3225
3364 -/** @description request parameter type for postOrderErpAuthPasswordModify */  
3365 -export interface PostOrderErpAuthPasswordModifyOption { 3226 +/** @description request parameter type for postOrderErpApplyList */
  3227 +export interface PostOrderErpApplyListOption {
3366 /** 3228 /**
3367 * @description 3229 * @description
3368 - * modifyPwdVO 3230 + * orderFieldLockApplyQueryVO
3369 */ 3231 */
3370 body: { 3232 body: {
3371 /** 3233 /**
3372 @description 3234 @description
3373 - modifyPwdVO */  
3374 - modifyPwdVO: AdminUserModifyPwdVO; 3235 + orderFieldLockApplyQueryVO */
  3236 + orderFieldLockApplyQueryVO: OrderFieldLockApplyQueryVO;
3375 }; 3237 };
3376 } 3238 }
3377 3239
3378 -/** @description response type for postOrderErpAuthPasswordModify */  
3379 -export interface PostOrderErpAuthPasswordModifyResponse { 3240 +/** @description response type for postOrderErpApplyList */
  3241 +export interface PostOrderErpApplyListResponse {
3380 /** 3242 /**
3381 * @description 3243 * @description
3382 * OK 3244 * OK
@@ -3404,25 +3266,25 @@ export interface PostOrderErpAuthPasswordModifyResponse { @@ -3404,25 +3266,25 @@ export interface PostOrderErpAuthPasswordModifyResponse {
3404 404: any; 3266 404: any;
3405 } 3267 }
3406 3268
3407 -export type PostOrderErpAuthPasswordModifyResponseSuccess =  
3408 - PostOrderErpAuthPasswordModifyResponse[200]; 3269 +export type PostOrderErpApplyListResponseSuccess =
  3270 + PostOrderErpApplyListResponse[200];
3409 /** 3271 /**
3410 * @description 3272 * @description
3411 - * 用户登录  
3412 - * @tags login-controller 3273 + * 分页查询
  3274 + * @tags 用户订单-字段锁定申请(忽略)
3413 * @produces * 3275 * @produces *
3414 * @consumes application/json 3276 * @consumes application/json
3415 */ 3277 */
3416 -export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => { 3278 +export const postOrderErpApplyList = /* #__PURE__ */ (() => {
3417 const method = 'post'; 3279 const method = 'post';
3418 - const url = '/order/erp/auth/password_modify'; 3280 + const url = '/order/erp/apply/list';
3419 function request( 3281 function request(
3420 - option: PostOrderErpAuthPasswordModifyOption,  
3421 - ): Promise<PostOrderErpAuthPasswordModifyResponseSuccess> { 3282 + option: PostOrderErpApplyListOption,
  3283 + ): Promise<PostOrderErpApplyListResponseSuccess> {
3422 return requester(request.url, { 3284 return requester(request.url, {
3423 method: request.method, 3285 method: request.method,
3424 ...option, 3286 ...option,
3425 - }) as unknown as Promise<PostOrderErpAuthPasswordModifyResponseSuccess>; 3287 + }) as unknown as Promise<PostOrderErpApplyListResponseSuccess>;
3426 } 3288 }
3427 3289
3428 /** http method */ 3290 /** http method */
@@ -3432,22 +3294,22 @@ export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() =&gt; { @@ -3432,22 +3294,22 @@ export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() =&gt; {
3432 return request; 3294 return request;
3433 })(); 3295 })();
3434 3296
3435 -/** @description request parameter type for postOrderErpAuthPhoneRegister */  
3436 -export interface PostOrderErpAuthPhoneRegisterOption { 3297 +/** @description request parameter type for postOrderErpAuditAuditList */
  3298 +export interface PostOrderErpAuditAuditListOption {
3437 /** 3299 /**
3438 * @description 3300 * @description
3439 - * registerVO 3301 + * queryVO
3440 */ 3302 */
3441 body: { 3303 body: {
3442 /** 3304 /**
3443 @description 3305 @description
3444 - registerVO */  
3445 - registerVO: AdminUserRegisterVO; 3306 + queryVO */
  3307 + queryVO: OrderFieldLockApplyQueryVO;
3446 }; 3308 };
3447 } 3309 }
3448 3310
3449 -/** @description response type for postOrderErpAuthPhoneRegister */  
3450 -export interface PostOrderErpAuthPhoneRegisterResponse { 3311 +/** @description response type for postOrderErpAuditAuditList */
  3312 +export interface PostOrderErpAuditAuditListResponse {
3451 /** 3313 /**
3452 * @description 3314 * @description
3453 * OK 3315 * OK
@@ -3475,25 +3337,25 @@ export interface PostOrderErpAuthPhoneRegisterResponse { @@ -3475,25 +3337,25 @@ export interface PostOrderErpAuthPhoneRegisterResponse {
3475 404: any; 3337 404: any;
3476 } 3338 }
3477 3339
3478 -export type PostOrderErpAuthPhoneRegisterResponseSuccess =  
3479 - PostOrderErpAuthPhoneRegisterResponse[200]; 3340 +export type PostOrderErpAuditAuditListResponseSuccess =
  3341 + PostOrderErpAuditAuditListResponse[200];
3480 /** 3342 /**
3481 * @description 3343 * @description
3482 - * 手机注册  
3483 - * @tags login-controller 3344 + * 已审批列表
  3345 + * @tags 审批管理
3484 * @produces * 3346 * @produces *
3485 * @consumes application/json 3347 * @consumes application/json
3486 */ 3348 */
3487 -export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => { 3349 +export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => {
3488 const method = 'post'; 3350 const method = 'post';
3489 - const url = '/order/erp/auth/phone_register'; 3351 + const url = '/order/erp/audit/audit_list';
3490 function request( 3352 function request(
3491 - option: PostOrderErpAuthPhoneRegisterOption,  
3492 - ): Promise<PostOrderErpAuthPhoneRegisterResponseSuccess> { 3353 + option: PostOrderErpAuditAuditListOption,
  3354 + ): Promise<PostOrderErpAuditAuditListResponseSuccess> {
3493 return requester(request.url, { 3355 return requester(request.url, {
3494 method: request.method, 3356 method: request.method,
3495 ...option, 3357 ...option,
3496 - }) as unknown as Promise<PostOrderErpAuthPhoneRegisterResponseSuccess>; 3358 + }) as unknown as Promise<PostOrderErpAuditAuditListResponseSuccess>;
3497 } 3359 }
3498 3360
3499 /** http method */ 3361 /** http method */
@@ -3503,22 +3365,22 @@ export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() =&gt; { @@ -3503,22 +3365,22 @@ export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() =&gt; {
3503 return request; 3365 return request;
3504 })(); 3366 })();
3505 3367
3506 -/** @description request parameter type for postOrderErpAuthSendPasswordRecoverMail */  
3507 -export interface PostOrderErpAuthSendPasswordRecoverMailOption { 3368 +/** @description request parameter type for postOrderErpAuditDoAudit */
  3369 +export interface PostOrderErpAuditDoAuditOption {
3508 /** 3370 /**
3509 * @description 3371 * @description
3510 - * recoverEmailVO 3372 + * auditVO
3511 */ 3373 */
3512 body: { 3374 body: {
3513 /** 3375 /**
3514 @description 3376 @description
3515 - recoverEmailVO */  
3516 - recoverEmailVO: AdminUserPasswordRecoverEmailVO; 3377 + auditVO */
  3378 + auditVO: AuditVO;
3517 }; 3379 };
3518 } 3380 }
3519 3381
3520 -/** @description response type for postOrderErpAuthSendPasswordRecoverMail */  
3521 -export interface PostOrderErpAuthSendPasswordRecoverMailResponse { 3382 +/** @description response type for postOrderErpAuditDoAudit */
  3383 +export interface PostOrderErpAuditDoAuditResponse {
3522 /** 3384 /**
3523 * @description 3385 * @description
3524 * OK 3386 * OK
@@ -3546,25 +3408,25 @@ export interface PostOrderErpAuthSendPasswordRecoverMailResponse { @@ -3546,25 +3408,25 @@ export interface PostOrderErpAuthSendPasswordRecoverMailResponse {
3546 404: any; 3408 404: any;
3547 } 3409 }
3548 3410
3549 -export type PostOrderErpAuthSendPasswordRecoverMailResponseSuccess =  
3550 - PostOrderErpAuthSendPasswordRecoverMailResponse[200]; 3411 +export type PostOrderErpAuditDoAuditResponseSuccess =
  3412 + PostOrderErpAuditDoAuditResponse[200];
3551 /** 3413 /**
3552 * @description 3414 * @description
3553 - * sendPasswordRecoverMail  
3554 - * @tags login-controller 3415 + * 审核
  3416 + * @tags 审批管理
3555 * @produces * 3417 * @produces *
3556 * @consumes application/json 3418 * @consumes application/json
3557 */ 3419 */
3558 -export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => { 3420 +export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => {
3559 const method = 'post'; 3421 const method = 'post';
3560 - const url = '/order/erp/auth/send_password_recover_mail'; 3422 + const url = '/order/erp/audit/do_audit';
3561 function request( 3423 function request(
3562 - option: PostOrderErpAuthSendPasswordRecoverMailOption,  
3563 - ): Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess> { 3424 + option: PostOrderErpAuditDoAuditOption,
  3425 + ): Promise<PostOrderErpAuditDoAuditResponseSuccess> {
3564 return requester(request.url, { 3426 return requester(request.url, {
3565 method: request.method, 3427 method: request.method,
3566 ...option, 3428 ...option,
3567 - }) as unknown as Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess>; 3429 + }) as unknown as Promise<PostOrderErpAuditDoAuditResponseSuccess>;
3568 } 3430 }
3569 3431
3570 /** http method */ 3432 /** http method */
@@ -3574,22 +3436,22 @@ export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() =&gt; { @@ -3574,22 +3436,22 @@ export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() =&gt; {
3574 return request; 3436 return request;
3575 })(); 3437 })();
3576 3438
3577 -/** @description request parameter type for postOrderErpAuthToken */  
3578 -export interface PostOrderErpAuthTokenOption { 3439 +/** @description request parameter type for postOrderErpAuditListByPage */
  3440 +export interface PostOrderErpAuditListByPageOption {
3579 /** 3441 /**
3580 * @description 3442 * @description
3581 - * tokenApiDto 3443 + * queryVO
3582 */ 3444 */
3583 body: { 3445 body: {
3584 /** 3446 /**
3585 @description 3447 @description
3586 - tokenApiDto */  
3587 - tokenApiDto: TokenApiDto; 3448 + queryVO */
  3449 + queryVO: OrderFieldLockApplyQueryVO;
3588 }; 3450 };
3589 } 3451 }
3590 3452
3591 -/** @description response type for postOrderErpAuthToken */  
3592 -export interface PostOrderErpAuthTokenResponse { 3453 +/** @description response type for postOrderErpAuditListByPage */
  3454 +export interface PostOrderErpAuditListByPageResponse {
3593 /** 3455 /**
3594 * @description 3456 * @description
3595 * OK 3457 * OK
@@ -3617,25 +3479,25 @@ export interface PostOrderErpAuthTokenResponse { @@ -3617,25 +3479,25 @@ export interface PostOrderErpAuthTokenResponse {
3617 404: any; 3479 404: any;
3618 } 3480 }
3619 3481
3620 -export type PostOrderErpAuthTokenResponseSuccess =  
3621 - PostOrderErpAuthTokenResponse[200]; 3482 +export type PostOrderErpAuditListByPageResponseSuccess =
  3483 + PostOrderErpAuditListByPageResponse[200];
3622 /** 3484 /**
3623 * @description 3485 * @description
3624 - * 获取token  
3625 - * @tags login-controller 3486 + * 分页查询
  3487 + * @tags 审批管理
3626 * @produces * 3488 * @produces *
3627 * @consumes application/json 3489 * @consumes application/json
3628 */ 3490 */
3629 -export const postOrderErpAuthToken = /* #__PURE__ */ (() => { 3491 +export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => {
3630 const method = 'post'; 3492 const method = 'post';
3631 - const url = '/order/erp/auth/token'; 3493 + const url = '/order/erp/audit/list_by_page';
3632 function request( 3494 function request(
3633 - option: PostOrderErpAuthTokenOption,  
3634 - ): Promise<PostOrderErpAuthTokenResponseSuccess> { 3495 + option: PostOrderErpAuditListByPageOption,
  3496 + ): Promise<PostOrderErpAuditListByPageResponseSuccess> {
3635 return requester(request.url, { 3497 return requester(request.url, {
3636 method: request.method, 3498 method: request.method,
3637 ...option, 3499 ...option,
3638 - }) as unknown as Promise<PostOrderErpAuthTokenResponseSuccess>; 3500 + }) as unknown as Promise<PostOrderErpAuditListByPageResponseSuccess>;
3639 } 3501 }
3640 3502
3641 /** http method */ 3503 /** http method */
@@ -3645,8 +3507,22 @@ export const postOrderErpAuthToken = /* #__PURE__ */ (() =&gt; { @@ -3645,8 +3507,22 @@ export const postOrderErpAuthToken = /* #__PURE__ */ (() =&gt; {
3645 return request; 3507 return request;
3646 })(); 3508 })();
3647 3509
3648 -/** @description response type for postOrderErpCaptchaGetImgCaptchaCode */  
3649 -export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse { 3510 +/** @description request parameter type for postOrderErpAuditLogListByPage */
  3511 +export interface PostOrderErpAuditLogListByPageOption {
  3512 + /**
  3513 + * @description
  3514 + * orderAuditLogQueryVO
  3515 + */
  3516 + body: {
  3517 + /**
  3518 + @description
  3519 + orderAuditLogQueryVO */
  3520 + orderAuditLogQueryVO: OrderAuditLogQueryVO;
  3521 + };
  3522 +}
  3523 +
  3524 +/** @description response type for postOrderErpAuditLogListByPage */
  3525 +export interface PostOrderErpAuditLogListByPageResponse {
3650 /** 3526 /**
3651 * @description 3527 * @description
3652 * OK 3528 * OK
@@ -3674,22 +3550,25 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse { @@ -3674,22 +3550,25 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse {
3674 404: any; 3550 404: any;
3675 } 3551 }
3676 3552
3677 -export type PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess =  
3678 - PostOrderErpCaptchaGetImgCaptchaCodeResponse[200]; 3553 +export type PostOrderErpAuditLogListByPageResponseSuccess =
  3554 + PostOrderErpAuditLogListByPageResponse[200];
3679 /** 3555 /**
3680 * @description 3556 * @description
3681 - * 获取图片验证码  
3682 - * @tags 验证码 3557 + * 分页查询
  3558 + * @tags 用户订单审批日志
3683 * @produces * 3559 * @produces *
3684 * @consumes application/json 3560 * @consumes application/json
3685 */ 3561 */
3686 -export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() => { 3562 +export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => {
3687 const method = 'post'; 3563 const method = 'post';
3688 - const url = '/order/erp/captcha/get_img_captcha_code';  
3689 - function request(): Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess> { 3564 + const url = '/order/erp/audit/log/list_by_page';
  3565 + function request(
  3566 + option: PostOrderErpAuditLogListByPageOption,
  3567 + ): Promise<PostOrderErpAuditLogListByPageResponseSuccess> {
3690 return requester(request.url, { 3568 return requester(request.url, {
3691 method: request.method, 3569 method: request.method,
3692 - }) as unknown as Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess>; 3570 + ...option,
  3571 + }) as unknown as Promise<PostOrderErpAuditLogListByPageResponseSuccess>;
3693 } 3572 }
3694 3573
3695 /** http method */ 3574 /** http method */
@@ -3699,22 +3578,22 @@ export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() =&gt; { @@ -3699,22 +3578,22 @@ export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() =&gt; {
3699 return request; 3578 return request;
3700 })(); 3579 })();
3701 3580
3702 -/** @description request parameter type for postOrderErpCaptchaSendCaptchaCode */  
3703 -export interface PostOrderErpCaptchaSendCaptchaCodeOption { 3581 +/** @description request parameter type for postOrderErpAuditLogQueryById */
  3582 +export interface PostOrderErpAuditLogQueryByIdOption {
3704 /** 3583 /**
3705 * @description 3584 * @description
3706 - * msgVo 3585 + * orderAuditLogQueryVO
3707 */ 3586 */
3708 body: { 3587 body: {
3709 /** 3588 /**
3710 @description 3589 @description
3711 - msgVo */  
3712 - msgVo: CaptchaMessageVO; 3590 + orderAuditLogQueryVO */
  3591 + orderAuditLogQueryVO: OrderAuditLogQueryVO;
3713 }; 3592 };
3714 } 3593 }
3715 3594
3716 -/** @description response type for postOrderErpCaptchaSendCaptchaCode */  
3717 -export interface PostOrderErpCaptchaSendCaptchaCodeResponse { 3595 +/** @description response type for postOrderErpAuditLogQueryById */
  3596 +export interface PostOrderErpAuditLogQueryByIdResponse {
3718 /** 3597 /**
3719 * @description 3598 * @description
3720 * OK 3599 * OK
@@ -3742,25 +3621,25 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse { @@ -3742,25 +3621,25 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse {
3742 404: any; 3621 404: any;
3743 } 3622 }
3744 3623
3745 -export type PostOrderErpCaptchaSendCaptchaCodeResponseSuccess =  
3746 - PostOrderErpCaptchaSendCaptchaCodeResponse[200]; 3624 +export type PostOrderErpAuditLogQueryByIdResponseSuccess =
  3625 + PostOrderErpAuditLogQueryByIdResponse[200];
3747 /** 3626 /**
3748 * @description 3627 * @description
3749 - * 获取验证码  
3750 - * @tags 验证码 3628 + * 通过主键查询单条数据
  3629 + * @tags 用户订单审批日志
3751 * @produces * 3630 * @produces *
3752 * @consumes application/json 3631 * @consumes application/json
3753 */ 3632 */
3754 -export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() => { 3633 +export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() => {
3755 const method = 'post'; 3634 const method = 'post';
3756 - const url = '/order/erp/captcha/send_captcha_code'; 3635 + const url = '/order/erp/audit/log/query_by_id';
3757 function request( 3636 function request(
3758 - option: PostOrderErpCaptchaSendCaptchaCodeOption,  
3759 - ): Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess> { 3637 + option: PostOrderErpAuditLogQueryByIdOption,
  3638 + ): Promise<PostOrderErpAuditLogQueryByIdResponseSuccess> {
3760 return requester(request.url, { 3639 return requester(request.url, {
3761 method: request.method, 3640 method: request.method,
3762 ...option, 3641 ...option,
3763 - }) as unknown as Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess>; 3642 + }) as unknown as Promise<PostOrderErpAuditLogQueryByIdResponseSuccess>;
3764 } 3643 }
3765 3644
3766 /** http method */ 3645 /** http method */
@@ -3770,22 +3649,22 @@ export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() =&gt; { @@ -3770,22 +3649,22 @@ export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() =&gt; {
3770 return request; 3649 return request;
3771 })(); 3650 })();
3772 3651
3773 -/** @description request parameter type for putOrderErpDepts */  
3774 -export interface PutOrderErpDeptsOption { 3652 +/** @description request parameter type for postOrderErpAuditWaitAuditList */
  3653 +export interface PostOrderErpAuditWaitAuditListOption {
3775 /** 3654 /**
3776 * @description 3655 * @description
3777 - * deptVO 3656 + * queryVO
3778 */ 3657 */
3779 body: { 3658 body: {
3780 /** 3659 /**
3781 @description 3660 @description
3782 - deptVO */  
3783 - deptVO: AdminDeptVO; 3661 + queryVO */
  3662 + queryVO: OrderFieldLockApplyQueryVO;
3784 }; 3663 };
3785 } 3664 }
3786 3665
3787 -/** @description response type for putOrderErpDepts */  
3788 -export interface PutOrderErpDeptsResponse { 3666 +/** @description response type for postOrderErpAuditWaitAuditList */
  3667 +export interface PostOrderErpAuditWaitAuditListResponse {
3789 /** 3668 /**
3790 * @description 3669 * @description
3791 * OK 3670 * OK
@@ -3813,24 +3692,25 @@ export interface PutOrderErpDeptsResponse { @@ -3813,24 +3692,25 @@ export interface PutOrderErpDeptsResponse {
3813 404: any; 3692 404: any;
3814 } 3693 }
3815 3694
3816 -export type PutOrderErpDeptsResponseSuccess = PutOrderErpDeptsResponse[200]; 3695 +export type PostOrderErpAuditWaitAuditListResponseSuccess =
  3696 + PostOrderErpAuditWaitAuditListResponse[200];
3817 /** 3697 /**
3818 * @description 3698 * @description
3819 - * 修改部门  
3820 - * @tags 系统:部门管理 3699 + * 待审批列表
  3700 + * @tags 审批管理
3821 * @produces * 3701 * @produces *
3822 * @consumes application/json 3702 * @consumes application/json
3823 */ 3703 */
3824 -export const putOrderErpDepts = /* #__PURE__ */ (() => {  
3825 - const method = 'put';  
3826 - const url = '/order/erp/depts'; 3704 +export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() => {
  3705 + const method = 'post';
  3706 + const url = '/order/erp/audit/wait_audit_list';
3827 function request( 3707 function request(
3828 - option: PutOrderErpDeptsOption,  
3829 - ): Promise<PutOrderErpDeptsResponseSuccess> { 3708 + option: PostOrderErpAuditWaitAuditListOption,
  3709 + ): Promise<PostOrderErpAuditWaitAuditListResponseSuccess> {
3830 return requester(request.url, { 3710 return requester(request.url, {
3831 method: request.method, 3711 method: request.method,
3832 ...option, 3712 ...option,
3833 - }) as unknown as Promise<PutOrderErpDeptsResponseSuccess>; 3713 + }) as unknown as Promise<PostOrderErpAuditWaitAuditListResponseSuccess>;
3834 } 3714 }
3835 3715
3836 /** http method */ 3716 /** http method */
@@ -3840,22 +3720,22 @@ export const putOrderErpDepts = /* #__PURE__ */ (() =&gt; { @@ -3840,22 +3720,22 @@ export const putOrderErpDepts = /* #__PURE__ */ (() =&gt; {
3840 return request; 3720 return request;
3841 })(); 3721 })();
3842 3722
3843 -/** @description request parameter type for deleteOrderErpDepts */  
3844 -export interface DeleteOrderErpDeptsOption { 3723 +/** @description request parameter type for postOrderErpAuthLoginByPhone */
  3724 +export interface PostOrderErpAuthLoginByPhoneOption {
3845 /** 3725 /**
3846 * @description 3726 * @description
3847 - * queryVO 3727 + * loginByPhoneVO
3848 */ 3728 */
3849 body: { 3729 body: {
3850 /** 3730 /**
3851 @description 3731 @description
3852 - queryVO */  
3853 - queryVO: AdminDeptQueryVO; 3732 + loginByPhoneVO */
  3733 + loginByPhoneVO: AdminUserLoginByPhoneVO;
3854 }; 3734 };
3855 } 3735 }
3856 3736
3857 -/** @description response type for deleteOrderErpDepts */  
3858 -export interface DeleteOrderErpDeptsResponse { 3737 +/** @description response type for postOrderErpAuthLoginByPhone */
  3738 +export interface PostOrderErpAuthLoginByPhoneResponse {
3859 /** 3739 /**
3860 * @description 3740 * @description
3861 * OK 3741 * OK
@@ -3863,9 +3743,9 @@ export interface DeleteOrderErpDeptsResponse { @@ -3863,9 +3743,9 @@ export interface DeleteOrderErpDeptsResponse {
3863 200: ServerResult; 3743 200: ServerResult;
3864 /** 3744 /**
3865 * @description 3745 * @description
3866 - * No Content 3746 + * Created
3867 */ 3747 */
3868 - 204: any; 3748 + 201: any;
3869 /** 3749 /**
3870 * @description 3750 * @description
3871 * Unauthorized 3751 * Unauthorized
@@ -3876,26 +3756,32 @@ export interface DeleteOrderErpDeptsResponse { @@ -3876,26 +3756,32 @@ export interface DeleteOrderErpDeptsResponse {
3876 * Forbidden 3756 * Forbidden
3877 */ 3757 */
3878 403: any; 3758 403: any;
  3759 + /**
  3760 + * @description
  3761 + * Not Found
  3762 + */
  3763 + 404: any;
3879 } 3764 }
3880 3765
3881 -export type DeleteOrderErpDeptsResponseSuccess =  
3882 - DeleteOrderErpDeptsResponse[200]; 3766 +export type PostOrderErpAuthLoginByPhoneResponseSuccess =
  3767 + PostOrderErpAuthLoginByPhoneResponse[200];
3883 /** 3768 /**
3884 * @description 3769 * @description
3885 - * 删除部门  
3886 - * @tags 系统:部门管理 3770 + * 手机登录
  3771 + * @tags login-controller
3887 * @produces * 3772 * @produces *
  3773 + * @consumes application/json
3888 */ 3774 */
3889 -export const deleteOrderErpDepts = /* #__PURE__ */ (() => {  
3890 - const method = 'delete';  
3891 - const url = '/order/erp/depts'; 3775 +export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => {
  3776 + const method = 'post';
  3777 + const url = '/order/erp/auth/login_by_phone';
3892 function request( 3778 function request(
3893 - option: DeleteOrderErpDeptsOption,  
3894 - ): Promise<DeleteOrderErpDeptsResponseSuccess> { 3779 + option: PostOrderErpAuthLoginByPhoneOption,
  3780 + ): Promise<PostOrderErpAuthLoginByPhoneResponseSuccess> {
3895 return requester(request.url, { 3781 return requester(request.url, {
3896 method: request.method, 3782 method: request.method,
3897 ...option, 3783 ...option,
3898 - }) as unknown as Promise<DeleteOrderErpDeptsResponseSuccess>; 3784 + }) as unknown as Promise<PostOrderErpAuthLoginByPhoneResponseSuccess>;
3899 } 3785 }
3900 3786
3901 /** http method */ 3787 /** http method */
@@ -3905,22 +3791,22 @@ export const deleteOrderErpDepts = /* #__PURE__ */ (() =&gt; { @@ -3905,22 +3791,22 @@ export const deleteOrderErpDepts = /* #__PURE__ */ (() =&gt; {
3905 return request; 3791 return request;
3906 })(); 3792 })();
3907 3793
3908 -/** @description request parameter type for postOrderErpDeptsAdd */  
3909 -export interface PostOrderErpDeptsAddOption { 3794 +/** @description request parameter type for postOrderErpAuthLoginByPwd */
  3795 +export interface PostOrderErpAuthLoginByPwdOption {
3910 /** 3796 /**
3911 * @description 3797 * @description
3912 - * deptVO 3798 + * loginByPwdVO
3913 */ 3799 */
3914 body: { 3800 body: {
3915 /** 3801 /**
3916 @description 3802 @description
3917 - deptVO */  
3918 - deptVO: AdminDeptVO; 3803 + loginByPwdVO */
  3804 + loginByPwdVO: AdminUserLoginByPwdVO;
3919 }; 3805 };
3920 } 3806 }
3921 3807
3922 -/** @description response type for postOrderErpDeptsAdd */  
3923 -export interface PostOrderErpDeptsAddResponse { 3808 +/** @description response type for postOrderErpAuthLoginByPwd */
  3809 +export interface PostOrderErpAuthLoginByPwdResponse {
3924 /** 3810 /**
3925 * @description 3811 * @description
3926 * OK 3812 * OK
@@ -3948,25 +3834,25 @@ export interface PostOrderErpDeptsAddResponse { @@ -3948,25 +3834,25 @@ export interface PostOrderErpDeptsAddResponse {
3948 404: any; 3834 404: any;
3949 } 3835 }
3950 3836
3951 -export type PostOrderErpDeptsAddResponseSuccess =  
3952 - PostOrderErpDeptsAddResponse[200]; 3837 +export type PostOrderErpAuthLoginByPwdResponseSuccess =
  3838 + PostOrderErpAuthLoginByPwdResponse[200];
3953 /** 3839 /**
3954 * @description 3840 * @description
3955 - * 新增部门  
3956 - * @tags 系统:部门管理 3841 + * 用户登录
  3842 + * @tags login-controller
3957 * @produces * 3843 * @produces *
3958 * @consumes application/json 3844 * @consumes application/json
3959 */ 3845 */
3960 -export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => { 3846 +export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => {
3961 const method = 'post'; 3847 const method = 'post';
3962 - const url = '/order/erp/depts/add'; 3848 + const url = '/order/erp/auth/login_by_pwd';
3963 function request( 3849 function request(
3964 - option: PostOrderErpDeptsAddOption,  
3965 - ): Promise<PostOrderErpDeptsAddResponseSuccess> { 3850 + option: PostOrderErpAuthLoginByPwdOption,
  3851 + ): Promise<PostOrderErpAuthLoginByPwdResponseSuccess> {
3966 return requester(request.url, { 3852 return requester(request.url, {
3967 method: request.method, 3853 method: request.method,
3968 ...option, 3854 ...option,
3969 - }) as unknown as Promise<PostOrderErpDeptsAddResponseSuccess>; 3855 + }) as unknown as Promise<PostOrderErpAuthLoginByPwdResponseSuccess>;
3970 } 3856 }
3971 3857
3972 /** http method */ 3858 /** http method */
@@ -3976,22 +3862,8 @@ export const postOrderErpDeptsAdd = /* #__PURE__ */ (() =&gt; { @@ -3976,22 +3862,8 @@ export const postOrderErpDeptsAdd = /* #__PURE__ */ (() =&gt; {
3976 return request; 3862 return request;
3977 })(); 3863 })();
3978 3864
3979 -/** @description request parameter type for postOrderErpDeptsListByPage */  
3980 -export interface PostOrderErpDeptsListByPageOption {  
3981 - /**  
3982 - * @description  
3983 - * queryVO  
3984 - */  
3985 - body: {  
3986 - /**  
3987 - @description  
3988 - queryVO */  
3989 - queryVO: AdminDeptQueryVO;  
3990 - };  
3991 -}  
3992 -  
3993 -/** @description response type for postOrderErpDeptsListByPage */  
3994 -export interface PostOrderErpDeptsListByPageResponse { 3865 +/** @description response type for postOrderErpAuthLoginOut */
  3866 +export interface PostOrderErpAuthLoginOutResponse {
3995 /** 3867 /**
3996 * @description 3868 * @description
3997 * OK 3869 * OK
@@ -4019,25 +3891,22 @@ export interface PostOrderErpDeptsListByPageResponse { @@ -4019,25 +3891,22 @@ export interface PostOrderErpDeptsListByPageResponse {
4019 404: any; 3891 404: any;
4020 } 3892 }
4021 3893
4022 -export type PostOrderErpDeptsListByPageResponseSuccess =  
4023 - PostOrderErpDeptsListByPageResponse[200]; 3894 +export type PostOrderErpAuthLoginOutResponseSuccess =
  3895 + PostOrderErpAuthLoginOutResponse[200];
4024 /** 3896 /**
4025 * @description 3897 * @description
4026 - * 查询部门  
4027 - * @tags 系统:部门管理 3898 + * 退出登录
  3899 + * @tags login-controller
4028 * @produces * 3900 * @produces *
4029 * @consumes application/json 3901 * @consumes application/json
4030 */ 3902 */
4031 -export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => { 3903 +export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => {
4032 const method = 'post'; 3904 const method = 'post';
4033 - const url = '/order/erp/depts/list_by_page';  
4034 - function request(  
4035 - option: PostOrderErpDeptsListByPageOption,  
4036 - ): Promise<PostOrderErpDeptsListByPageResponseSuccess> { 3905 + const url = '/order/erp/auth/login_out';
  3906 + function request(): Promise<PostOrderErpAuthLoginOutResponseSuccess> {
4037 return requester(request.url, { 3907 return requester(request.url, {
4038 method: request.method, 3908 method: request.method,
4039 - ...option,  
4040 - }) as unknown as Promise<PostOrderErpDeptsListByPageResponseSuccess>; 3909 + }) as unknown as Promise<PostOrderErpAuthLoginOutResponseSuccess>;
4041 } 3910 }
4042 3911
4043 /** http method */ 3912 /** http method */
@@ -4047,22 +3916,22 @@ export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() =&gt; { @@ -4047,22 +3916,22 @@ export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() =&gt; {
4047 return request; 3916 return request;
4048 })(); 3917 })();
4049 3918
4050 -/** @description request parameter type for postOrderErpDictionaryAdd */  
4051 -export interface PostOrderErpDictionaryAddOption { 3919 +/** @description request parameter type for postOrderErpAuthPasswordModify */
  3920 +export interface PostOrderErpAuthPasswordModifyOption {
4052 /** 3921 /**
4053 * @description 3922 * @description
4054 - * dictionaryVO 3923 + * modifyPwdVO
4055 */ 3924 */
4056 body: { 3925 body: {
4057 /** 3926 /**
4058 @description 3927 @description
4059 - dictionaryVO */  
4060 - dictionaryVO: DictionaryVO; 3928 + modifyPwdVO */
  3929 + modifyPwdVO: AdminUserModifyPwdVO;
4061 }; 3930 };
4062 } 3931 }
4063 3932
4064 -/** @description response type for postOrderErpDictionaryAdd */  
4065 -export interface PostOrderErpDictionaryAddResponse { 3933 +/** @description response type for postOrderErpAuthPasswordModify */
  3934 +export interface PostOrderErpAuthPasswordModifyResponse {
4066 /** 3935 /**
4067 * @description 3936 * @description
4068 * OK 3937 * OK
@@ -4090,25 +3959,25 @@ export interface PostOrderErpDictionaryAddResponse { @@ -4090,25 +3959,25 @@ export interface PostOrderErpDictionaryAddResponse {
4090 404: any; 3959 404: any;
4091 } 3960 }
4092 3961
4093 -export type PostOrderErpDictionaryAddResponseSuccess =  
4094 - PostOrderErpDictionaryAddResponse[200]; 3962 +export type PostOrderErpAuthPasswordModifyResponseSuccess =
  3963 + PostOrderErpAuthPasswordModifyResponse[200];
4095 /** 3964 /**
4096 * @description 3965 * @description
4097 - * 新增字典  
4098 - * @tags 系统:字典管理 3966 + * 用户登录
  3967 + * @tags login-controller
4099 * @produces * 3968 * @produces *
4100 * @consumes application/json 3969 * @consumes application/json
4101 */ 3970 */
4102 -export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => { 3971 +export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => {
4103 const method = 'post'; 3972 const method = 'post';
4104 - const url = '/order/erp/dictionary/add'; 3973 + const url = '/order/erp/auth/password_modify';
4105 function request( 3974 function request(
4106 - option: PostOrderErpDictionaryAddOption,  
4107 - ): Promise<PostOrderErpDictionaryAddResponseSuccess> { 3975 + option: PostOrderErpAuthPasswordModifyOption,
  3976 + ): Promise<PostOrderErpAuthPasswordModifyResponseSuccess> {
4108 return requester(request.url, { 3977 return requester(request.url, {
4109 method: request.method, 3978 method: request.method,
4110 ...option, 3979 ...option,
4111 - }) as unknown as Promise<PostOrderErpDictionaryAddResponseSuccess>; 3980 + }) as unknown as Promise<PostOrderErpAuthPasswordModifyResponseSuccess>;
4112 } 3981 }
4113 3982
4114 /** http method */ 3983 /** http method */
@@ -4118,22 +3987,22 @@ export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() =&gt; { @@ -4118,22 +3987,22 @@ export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() =&gt; {
4118 return request; 3987 return request;
4119 })(); 3988 })();
4120 3989
4121 -/** @description request parameter type for postOrderErpDictionaryDelete */  
4122 -export interface PostOrderErpDictionaryDeleteOption { 3990 +/** @description request parameter type for postOrderErpAuthPhoneRegister */
  3991 +export interface PostOrderErpAuthPhoneRegisterOption {
4123 /** 3992 /**
4124 * @description 3993 * @description
4125 - * queryVO 3994 + * registerVO
4126 */ 3995 */
4127 body: { 3996 body: {
4128 /** 3997 /**
4129 @description 3998 @description
4130 - queryVO */  
4131 - queryVO: DictionaryQueryVO; 3999 + registerVO */
  4000 + registerVO: AdminUserRegisterVO;
4132 }; 4001 };
4133 } 4002 }
4134 4003
4135 -/** @description response type for postOrderErpDictionaryDelete */  
4136 -export interface PostOrderErpDictionaryDeleteResponse { 4004 +/** @description response type for postOrderErpAuthPhoneRegister */
  4005 +export interface PostOrderErpAuthPhoneRegisterResponse {
4137 /** 4006 /**
4138 * @description 4007 * @description
4139 * OK 4008 * OK
@@ -4161,25 +4030,25 @@ export interface PostOrderErpDictionaryDeleteResponse { @@ -4161,25 +4030,25 @@ export interface PostOrderErpDictionaryDeleteResponse {
4161 404: any; 4030 404: any;
4162 } 4031 }
4163 4032
4164 -export type PostOrderErpDictionaryDeleteResponseSuccess =  
4165 - PostOrderErpDictionaryDeleteResponse[200]; 4033 +export type PostOrderErpAuthPhoneRegisterResponseSuccess =
  4034 + PostOrderErpAuthPhoneRegisterResponse[200];
4166 /** 4035 /**
4167 * @description 4036 * @description
4168 - * 删除字典  
4169 - * @tags 系统:字典管理 4037 + * 手机注册
  4038 + * @tags login-controller
4170 * @produces * 4039 * @produces *
4171 * @consumes application/json 4040 * @consumes application/json
4172 */ 4041 */
4173 -export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => { 4042 +export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => {
4174 const method = 'post'; 4043 const method = 'post';
4175 - const url = '/order/erp/dictionary/delete'; 4044 + const url = '/order/erp/auth/phone_register';
4176 function request( 4045 function request(
4177 - option: PostOrderErpDictionaryDeleteOption,  
4178 - ): Promise<PostOrderErpDictionaryDeleteResponseSuccess> { 4046 + option: PostOrderErpAuthPhoneRegisterOption,
  4047 + ): Promise<PostOrderErpAuthPhoneRegisterResponseSuccess> {
4179 return requester(request.url, { 4048 return requester(request.url, {
4180 method: request.method, 4049 method: request.method,
4181 ...option, 4050 ...option,
4182 - }) as unknown as Promise<PostOrderErpDictionaryDeleteResponseSuccess>; 4051 + }) as unknown as Promise<PostOrderErpAuthPhoneRegisterResponseSuccess>;
4183 } 4052 }
4184 4053
4185 /** http method */ 4054 /** http method */
@@ -4189,22 +4058,22 @@ export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() =&gt; { @@ -4189,22 +4058,22 @@ export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() =&gt; {
4189 return request; 4058 return request;
4190 })(); 4059 })();
4191 4060
4192 -/** @description request parameter type for postOrderErpDictionaryEdit */  
4193 -export interface PostOrderErpDictionaryEditOption { 4061 +/** @description request parameter type for postOrderErpAuthSendPasswordRecoverMail */
  4062 +export interface PostOrderErpAuthSendPasswordRecoverMailOption {
4194 /** 4063 /**
4195 * @description 4064 * @description
4196 - * dictionaryVO 4065 + * recoverEmailVO
4197 */ 4066 */
4198 body: { 4067 body: {
4199 /** 4068 /**
4200 @description 4069 @description
4201 - dictionaryVO */  
4202 - dictionaryVO: DictionaryVO; 4070 + recoverEmailVO */
  4071 + recoverEmailVO: AdminUserPasswordRecoverEmailVO;
4203 }; 4072 };
4204 } 4073 }
4205 4074
4206 -/** @description response type for postOrderErpDictionaryEdit */  
4207 -export interface PostOrderErpDictionaryEditResponse { 4075 +/** @description response type for postOrderErpAuthSendPasswordRecoverMail */
  4076 +export interface PostOrderErpAuthSendPasswordRecoverMailResponse {
4208 /** 4077 /**
4209 * @description 4078 * @description
4210 * OK 4079 * OK
@@ -4232,25 +4101,25 @@ export interface PostOrderErpDictionaryEditResponse { @@ -4232,25 +4101,25 @@ export interface PostOrderErpDictionaryEditResponse {
4232 404: any; 4101 404: any;
4233 } 4102 }
4234 4103
4235 -export type PostOrderErpDictionaryEditResponseSuccess =  
4236 - PostOrderErpDictionaryEditResponse[200]; 4104 +export type PostOrderErpAuthSendPasswordRecoverMailResponseSuccess =
  4105 + PostOrderErpAuthSendPasswordRecoverMailResponse[200];
4237 /** 4106 /**
4238 * @description 4107 * @description
4239 - * 修改字典  
4240 - * @tags 系统:字典管理 4108 + * sendPasswordRecoverMail
  4109 + * @tags login-controller
4241 * @produces * 4110 * @produces *
4242 * @consumes application/json 4111 * @consumes application/json
4243 */ 4112 */
4244 -export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => { 4113 +export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => {
4245 const method = 'post'; 4114 const method = 'post';
4246 - const url = '/order/erp/dictionary/edit'; 4115 + const url = '/order/erp/auth/send_password_recover_mail';
4247 function request( 4116 function request(
4248 - option: PostOrderErpDictionaryEditOption,  
4249 - ): Promise<PostOrderErpDictionaryEditResponseSuccess> { 4117 + option: PostOrderErpAuthSendPasswordRecoverMailOption,
  4118 + ): Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess> {
4250 return requester(request.url, { 4119 return requester(request.url, {
4251 method: request.method, 4120 method: request.method,
4252 ...option, 4121 ...option,
4253 - }) as unknown as Promise<PostOrderErpDictionaryEditResponseSuccess>; 4122 + }) as unknown as Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess>;
4254 } 4123 }
4255 4124
4256 /** http method */ 4125 /** http method */
@@ -4260,22 +4129,22 @@ export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() =&gt; { @@ -4260,22 +4129,22 @@ export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() =&gt; {
4260 return request; 4129 return request;
4261 })(); 4130 })();
4262 4131
4263 -/** @description request parameter type for postOrderErpDictionaryGetAll */  
4264 -export interface PostOrderErpDictionaryGetAllOption { 4132 +/** @description request parameter type for postOrderErpAuthToken */
  4133 +export interface PostOrderErpAuthTokenOption {
4265 /** 4134 /**
4266 * @description 4135 * @description
4267 - * queryVO 4136 + * tokenApiDto
4268 */ 4137 */
4269 body: { 4138 body: {
4270 /** 4139 /**
4271 @description 4140 @description
4272 - queryVO */  
4273 - queryVO: DictionaryQueryVO; 4141 + tokenApiDto */
  4142 + tokenApiDto: TokenApiDto;
4274 }; 4143 };
4275 } 4144 }
4276 4145
4277 -/** @description response type for postOrderErpDictionaryGetAll */  
4278 -export interface PostOrderErpDictionaryGetAllResponse { 4146 +/** @description response type for postOrderErpAuthToken */
  4147 +export interface PostOrderErpAuthTokenResponse {
4279 /** 4148 /**
4280 * @description 4149 * @description
4281 * OK 4150 * OK
@@ -4303,25 +4172,25 @@ export interface PostOrderErpDictionaryGetAllResponse { @@ -4303,25 +4172,25 @@ export interface PostOrderErpDictionaryGetAllResponse {
4303 404: any; 4172 404: any;
4304 } 4173 }
4305 4174
4306 -export type PostOrderErpDictionaryGetAllResponseSuccess =  
4307 - PostOrderErpDictionaryGetAllResponse[200]; 4175 +export type PostOrderErpAuthTokenResponseSuccess =
  4176 + PostOrderErpAuthTokenResponse[200];
4308 /** 4177 /**
4309 * @description 4178 * @description
4310 - * 获取所有字典  
4311 - * @tags 系统:字典管理 4179 + * 获取token
  4180 + * @tags login-controller
4312 * @produces * 4181 * @produces *
4313 * @consumes application/json 4182 * @consumes application/json
4314 */ 4183 */
4315 -export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => { 4184 +export const postOrderErpAuthToken = /* #__PURE__ */ (() => {
4316 const method = 'post'; 4185 const method = 'post';
4317 - const url = '/order/erp/dictionary/get_all'; 4186 + const url = '/order/erp/auth/token';
4318 function request( 4187 function request(
4319 - option: PostOrderErpDictionaryGetAllOption,  
4320 - ): Promise<PostOrderErpDictionaryGetAllResponseSuccess> { 4188 + option: PostOrderErpAuthTokenOption,
  4189 + ): Promise<PostOrderErpAuthTokenResponseSuccess> {
4321 return requester(request.url, { 4190 return requester(request.url, {
4322 method: request.method, 4191 method: request.method,
4323 ...option, 4192 ...option,
4324 - }) as unknown as Promise<PostOrderErpDictionaryGetAllResponseSuccess>; 4193 + }) as unknown as Promise<PostOrderErpAuthTokenResponseSuccess>;
4325 } 4194 }
4326 4195
4327 /** http method */ 4196 /** http method */
@@ -4331,22 +4200,8 @@ export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() =&gt; { @@ -4331,22 +4200,8 @@ export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() =&gt; {
4331 return request; 4200 return request;
4332 })(); 4201 })();
4333 4202
4334 -/** @description request parameter type for postOrderErpDictionaryListByPage */  
4335 -export interface PostOrderErpDictionaryListByPageOption {  
4336 - /**  
4337 - * @description  
4338 - * queryVO  
4339 - */  
4340 - body: {  
4341 - /**  
4342 - @description  
4343 - queryVO */  
4344 - queryVO: DictionaryQueryVO;  
4345 - };  
4346 -}  
4347 -  
4348 -/** @description response type for postOrderErpDictionaryListByPage */  
4349 -export interface PostOrderErpDictionaryListByPageResponse { 4203 +/** @description response type for postOrderErpCaptchaGetImgCaptchaCode */
  4204 +export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse {
4350 /** 4205 /**
4351 * @description 4206 * @description
4352 * OK 4207 * OK
@@ -4374,25 +4229,22 @@ export interface PostOrderErpDictionaryListByPageResponse { @@ -4374,25 +4229,22 @@ export interface PostOrderErpDictionaryListByPageResponse {
4374 404: any; 4229 404: any;
4375 } 4230 }
4376 4231
4377 -export type PostOrderErpDictionaryListByPageResponseSuccess =  
4378 - PostOrderErpDictionaryListByPageResponse[200]; 4232 +export type PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess =
  4233 + PostOrderErpCaptchaGetImgCaptchaCodeResponse[200];
4379 /** 4234 /**
4380 * @description 4235 * @description
4381 - * 查询字典列表  
4382 - * @tags 系统:字典管理 4236 + * 获取图片验证码
  4237 + * @tags 验证码
4383 * @produces * 4238 * @produces *
4384 * @consumes application/json 4239 * @consumes application/json
4385 */ 4240 */
4386 -export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => { 4241 +export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() => {
4387 const method = 'post'; 4242 const method = 'post';
4388 - const url = '/order/erp/dictionary/list_by_page';  
4389 - function request(  
4390 - option: PostOrderErpDictionaryListByPageOption,  
4391 - ): Promise<PostOrderErpDictionaryListByPageResponseSuccess> { 4243 + const url = '/order/erp/captcha/get_img_captcha_code';
  4244 + function request(): Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess> {
4392 return requester(request.url, { 4245 return requester(request.url, {
4393 method: request.method, 4246 method: request.method,
4394 - ...option,  
4395 - }) as unknown as Promise<PostOrderErpDictionaryListByPageResponseSuccess>; 4247 + }) as unknown as Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess>;
4396 } 4248 }
4397 4249
4398 /** http method */ 4250 /** http method */
@@ -4402,8 +4254,22 @@ export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() =&gt; { @@ -4402,8 +4254,22 @@ export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() =&gt; {
4402 return request; 4254 return request;
4403 })(); 4255 })();
4404 4256
4405 -/** @description response type for getOrderErpIndexChartData */  
4406 -export interface GetOrderErpIndexChartDataResponse { 4257 +/** @description request parameter type for postOrderErpCaptchaSendCaptchaCode */
  4258 +export interface PostOrderErpCaptchaSendCaptchaCodeOption {
  4259 + /**
  4260 + * @description
  4261 + * msgVo
  4262 + */
  4263 + body: {
  4264 + /**
  4265 + @description
  4266 + msgVo */
  4267 + msgVo: CaptchaMessageVO;
  4268 + };
  4269 +}
  4270 +
  4271 +/** @description response type for postOrderErpCaptchaSendCaptchaCode */
  4272 +export interface PostOrderErpCaptchaSendCaptchaCodeResponse {
4407 /** 4273 /**
4408 * @description 4274 * @description
4409 * OK 4275 * OK
@@ -4411,6 +4277,11 @@ export interface GetOrderErpIndexChartDataResponse { @@ -4411,6 +4277,11 @@ export interface GetOrderErpIndexChartDataResponse {
4411 200: ServerResult; 4277 200: ServerResult;
4412 /** 4278 /**
4413 * @description 4279 * @description
  4280 + * Created
  4281 + */
  4282 + 201: any;
  4283 + /**
  4284 + * @description
4414 * Unauthorized 4285 * Unauthorized
4415 */ 4286 */
4416 401: any; 4287 401: any;
@@ -4426,21 +4297,25 @@ export interface GetOrderErpIndexChartDataResponse { @@ -4426,21 +4297,25 @@ export interface GetOrderErpIndexChartDataResponse {
4426 404: any; 4297 404: any;
4427 } 4298 }
4428 4299
4429 -export type GetOrderErpIndexChartDataResponseSuccess =  
4430 - GetOrderErpIndexChartDataResponse[200]; 4300 +export type PostOrderErpCaptchaSendCaptchaCodeResponseSuccess =
  4301 + PostOrderErpCaptchaSendCaptchaCodeResponse[200];
4431 /** 4302 /**
4432 * @description 4303 * @description
4433 - * 首页订单趋势  
4434 - * @tags 首页 4304 + * 获取验证码
  4305 + * @tags 验证码
4435 * @produces * 4306 * @produces *
  4307 + * @consumes application/json
4436 */ 4308 */
4437 -export const getOrderErpIndexChartData = /* #__PURE__ */ (() => {  
4438 - const method = 'get';  
4439 - const url = '/order/erp/index/chartData';  
4440 - function request(): Promise<GetOrderErpIndexChartDataResponseSuccess> { 4309 +export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() => {
  4310 + const method = 'post';
  4311 + const url = '/order/erp/captcha/send_captcha_code';
  4312 + function request(
  4313 + option: PostOrderErpCaptchaSendCaptchaCodeOption,
  4314 + ): Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess> {
4441 return requester(request.url, { 4315 return requester(request.url, {
4442 method: request.method, 4316 method: request.method,
4443 - }) as unknown as Promise<GetOrderErpIndexChartDataResponseSuccess>; 4317 + ...option,
  4318 + }) as unknown as Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess>;
4444 } 4319 }
4445 4320
4446 /** http method */ 4321 /** http method */
@@ -4450,8 +4325,22 @@ export const getOrderErpIndexChartData = /* #__PURE__ */ (() =&gt; { @@ -4450,8 +4325,22 @@ export const getOrderErpIndexChartData = /* #__PURE__ */ (() =&gt; {
4450 return request; 4325 return request;
4451 })(); 4326 })();
4452 4327
4453 -/** @description response type for getOrderErpIndexData */  
4454 -export interface GetOrderErpIndexDataResponse { 4328 +/** @description request parameter type for putOrderErpDepts */
  4329 +export interface PutOrderErpDeptsOption {
  4330 + /**
  4331 + * @description
  4332 + * deptVO
  4333 + */
  4334 + body: {
  4335 + /**
  4336 + @description
  4337 + deptVO */
  4338 + deptVO: AdminDeptVO;
  4339 + };
  4340 +}
  4341 +
  4342 +/** @description response type for putOrderErpDepts */
  4343 +export interface PutOrderErpDeptsResponse {
4455 /** 4344 /**
4456 * @description 4345 * @description
4457 * OK 4346 * OK
@@ -4459,6 +4348,11 @@ export interface GetOrderErpIndexDataResponse { @@ -4459,6 +4348,11 @@ export interface GetOrderErpIndexDataResponse {
4459 200: ServerResult; 4348 200: ServerResult;
4460 /** 4349 /**
4461 * @description 4350 * @description
  4351 + * Created
  4352 + */
  4353 + 201: any;
  4354 + /**
  4355 + * @description
4462 * Unauthorized 4356 * Unauthorized
4463 */ 4357 */
4464 401: any; 4358 401: any;
@@ -4474,21 +4368,24 @@ export interface GetOrderErpIndexDataResponse { @@ -4474,21 +4368,24 @@ export interface GetOrderErpIndexDataResponse {
4474 404: any; 4368 404: any;
4475 } 4369 }
4476 4370
4477 -export type GetOrderErpIndexDataResponseSuccess =  
4478 - GetOrderErpIndexDataResponse[200]; 4371 +export type PutOrderErpDeptsResponseSuccess = PutOrderErpDeptsResponse[200];
4479 /** 4372 /**
4480 * @description 4373 * @description
4481 - * 首页统计数据  
4482 - * @tags 首页 4374 + * 修改部门
  4375 + * @tags 系统:部门管理
4483 * @produces * 4376 * @produces *
  4377 + * @consumes application/json
4484 */ 4378 */
4485 -export const getOrderErpIndexData = /* #__PURE__ */ (() => {  
4486 - const method = 'get';  
4487 - const url = '/order/erp/index/data';  
4488 - function request(): Promise<GetOrderErpIndexDataResponseSuccess> { 4379 +export const putOrderErpDepts = /* #__PURE__ */ (() => {
  4380 + const method = 'put';
  4381 + const url = '/order/erp/depts';
  4382 + function request(
  4383 + option: PutOrderErpDeptsOption,
  4384 + ): Promise<PutOrderErpDeptsResponseSuccess> {
4489 return requester(request.url, { 4385 return requester(request.url, {
4490 method: request.method, 4386 method: request.method,
4491 - }) as unknown as Promise<GetOrderErpIndexDataResponseSuccess>; 4387 + ...option,
  4388 + }) as unknown as Promise<PutOrderErpDeptsResponseSuccess>;
4492 } 4389 }
4493 4390
4494 /** http method */ 4391 /** http method */
@@ -4498,22 +4395,22 @@ export const getOrderErpIndexData = /* #__PURE__ */ (() =&gt; { @@ -4498,22 +4395,22 @@ export const getOrderErpIndexData = /* #__PURE__ */ (() =&gt; {
4498 return request; 4395 return request;
4499 })(); 4396 })();
4500 4397
4501 -/** @description request parameter type for postOrderErpJobsAdd */  
4502 -export interface PostOrderErpJobsAddOption { 4398 +/** @description request parameter type for deleteOrderErpDepts */
  4399 +export interface DeleteOrderErpDeptsOption {
4503 /** 4400 /**
4504 * @description 4401 * @description
4505 - * jobVO 4402 + * queryVO
4506 */ 4403 */
4507 body: { 4404 body: {
4508 /** 4405 /**
4509 @description 4406 @description
4510 - jobVO */  
4511 - jobVO: AdminJobVO; 4407 + queryVO */
  4408 + queryVO: AdminDeptQueryVO;
4512 }; 4409 };
4513 } 4410 }
4514 4411
4515 -/** @description response type for postOrderErpJobsAdd */  
4516 -export interface PostOrderErpJobsAddResponse { 4412 +/** @description response type for deleteOrderErpDepts */
  4413 +export interface DeleteOrderErpDeptsResponse {
4517 /** 4414 /**
4518 * @description 4415 * @description
4519 * OK 4416 * OK
@@ -4521,9 +4418,9 @@ export interface PostOrderErpJobsAddResponse { @@ -4521,9 +4418,9 @@ export interface PostOrderErpJobsAddResponse {
4521 200: ServerResult; 4418 200: ServerResult;
4522 /** 4419 /**
4523 * @description 4420 * @description
4524 - * Created 4421 + * No Content
4525 */ 4422 */
4526 - 201: any; 4423 + 204: any;
4527 /** 4424 /**
4528 * @description 4425 * @description
4529 * Unauthorized 4426 * Unauthorized
@@ -4534,32 +4431,26 @@ export interface PostOrderErpJobsAddResponse { @@ -4534,32 +4431,26 @@ export interface PostOrderErpJobsAddResponse {
4534 * Forbidden 4431 * Forbidden
4535 */ 4432 */
4536 403: any; 4433 403: any;
4537 - /**  
4538 - * @description  
4539 - * Not Found  
4540 - */  
4541 - 404: any;  
4542 } 4434 }
4543 4435
4544 -export type PostOrderErpJobsAddResponseSuccess =  
4545 - PostOrderErpJobsAddResponse[200]; 4436 +export type DeleteOrderErpDeptsResponseSuccess =
  4437 + DeleteOrderErpDeptsResponse[200];
4546 /** 4438 /**
4547 * @description 4439 * @description
4548 - * 新增岗位  
4549 - * @tags 系统:岗位管理 4440 + * 删除部门
  4441 + * @tags 系统:部门管理
4550 * @produces * 4442 * @produces *
4551 - * @consumes application/json  
4552 */ 4443 */
4553 -export const postOrderErpJobsAdd = /* #__PURE__ */ (() => {  
4554 - const method = 'post';  
4555 - const url = '/order/erp/jobs/add'; 4444 +export const deleteOrderErpDepts = /* #__PURE__ */ (() => {
  4445 + const method = 'delete';
  4446 + const url = '/order/erp/depts';
4556 function request( 4447 function request(
4557 - option: PostOrderErpJobsAddOption,  
4558 - ): Promise<PostOrderErpJobsAddResponseSuccess> { 4448 + option: DeleteOrderErpDeptsOption,
  4449 + ): Promise<DeleteOrderErpDeptsResponseSuccess> {
4559 return requester(request.url, { 4450 return requester(request.url, {
4560 method: request.method, 4451 method: request.method,
4561 ...option, 4452 ...option,
4562 - }) as unknown as Promise<PostOrderErpJobsAddResponseSuccess>; 4453 + }) as unknown as Promise<DeleteOrderErpDeptsResponseSuccess>;
4563 } 4454 }
4564 4455
4565 /** http method */ 4456 /** http method */
@@ -4569,22 +4460,22 @@ export const postOrderErpJobsAdd = /* #__PURE__ */ (() =&gt; { @@ -4569,22 +4460,22 @@ export const postOrderErpJobsAdd = /* #__PURE__ */ (() =&gt; {
4569 return request; 4460 return request;
4570 })(); 4461 })();
4571 4462
4572 -/** @description request parameter type for postOrderErpJobsDelete */  
4573 -export interface PostOrderErpJobsDeleteOption { 4463 +/** @description request parameter type for postOrderErpDeptsAdd */
  4464 +export interface PostOrderErpDeptsAddOption {
4574 /** 4465 /**
4575 * @description 4466 * @description
4576 - * queryVO 4467 + * deptVO
4577 */ 4468 */
4578 body: { 4469 body: {
4579 /** 4470 /**
4580 @description 4471 @description
4581 - queryVO */  
4582 - queryVO: AdminJobQueryVO; 4472 + deptVO */
  4473 + deptVO: AdminDeptVO;
4583 }; 4474 };
4584 } 4475 }
4585 4476
4586 -/** @description response type for postOrderErpJobsDelete */  
4587 -export interface PostOrderErpJobsDeleteResponse { 4477 +/** @description response type for postOrderErpDeptsAdd */
  4478 +export interface PostOrderErpDeptsAddResponse {
4588 /** 4479 /**
4589 * @description 4480 * @description
4590 * OK 4481 * OK
@@ -4612,25 +4503,25 @@ export interface PostOrderErpJobsDeleteResponse { @@ -4612,25 +4503,25 @@ export interface PostOrderErpJobsDeleteResponse {
4612 404: any; 4503 404: any;
4613 } 4504 }
4614 4505
4615 -export type PostOrderErpJobsDeleteResponseSuccess =  
4616 - PostOrderErpJobsDeleteResponse[200]; 4506 +export type PostOrderErpDeptsAddResponseSuccess =
  4507 + PostOrderErpDeptsAddResponse[200];
4617 /** 4508 /**
4618 * @description 4509 * @description
4619 - * 删除岗位  
4620 - * @tags 系统:岗位管理 4510 + * 新增部门
  4511 + * @tags 系统:部门管理
4621 * @produces * 4512 * @produces *
4622 * @consumes application/json 4513 * @consumes application/json
4623 */ 4514 */
4624 -export const postOrderErpJobsDelete = /* #__PURE__ */ (() => { 4515 +export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => {
4625 const method = 'post'; 4516 const method = 'post';
4626 - const url = '/order/erp/jobs/delete'; 4517 + const url = '/order/erp/depts/add';
4627 function request( 4518 function request(
4628 - option: PostOrderErpJobsDeleteOption,  
4629 - ): Promise<PostOrderErpJobsDeleteResponseSuccess> { 4519 + option: PostOrderErpDeptsAddOption,
  4520 + ): Promise<PostOrderErpDeptsAddResponseSuccess> {
4630 return requester(request.url, { 4521 return requester(request.url, {
4631 method: request.method, 4522 method: request.method,
4632 ...option, 4523 ...option,
4633 - }) as unknown as Promise<PostOrderErpJobsDeleteResponseSuccess>; 4524 + }) as unknown as Promise<PostOrderErpDeptsAddResponseSuccess>;
4634 } 4525 }
4635 4526
4636 /** http method */ 4527 /** http method */
@@ -4640,22 +4531,22 @@ export const postOrderErpJobsDelete = /* #__PURE__ */ (() =&gt; { @@ -4640,22 +4531,22 @@ export const postOrderErpJobsDelete = /* #__PURE__ */ (() =&gt; {
4640 return request; 4531 return request;
4641 })(); 4532 })();
4642 4533
4643 -/** @description request parameter type for postOrderErpJobsEdit */  
4644 -export interface PostOrderErpJobsEditOption { 4534 +/** @description request parameter type for postOrderErpDeptsListByPage */
  4535 +export interface PostOrderErpDeptsListByPageOption {
4645 /** 4536 /**
4646 * @description 4537 * @description
4647 - * jobVO 4538 + * queryVO
4648 */ 4539 */
4649 body: { 4540 body: {
4650 /** 4541 /**
4651 @description 4542 @description
4652 - jobVO */  
4653 - jobVO: AdminJobVO; 4543 + queryVO */
  4544 + queryVO: AdminDeptQueryVO;
4654 }; 4545 };
4655 } 4546 }
4656 4547
4657 -/** @description response type for postOrderErpJobsEdit */  
4658 -export interface PostOrderErpJobsEditResponse { 4548 +/** @description response type for postOrderErpDeptsListByPage */
  4549 +export interface PostOrderErpDeptsListByPageResponse {
4659 /** 4550 /**
4660 * @description 4551 * @description
4661 * OK 4552 * OK
@@ -4683,25 +4574,25 @@ export interface PostOrderErpJobsEditResponse { @@ -4683,25 +4574,25 @@ export interface PostOrderErpJobsEditResponse {
4683 404: any; 4574 404: any;
4684 } 4575 }
4685 4576
4686 -export type PostOrderErpJobsEditResponseSuccess =  
4687 - PostOrderErpJobsEditResponse[200]; 4577 +export type PostOrderErpDeptsListByPageResponseSuccess =
  4578 + PostOrderErpDeptsListByPageResponse[200];
4688 /** 4579 /**
4689 * @description 4580 * @description
4690 - * 修改岗位  
4691 - * @tags 系统:岗位管理 4581 + * 查询部门
  4582 + * @tags 系统:部门管理
4692 * @produces * 4583 * @produces *
4693 * @consumes application/json 4584 * @consumes application/json
4694 */ 4585 */
4695 -export const postOrderErpJobsEdit = /* #__PURE__ */ (() => { 4586 +export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => {
4696 const method = 'post'; 4587 const method = 'post';
4697 - const url = '/order/erp/jobs/edit'; 4588 + const url = '/order/erp/depts/list_by_page';
4698 function request( 4589 function request(
4699 - option: PostOrderErpJobsEditOption,  
4700 - ): Promise<PostOrderErpJobsEditResponseSuccess> { 4590 + option: PostOrderErpDeptsListByPageOption,
  4591 + ): Promise<PostOrderErpDeptsListByPageResponseSuccess> {
4701 return requester(request.url, { 4592 return requester(request.url, {
4702 method: request.method, 4593 method: request.method,
4703 ...option, 4594 ...option,
4704 - }) as unknown as Promise<PostOrderErpJobsEditResponseSuccess>; 4595 + }) as unknown as Promise<PostOrderErpDeptsListByPageResponseSuccess>;
4705 } 4596 }
4706 4597
4707 /** http method */ 4598 /** http method */
@@ -4711,22 +4602,22 @@ export const postOrderErpJobsEdit = /* #__PURE__ */ (() =&gt; { @@ -4711,22 +4602,22 @@ export const postOrderErpJobsEdit = /* #__PURE__ */ (() =&gt; {
4711 return request; 4602 return request;
4712 })(); 4603 })();
4713 4604
4714 -/** @description request parameter type for postOrderErpJobsListByPage */  
4715 -export interface PostOrderErpJobsListByPageOption { 4605 +/** @description request parameter type for postOrderErpDictionaryAdd */
  4606 +export interface PostOrderErpDictionaryAddOption {
4716 /** 4607 /**
4717 * @description 4608 * @description
4718 - * queryVO 4609 + * dictionaryVO
4719 */ 4610 */
4720 body: { 4611 body: {
4721 /** 4612 /**
4722 @description 4613 @description
4723 - queryVO */  
4724 - queryVO: AdminJobQueryVO; 4614 + dictionaryVO */
  4615 + dictionaryVO: DictionaryVO;
4725 }; 4616 };
4726 } 4617 }
4727 4618
4728 -/** @description response type for postOrderErpJobsListByPage */  
4729 -export interface PostOrderErpJobsListByPageResponse { 4619 +/** @description response type for postOrderErpDictionaryAdd */
  4620 +export interface PostOrderErpDictionaryAddResponse {
4730 /** 4621 /**
4731 * @description 4622 * @description
4732 * OK 4623 * OK
@@ -4754,25 +4645,25 @@ export interface PostOrderErpJobsListByPageResponse { @@ -4754,25 +4645,25 @@ export interface PostOrderErpJobsListByPageResponse {
4754 404: any; 4645 404: any;
4755 } 4646 }
4756 4647
4757 -export type PostOrderErpJobsListByPageResponseSuccess =  
4758 - PostOrderErpJobsListByPageResponse[200]; 4648 +export type PostOrderErpDictionaryAddResponseSuccess =
  4649 + PostOrderErpDictionaryAddResponse[200];
4759 /** 4650 /**
4760 * @description 4651 * @description
4761 - * 查询岗位  
4762 - * @tags 系统:岗位管理 4652 + * 新增字典
  4653 + * @tags 系统:字典管理
4763 * @produces * 4654 * @produces *
4764 * @consumes application/json 4655 * @consumes application/json
4765 */ 4656 */
4766 -export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => { 4657 +export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => {
4767 const method = 'post'; 4658 const method = 'post';
4768 - const url = '/order/erp/jobs/list_by_page'; 4659 + const url = '/order/erp/dictionary/add';
4769 function request( 4660 function request(
4770 - option: PostOrderErpJobsListByPageOption,  
4771 - ): Promise<PostOrderErpJobsListByPageResponseSuccess> { 4661 + option: PostOrderErpDictionaryAddOption,
  4662 + ): Promise<PostOrderErpDictionaryAddResponseSuccess> {
4772 return requester(request.url, { 4663 return requester(request.url, {
4773 method: request.method, 4664 method: request.method,
4774 ...option, 4665 ...option,
4775 - }) as unknown as Promise<PostOrderErpJobsListByPageResponseSuccess>; 4666 + }) as unknown as Promise<PostOrderErpDictionaryAddResponseSuccess>;
4776 } 4667 }
4777 4668
4778 /** http method */ 4669 /** http method */
@@ -4782,22 +4673,22 @@ export const postOrderErpJobsListByPage = /* #__PURE__ */ (() =&gt; { @@ -4782,22 +4673,22 @@ export const postOrderErpJobsListByPage = /* #__PURE__ */ (() =&gt; {
4782 return request; 4673 return request;
4783 })(); 4674 })();
4784 4675
4785 -/** @description request parameter type for postOrderErpLogsList */  
4786 -export interface PostOrderErpLogsListOption { 4676 +/** @description request parameter type for postOrderErpDictionaryDelete */
  4677 +export interface PostOrderErpDictionaryDeleteOption {
4787 /** 4678 /**
4788 * @description 4679 * @description
4789 - * sysLogQueryVO 4680 + * queryVO
4790 */ 4681 */
4791 body: { 4682 body: {
4792 /** 4683 /**
4793 @description 4684 @description
4794 - sysLogQueryVO */  
4795 - sysLogQueryVO: SysLogQueryVO; 4685 + queryVO */
  4686 + queryVO: DictionaryQueryVO;
4796 }; 4687 };
4797 } 4688 }
4798 4689
4799 -/** @description response type for postOrderErpLogsList */  
4800 -export interface PostOrderErpLogsListResponse { 4690 +/** @description response type for postOrderErpDictionaryDelete */
  4691 +export interface PostOrderErpDictionaryDeleteResponse {
4801 /** 4692 /**
4802 * @description 4693 * @description
4803 * OK 4694 * OK
@@ -4825,25 +4716,25 @@ export interface PostOrderErpLogsListResponse { @@ -4825,25 +4716,25 @@ export interface PostOrderErpLogsListResponse {
4825 404: any; 4716 404: any;
4826 } 4717 }
4827 4718
4828 -export type PostOrderErpLogsListResponseSuccess =  
4829 - PostOrderErpLogsListResponse[200]; 4719 +export type PostOrderErpDictionaryDeleteResponseSuccess =
  4720 + PostOrderErpDictionaryDeleteResponse[200];
4830 /** 4721 /**
4831 * @description 4722 * @description
4832 - * 分页查询  
4833 - * @tags 系统日志 4723 + * 删除字典
  4724 + * @tags 系统:字典管理
4834 * @produces * 4725 * @produces *
4835 * @consumes application/json 4726 * @consumes application/json
4836 */ 4727 */
4837 -export const postOrderErpLogsList = /* #__PURE__ */ (() => { 4728 +export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => {
4838 const method = 'post'; 4729 const method = 'post';
4839 - const url = '/order/erp/logs/list'; 4730 + const url = '/order/erp/dictionary/delete';
4840 function request( 4731 function request(
4841 - option: PostOrderErpLogsListOption,  
4842 - ): Promise<PostOrderErpLogsListResponseSuccess> { 4732 + option: PostOrderErpDictionaryDeleteOption,
  4733 + ): Promise<PostOrderErpDictionaryDeleteResponseSuccess> {
4843 return requester(request.url, { 4734 return requester(request.url, {
4844 method: request.method, 4735 method: request.method,
4845 ...option, 4736 ...option,
4846 - }) as unknown as Promise<PostOrderErpLogsListResponseSuccess>; 4737 + }) as unknown as Promise<PostOrderErpDictionaryDeleteResponseSuccess>;
4847 } 4738 }
4848 4739
4849 /** http method */ 4740 /** http method */
@@ -4853,22 +4744,22 @@ export const postOrderErpLogsList = /* #__PURE__ */ (() =&gt; { @@ -4853,22 +4744,22 @@ export const postOrderErpLogsList = /* #__PURE__ */ (() =&gt; {
4853 return request; 4744 return request;
4854 })(); 4745 })();
4855 4746
4856 -/** @description request parameter type for postOrderErpMenusAdd */  
4857 -export interface PostOrderErpMenusAddOption { 4747 +/** @description request parameter type for postOrderErpDictionaryEdit */
  4748 +export interface PostOrderErpDictionaryEditOption {
4858 /** 4749 /**
4859 * @description 4750 * @description
4860 - * menuVO 4751 + * dictionaryVO
4861 */ 4752 */
4862 body: { 4753 body: {
4863 /** 4754 /**
4864 @description 4755 @description
4865 - menuVO */  
4866 - menuVO: AdminMenuVO; 4756 + dictionaryVO */
  4757 + dictionaryVO: DictionaryVO;
4867 }; 4758 };
4868 } 4759 }
4869 4760
4870 -/** @description response type for postOrderErpMenusAdd */  
4871 -export interface PostOrderErpMenusAddResponse { 4761 +/** @description response type for postOrderErpDictionaryEdit */
  4762 +export interface PostOrderErpDictionaryEditResponse {
4872 /** 4763 /**
4873 * @description 4764 * @description
4874 * OK 4765 * OK
@@ -4896,25 +4787,25 @@ export interface PostOrderErpMenusAddResponse { @@ -4896,25 +4787,25 @@ export interface PostOrderErpMenusAddResponse {
4896 404: any; 4787 404: any;
4897 } 4788 }
4898 4789
4899 -export type PostOrderErpMenusAddResponseSuccess =  
4900 - PostOrderErpMenusAddResponse[200]; 4790 +export type PostOrderErpDictionaryEditResponseSuccess =
  4791 + PostOrderErpDictionaryEditResponse[200];
4901 /** 4792 /**
4902 * @description 4793 * @description
4903 - * 新增菜单  
4904 - * @tags 系统:菜单管理 4794 + * 修改字典
  4795 + * @tags 系统:字典管理
4905 * @produces * 4796 * @produces *
4906 * @consumes application/json 4797 * @consumes application/json
4907 */ 4798 */
4908 -export const postOrderErpMenusAdd = /* #__PURE__ */ (() => { 4799 +export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => {
4909 const method = 'post'; 4800 const method = 'post';
4910 - const url = '/order/erp/menus/add'; 4801 + const url = '/order/erp/dictionary/edit';
4911 function request( 4802 function request(
4912 - option: PostOrderErpMenusAddOption,  
4913 - ): Promise<PostOrderErpMenusAddResponseSuccess> { 4803 + option: PostOrderErpDictionaryEditOption,
  4804 + ): Promise<PostOrderErpDictionaryEditResponseSuccess> {
4914 return requester(request.url, { 4805 return requester(request.url, {
4915 method: request.method, 4806 method: request.method,
4916 ...option, 4807 ...option,
4917 - }) as unknown as Promise<PostOrderErpMenusAddResponseSuccess>; 4808 + }) as unknown as Promise<PostOrderErpDictionaryEditResponseSuccess>;
4918 } 4809 }
4919 4810
4920 /** http method */ 4811 /** http method */
@@ -4924,8 +4815,8 @@ export const postOrderErpMenusAdd = /* #__PURE__ */ (() =&gt; { @@ -4924,8 +4815,8 @@ export const postOrderErpMenusAdd = /* #__PURE__ */ (() =&gt; {
4924 return request; 4815 return request;
4925 })(); 4816 })();
4926 4817
4927 -/** @description request parameter type for postOrderErpMenusAll */  
4928 -export interface PostOrderErpMenusAllOption { 4818 +/** @description request parameter type for postOrderErpDictionaryGetAll */
  4819 +export interface PostOrderErpDictionaryGetAllOption {
4929 /** 4820 /**
4930 * @description 4821 * @description
4931 * queryVO 4822 * queryVO
@@ -4934,12 +4825,12 @@ export interface PostOrderErpMenusAllOption { @@ -4934,12 +4825,12 @@ export interface PostOrderErpMenusAllOption {
4934 /** 4825 /**
4935 @description 4826 @description
4936 queryVO */ 4827 queryVO */
4937 - queryVO: AdminMenuQueryVO; 4828 + queryVO: DictionaryQueryVO;
4938 }; 4829 };
4939 } 4830 }
4940 4831
4941 -/** @description response type for postOrderErpMenusAll */  
4942 -export interface PostOrderErpMenusAllResponse { 4832 +/** @description response type for postOrderErpDictionaryGetAll */
  4833 +export interface PostOrderErpDictionaryGetAllResponse {
4943 /** 4834 /**
4944 * @description 4835 * @description
4945 * OK 4836 * OK
@@ -4967,25 +4858,25 @@ export interface PostOrderErpMenusAllResponse { @@ -4967,25 +4858,25 @@ export interface PostOrderErpMenusAllResponse {
4967 404: any; 4858 404: any;
4968 } 4859 }
4969 4860
4970 -export type PostOrderErpMenusAllResponseSuccess =  
4971 - PostOrderErpMenusAllResponse[200]; 4861 +export type PostOrderErpDictionaryGetAllResponseSuccess =
  4862 + PostOrderErpDictionaryGetAllResponse[200];
4972 /** 4863 /**
4973 * @description 4864 * @description
4974 - * 查询菜单  
4975 - * @tags 系统:菜单管理 4865 + * 获取所有字典
  4866 + * @tags 系统:字典管理
4976 * @produces * 4867 * @produces *
4977 * @consumes application/json 4868 * @consumes application/json
4978 */ 4869 */
4979 -export const postOrderErpMenusAll = /* #__PURE__ */ (() => { 4870 +export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => {
4980 const method = 'post'; 4871 const method = 'post';
4981 - const url = '/order/erp/menus/all'; 4872 + const url = '/order/erp/dictionary/get_all';
4982 function request( 4873 function request(
4983 - option: PostOrderErpMenusAllOption,  
4984 - ): Promise<PostOrderErpMenusAllResponseSuccess> { 4874 + option: PostOrderErpDictionaryGetAllOption,
  4875 + ): Promise<PostOrderErpDictionaryGetAllResponseSuccess> {
4985 return requester(request.url, { 4876 return requester(request.url, {
4986 method: request.method, 4877 method: request.method,
4987 ...option, 4878 ...option,
4988 - }) as unknown as Promise<PostOrderErpMenusAllResponseSuccess>; 4879 + }) as unknown as Promise<PostOrderErpDictionaryGetAllResponseSuccess>;
4989 } 4880 }
4990 4881
4991 /** http method */ 4882 /** http method */
@@ -4995,8 +4886,22 @@ export const postOrderErpMenusAll = /* #__PURE__ */ (() =&gt; { @@ -4995,8 +4886,22 @@ export const postOrderErpMenusAll = /* #__PURE__ */ (() =&gt; {
4995 return request; 4886 return request;
4996 })(); 4887 })();
4997 4888
4998 -/** @description response type for postOrderErpMenusBuild */  
4999 -export interface PostOrderErpMenusBuildResponse { 4889 +/** @description request parameter type for postOrderErpDictionaryListByPage */
  4890 +export interface PostOrderErpDictionaryListByPageOption {
  4891 + /**
  4892 + * @description
  4893 + * queryVO
  4894 + */
  4895 + body: {
  4896 + /**
  4897 + @description
  4898 + queryVO */
  4899 + queryVO: DictionaryQueryVO;
  4900 + };
  4901 +}
  4902 +
  4903 +/** @description response type for postOrderErpDictionaryListByPage */
  4904 +export interface PostOrderErpDictionaryListByPageResponse {
5000 /** 4905 /**
5001 * @description 4906 * @description
5002 * OK 4907 * OK
@@ -5024,22 +4929,25 @@ export interface PostOrderErpMenusBuildResponse { @@ -5024,22 +4929,25 @@ export interface PostOrderErpMenusBuildResponse {
5024 404: any; 4929 404: any;
5025 } 4930 }
5026 4931
5027 -export type PostOrderErpMenusBuildResponseSuccess =  
5028 - PostOrderErpMenusBuildResponse[200]; 4932 +export type PostOrderErpDictionaryListByPageResponseSuccess =
  4933 + PostOrderErpDictionaryListByPageResponse[200];
5029 /** 4934 /**
5030 * @description 4935 * @description
5031 - * 获取前端所需菜单  
5032 - * @tags 系统:菜单管理 4936 + * 查询字典列表
  4937 + * @tags 系统:字典管理
5033 * @produces * 4938 * @produces *
5034 * @consumes application/json 4939 * @consumes application/json
5035 */ 4940 */
5036 -export const postOrderErpMenusBuild = /* #__PURE__ */ (() => { 4941 +export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => {
5037 const method = 'post'; 4942 const method = 'post';
5038 - const url = '/order/erp/menus/build';  
5039 - function request(): Promise<PostOrderErpMenusBuildResponseSuccess> { 4943 + const url = '/order/erp/dictionary/list_by_page';
  4944 + function request(
  4945 + option: PostOrderErpDictionaryListByPageOption,
  4946 + ): Promise<PostOrderErpDictionaryListByPageResponseSuccess> {
5040 return requester(request.url, { 4947 return requester(request.url, {
5041 method: request.method, 4948 method: request.method,
5042 - }) as unknown as Promise<PostOrderErpMenusBuildResponseSuccess>; 4949 + ...option,
  4950 + }) as unknown as Promise<PostOrderErpDictionaryListByPageResponseSuccess>;
5043 } 4951 }
5044 4952
5045 /** http method */ 4953 /** http method */
@@ -5049,22 +4957,8 @@ export const postOrderErpMenusBuild = /* #__PURE__ */ (() =&gt; { @@ -5049,22 +4957,8 @@ export const postOrderErpMenusBuild = /* #__PURE__ */ (() =&gt; {
5049 return request; 4957 return request;
5050 })(); 4958 })();
5051 4959
5052 -/** @description request parameter type for postOrderErpMenusDelete */  
5053 -export interface PostOrderErpMenusDeleteOption {  
5054 - /**  
5055 - * @description  
5056 - * queryVO  
5057 - */  
5058 - body: {  
5059 - /**  
5060 - @description  
5061 - queryVO */  
5062 - queryVO: AdminMenuQueryVO;  
5063 - };  
5064 -}  
5065 -  
5066 -/** @description response type for postOrderErpMenusDelete */  
5067 -export interface PostOrderErpMenusDeleteResponse { 4960 +/** @description response type for getOrderErpIndexChartData */
  4961 +export interface GetOrderErpIndexChartDataResponse {
5068 /** 4962 /**
5069 * @description 4963 * @description
5070 * OK 4964 * OK
@@ -5072,11 +4966,6 @@ export interface PostOrderErpMenusDeleteResponse { @@ -5072,11 +4966,6 @@ export interface PostOrderErpMenusDeleteResponse {
5072 200: ServerResult; 4966 200: ServerResult;
5073 /** 4967 /**
5074 * @description 4968 * @description
5075 - * Created  
5076 - */  
5077 - 201: any;  
5078 - /**  
5079 - * @description  
5080 * Unauthorized 4969 * Unauthorized
5081 */ 4970 */
5082 401: any; 4971 401: any;
@@ -5092,25 +4981,21 @@ export interface PostOrderErpMenusDeleteResponse { @@ -5092,25 +4981,21 @@ export interface PostOrderErpMenusDeleteResponse {
5092 404: any; 4981 404: any;
5093 } 4982 }
5094 4983
5095 -export type PostOrderErpMenusDeleteResponseSuccess =  
5096 - PostOrderErpMenusDeleteResponse[200]; 4984 +export type GetOrderErpIndexChartDataResponseSuccess =
  4985 + GetOrderErpIndexChartDataResponse[200];
5097 /** 4986 /**
5098 * @description 4987 * @description
5099 - * 删除菜单  
5100 - * @tags 系统:菜单管理 4988 + * 首页订单趋势
  4989 + * @tags 首页
5101 * @produces * 4990 * @produces *
5102 - * @consumes application/json  
5103 */ 4991 */
5104 -export const postOrderErpMenusDelete = /* #__PURE__ */ (() => {  
5105 - const method = 'post';  
5106 - const url = '/order/erp/menus/delete';  
5107 - function request(  
5108 - option: PostOrderErpMenusDeleteOption,  
5109 - ): Promise<PostOrderErpMenusDeleteResponseSuccess> { 4992 +export const getOrderErpIndexChartData = /* #__PURE__ */ (() => {
  4993 + const method = 'get';
  4994 + const url = '/order/erp/index/chartData';
  4995 + function request(): Promise<GetOrderErpIndexChartDataResponseSuccess> {
5110 return requester(request.url, { 4996 return requester(request.url, {
5111 method: request.method, 4997 method: request.method,
5112 - ...option,  
5113 - }) as unknown as Promise<PostOrderErpMenusDeleteResponseSuccess>; 4998 + }) as unknown as Promise<GetOrderErpIndexChartDataResponseSuccess>;
5114 } 4999 }
5115 5000
5116 /** http method */ 5001 /** http method */
@@ -5120,22 +5005,8 @@ export const postOrderErpMenusDelete = /* #__PURE__ */ (() =&gt; { @@ -5120,22 +5005,8 @@ export const postOrderErpMenusDelete = /* #__PURE__ */ (() =&gt; {
5120 return request; 5005 return request;
5121 })(); 5006 })();
5122 5007
5123 -/** @description request parameter type for postOrderErpMenusEdit */  
5124 -export interface PostOrderErpMenusEditOption {  
5125 - /**  
5126 - * @description  
5127 - * menuVO  
5128 - */  
5129 - body: {  
5130 - /**  
5131 - @description  
5132 - menuVO */  
5133 - menuVO: AdminMenuVO;  
5134 - };  
5135 -}  
5136 -  
5137 -/** @description response type for postOrderErpMenusEdit */  
5138 -export interface PostOrderErpMenusEditResponse { 5008 +/** @description response type for getOrderErpIndexData */
  5009 +export interface GetOrderErpIndexDataResponse {
5139 /** 5010 /**
5140 * @description 5011 * @description
5141 * OK 5012 * OK
@@ -5143,11 +5014,6 @@ export interface PostOrderErpMenusEditResponse { @@ -5143,11 +5014,6 @@ export interface PostOrderErpMenusEditResponse {
5143 200: ServerResult; 5014 200: ServerResult;
5144 /** 5015 /**
5145 * @description 5016 * @description
5146 - * Created  
5147 - */  
5148 - 201: any;  
5149 - /**  
5150 - * @description  
5151 * Unauthorized 5017 * Unauthorized
5152 */ 5018 */
5153 401: any; 5019 401: any;
@@ -5163,25 +5029,21 @@ export interface PostOrderErpMenusEditResponse { @@ -5163,25 +5029,21 @@ export interface PostOrderErpMenusEditResponse {
5163 404: any; 5029 404: any;
5164 } 5030 }
5165 5031
5166 -export type PostOrderErpMenusEditResponseSuccess =  
5167 - PostOrderErpMenusEditResponse[200]; 5032 +export type GetOrderErpIndexDataResponseSuccess =
  5033 + GetOrderErpIndexDataResponse[200];
5168 /** 5034 /**
5169 - * @description  
5170 - * 修改菜单  
5171 - * @tags 系统:菜单管理 5035 + * @description
  5036 + * 首页统计数据
  5037 + * @tags 首页
5172 * @produces * 5038 * @produces *
5173 - * @consumes application/json  
5174 */ 5039 */
5175 -export const postOrderErpMenusEdit = /* #__PURE__ */ (() => {  
5176 - const method = 'post';  
5177 - const url = '/order/erp/menus/edit';  
5178 - function request(  
5179 - option: PostOrderErpMenusEditOption,  
5180 - ): Promise<PostOrderErpMenusEditResponseSuccess> { 5040 +export const getOrderErpIndexData = /* #__PURE__ */ (() => {
  5041 + const method = 'get';
  5042 + const url = '/order/erp/index/data';
  5043 + function request(): Promise<GetOrderErpIndexDataResponseSuccess> {
5181 return requester(request.url, { 5044 return requester(request.url, {
5182 method: request.method, 5045 method: request.method,
5183 - ...option,  
5184 - }) as unknown as Promise<PostOrderErpMenusEditResponseSuccess>; 5046 + }) as unknown as Promise<GetOrderErpIndexDataResponseSuccess>;
5185 } 5047 }
5186 5048
5187 /** http method */ 5049 /** http method */
@@ -5191,8 +5053,22 @@ export const postOrderErpMenusEdit = /* #__PURE__ */ (() =&gt; { @@ -5191,8 +5053,22 @@ export const postOrderErpMenusEdit = /* #__PURE__ */ (() =&gt; {
5191 return request; 5053 return request;
5192 })(); 5054 })();
5193 5055
5194 -/** @description response type for postOrderErpMenusTree */  
5195 -export interface PostOrderErpMenusTreeResponse { 5056 +/** @description request parameter type for postOrderErpJobsAdd */
  5057 +export interface PostOrderErpJobsAddOption {
  5058 + /**
  5059 + * @description
  5060 + * jobVO
  5061 + */
  5062 + body: {
  5063 + /**
  5064 + @description
  5065 + jobVO */
  5066 + jobVO: AdminJobVO;
  5067 + };
  5068 +}
  5069 +
  5070 +/** @description response type for postOrderErpJobsAdd */
  5071 +export interface PostOrderErpJobsAddResponse {
5196 /** 5072 /**
5197 * @description 5073 * @description
5198 * OK 5074 * OK
@@ -5220,22 +5096,25 @@ export interface PostOrderErpMenusTreeResponse { @@ -5220,22 +5096,25 @@ export interface PostOrderErpMenusTreeResponse {
5220 404: any; 5096 404: any;
5221 } 5097 }
5222 5098
5223 -export type PostOrderErpMenusTreeResponseSuccess =  
5224 - PostOrderErpMenusTreeResponse[200]; 5099 +export type PostOrderErpJobsAddResponseSuccess =
  5100 + PostOrderErpJobsAddResponse[200];
5225 /** 5101 /**
5226 * @description 5102 * @description
5227 - * 返回全部的菜单  
5228 - * @tags 系统:菜单管理 5103 + * 新增岗位
  5104 + * @tags 系统:岗位管理
5229 * @produces * 5105 * @produces *
5230 * @consumes application/json 5106 * @consumes application/json
5231 */ 5107 */
5232 -export const postOrderErpMenusTree = /* #__PURE__ */ (() => { 5108 +export const postOrderErpJobsAdd = /* #__PURE__ */ (() => {
5233 const method = 'post'; 5109 const method = 'post';
5234 - const url = '/order/erp/menus/tree';  
5235 - function request(): Promise<PostOrderErpMenusTreeResponseSuccess> { 5110 + const url = '/order/erp/jobs/add';
  5111 + function request(
  5112 + option: PostOrderErpJobsAddOption,
  5113 + ): Promise<PostOrderErpJobsAddResponseSuccess> {
5236 return requester(request.url, { 5114 return requester(request.url, {
5237 method: request.method, 5115 method: request.method,
5238 - }) as unknown as Promise<PostOrderErpMenusTreeResponseSuccess>; 5116 + ...option,
  5117 + }) as unknown as Promise<PostOrderErpJobsAddResponseSuccess>;
5239 } 5118 }
5240 5119
5241 /** http method */ 5120 /** http method */
@@ -5245,8 +5124,22 @@ export const postOrderErpMenusTree = /* #__PURE__ */ (() =&gt; { @@ -5245,8 +5124,22 @@ export const postOrderErpMenusTree = /* #__PURE__ */ (() =&gt; {
5245 return request; 5124 return request;
5246 })(); 5125 })();
5247 5126
5248 -/** @description response type for postOrderErpMessageGetUnreadNum */  
5249 -export interface PostOrderErpMessageGetUnreadNumResponse { 5127 +/** @description request parameter type for postOrderErpJobsDelete */
  5128 +export interface PostOrderErpJobsDeleteOption {
  5129 + /**
  5130 + * @description
  5131 + * queryVO
  5132 + */
  5133 + body: {
  5134 + /**
  5135 + @description
  5136 + queryVO */
  5137 + queryVO: AdminJobQueryVO;
  5138 + };
  5139 +}
  5140 +
  5141 +/** @description response type for postOrderErpJobsDelete */
  5142 +export interface PostOrderErpJobsDeleteResponse {
5250 /** 5143 /**
5251 * @description 5144 * @description
5252 * OK 5145 * OK
@@ -5274,22 +5167,25 @@ export interface PostOrderErpMessageGetUnreadNumResponse { @@ -5274,22 +5167,25 @@ export interface PostOrderErpMessageGetUnreadNumResponse {
5274 404: any; 5167 404: any;
5275 } 5168 }
5276 5169
5277 -export type PostOrderErpMessageGetUnreadNumResponseSuccess =  
5278 - PostOrderErpMessageGetUnreadNumResponse[200]; 5170 +export type PostOrderErpJobsDeleteResponseSuccess =
  5171 + PostOrderErpJobsDeleteResponse[200];
5279 /** 5172 /**
5280 * @description 5173 * @description
5281 - * getUnreadNum  
5282 - * @tags message-controller 5174 + * 删除岗位
  5175 + * @tags 系统:岗位管理
5283 * @produces * 5176 * @produces *
5284 * @consumes application/json 5177 * @consumes application/json
5285 */ 5178 */
5286 -export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => { 5179 +export const postOrderErpJobsDelete = /* #__PURE__ */ (() => {
5287 const method = 'post'; 5180 const method = 'post';
5288 - const url = '/order/erp/message/getUnreadNum';  
5289 - function request(): Promise<PostOrderErpMessageGetUnreadNumResponseSuccess> { 5181 + const url = '/order/erp/jobs/delete';
  5182 + function request(
  5183 + option: PostOrderErpJobsDeleteOption,
  5184 + ): Promise<PostOrderErpJobsDeleteResponseSuccess> {
5290 return requester(request.url, { 5185 return requester(request.url, {
5291 method: request.method, 5186 method: request.method,
5292 - }) as unknown as Promise<PostOrderErpMessageGetUnreadNumResponseSuccess>; 5187 + ...option,
  5188 + }) as unknown as Promise<PostOrderErpJobsDeleteResponseSuccess>;
5293 } 5189 }
5294 5190
5295 /** http method */ 5191 /** http method */
@@ -5299,22 +5195,22 @@ export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() =&gt; { @@ -5299,22 +5195,22 @@ export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() =&gt; {
5299 return request; 5195 return request;
5300 })(); 5196 })();
5301 5197
5302 -/** @description request parameter type for postOrderErpMessageQueryMyMessage */  
5303 -export interface PostOrderErpMessageQueryMyMessageOption { 5198 +/** @description request parameter type for postOrderErpJobsEdit */
  5199 +export interface PostOrderErpJobsEditOption {
5304 /** 5200 /**
5305 * @description 5201 * @description
5306 - * messageQueryDTO 5202 + * jobVO
5307 */ 5203 */
5308 body: { 5204 body: {
5309 /** 5205 /**
5310 @description 5206 @description
5311 - messageQueryDTO */  
5312 - messageQueryDTO: MessageQueryDTO; 5207 + jobVO */
  5208 + jobVO: AdminJobVO;
5313 }; 5209 };
5314 } 5210 }
5315 5211
5316 -/** @description response type for postOrderErpMessageQueryMyMessage */  
5317 -export interface PostOrderErpMessageQueryMyMessageResponse { 5212 +/** @description response type for postOrderErpJobsEdit */
  5213 +export interface PostOrderErpJobsEditResponse {
5318 /** 5214 /**
5319 * @description 5215 * @description
5320 * OK 5216 * OK
@@ -5342,25 +5238,25 @@ export interface PostOrderErpMessageQueryMyMessageResponse { @@ -5342,25 +5238,25 @@ export interface PostOrderErpMessageQueryMyMessageResponse {
5342 404: any; 5238 404: any;
5343 } 5239 }
5344 5240
5345 -export type PostOrderErpMessageQueryMyMessageResponseSuccess =  
5346 - PostOrderErpMessageQueryMyMessageResponse[200]; 5241 +export type PostOrderErpJobsEditResponseSuccess =
  5242 + PostOrderErpJobsEditResponse[200];
5347 /** 5243 /**
5348 * @description 5244 * @description
5349 - * queryMyMessage  
5350 - * @tags message-controller 5245 + * 修改岗位
  5246 + * @tags 系统:岗位管理
5351 * @produces * 5247 * @produces *
5352 * @consumes application/json 5248 * @consumes application/json
5353 */ 5249 */
5354 -export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => { 5250 +export const postOrderErpJobsEdit = /* #__PURE__ */ (() => {
5355 const method = 'post'; 5251 const method = 'post';
5356 - const url = '/order/erp/message/queryMyMessage'; 5252 + const url = '/order/erp/jobs/edit';
5357 function request( 5253 function request(
5358 - option: PostOrderErpMessageQueryMyMessageOption,  
5359 - ): Promise<PostOrderErpMessageQueryMyMessageResponseSuccess> { 5254 + option: PostOrderErpJobsEditOption,
  5255 + ): Promise<PostOrderErpJobsEditResponseSuccess> {
5360 return requester(request.url, { 5256 return requester(request.url, {
5361 method: request.method, 5257 method: request.method,
5362 ...option, 5258 ...option,
5363 - }) as unknown as Promise<PostOrderErpMessageQueryMyMessageResponseSuccess>; 5259 + }) as unknown as Promise<PostOrderErpJobsEditResponseSuccess>;
5364 } 5260 }
5365 5261
5366 /** http method */ 5262 /** http method */
@@ -5370,22 +5266,22 @@ export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() =&gt; { @@ -5370,22 +5266,22 @@ export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() =&gt; {
5370 return request; 5266 return request;
5371 })(); 5267 })();
5372 5268
5373 -/** @description request parameter type for postOrderErpMessageRead */  
5374 -export interface PostOrderErpMessageReadOption { 5269 +/** @description request parameter type for postOrderErpJobsListByPage */
  5270 +export interface PostOrderErpJobsListByPageOption {
5375 /** 5271 /**
5376 * @description 5272 * @description
5377 - * ids 5273 + * queryVO
5378 */ 5274 */
5379 body: { 5275 body: {
5380 /** 5276 /**
5381 @description 5277 @description
5382 - ids */  
5383 - ids: Array<number>; 5278 + queryVO */
  5279 + queryVO: AdminJobQueryVO;
5384 }; 5280 };
5385 } 5281 }
5386 5282
5387 -/** @description response type for postOrderErpMessageRead */  
5388 -export interface PostOrderErpMessageReadResponse { 5283 +/** @description response type for postOrderErpJobsListByPage */
  5284 +export interface PostOrderErpJobsListByPageResponse {
5389 /** 5285 /**
5390 * @description 5286 * @description
5391 * OK 5287 * OK
@@ -5413,25 +5309,25 @@ export interface PostOrderErpMessageReadResponse { @@ -5413,25 +5309,25 @@ export interface PostOrderErpMessageReadResponse {
5413 404: any; 5309 404: any;
5414 } 5310 }
5415 5311
5416 -export type PostOrderErpMessageReadResponseSuccess =  
5417 - PostOrderErpMessageReadResponse[200]; 5312 +export type PostOrderErpJobsListByPageResponseSuccess =
  5313 + PostOrderErpJobsListByPageResponse[200];
5418 /** 5314 /**
5419 * @description 5315 * @description
5420 - * read  
5421 - * @tags message-controller 5316 + * 查询岗位
  5317 + * @tags 系统:岗位管理
5422 * @produces * 5318 * @produces *
5423 * @consumes application/json 5319 * @consumes application/json
5424 */ 5320 */
5425 -export const postOrderErpMessageRead = /* #__PURE__ */ (() => { 5321 +export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => {
5426 const method = 'post'; 5322 const method = 'post';
5427 - const url = '/order/erp/message/read'; 5323 + const url = '/order/erp/jobs/list_by_page';
5428 function request( 5324 function request(
5429 - option: PostOrderErpMessageReadOption,  
5430 - ): Promise<PostOrderErpMessageReadResponseSuccess> { 5325 + option: PostOrderErpJobsListByPageOption,
  5326 + ): Promise<PostOrderErpJobsListByPageResponseSuccess> {
5431 return requester(request.url, { 5327 return requester(request.url, {
5432 method: request.method, 5328 method: request.method,
5433 ...option, 5329 ...option,
5434 - }) as unknown as Promise<PostOrderErpMessageReadResponseSuccess>; 5330 + }) as unknown as Promise<PostOrderErpJobsListByPageResponseSuccess>;
5435 } 5331 }
5436 5332
5437 /** http method */ 5333 /** http method */
@@ -5441,8 +5337,22 @@ export const postOrderErpMessageRead = /* #__PURE__ */ (() =&gt; { @@ -5441,8 +5337,22 @@ export const postOrderErpMessageRead = /* #__PURE__ */ (() =&gt; {
5441 return request; 5337 return request;
5442 })(); 5338 })();
5443 5339
5444 -/** @description response type for postOrderErpMessageReadAll */  
5445 -export interface PostOrderErpMessageReadAllResponse { 5340 +/** @description request parameter type for postOrderErpLogsList */
  5341 +export interface PostOrderErpLogsListOption {
  5342 + /**
  5343 + * @description
  5344 + * sysLogQueryVO
  5345 + */
  5346 + body: {
  5347 + /**
  5348 + @description
  5349 + sysLogQueryVO */
  5350 + sysLogQueryVO: SysLogQueryVO;
  5351 + };
  5352 +}
  5353 +
  5354 +/** @description response type for postOrderErpLogsList */
  5355 +export interface PostOrderErpLogsListResponse {
5446 /** 5356 /**
5447 * @description 5357 * @description
5448 * OK 5358 * OK
@@ -5470,22 +5380,25 @@ export interface PostOrderErpMessageReadAllResponse { @@ -5470,22 +5380,25 @@ export interface PostOrderErpMessageReadAllResponse {
5470 404: any; 5380 404: any;
5471 } 5381 }
5472 5382
5473 -export type PostOrderErpMessageReadAllResponseSuccess =  
5474 - PostOrderErpMessageReadAllResponse[200]; 5383 +export type PostOrderErpLogsListResponseSuccess =
  5384 + PostOrderErpLogsListResponse[200];
5475 /** 5385 /**
5476 * @description 5386 * @description
5477 - * readAll  
5478 - * @tags message-controller 5387 + * 分页查询
  5388 + * @tags 系统日志
5479 * @produces * 5389 * @produces *
5480 * @consumes application/json 5390 * @consumes application/json
5481 */ 5391 */
5482 -export const postOrderErpMessageReadAll = /* #__PURE__ */ (() => { 5392 +export const postOrderErpLogsList = /* #__PURE__ */ (() => {
5483 const method = 'post'; 5393 const method = 'post';
5484 - const url = '/order/erp/message/readAll';  
5485 - function request(): Promise<PostOrderErpMessageReadAllResponseSuccess> { 5394 + const url = '/order/erp/logs/list';
  5395 + function request(
  5396 + option: PostOrderErpLogsListOption,
  5397 + ): Promise<PostOrderErpLogsListResponseSuccess> {
5486 return requester(request.url, { 5398 return requester(request.url, {
5487 method: request.method, 5399 method: request.method,
5488 - }) as unknown as Promise<PostOrderErpMessageReadAllResponseSuccess>; 5400 + ...option,
  5401 + }) as unknown as Promise<PostOrderErpLogsListResponseSuccess>;
5489 } 5402 }
5490 5403
5491 /** http method */ 5404 /** http method */
@@ -5495,22 +5408,22 @@ export const postOrderErpMessageReadAll = /* #__PURE__ */ (() =&gt; { @@ -5495,22 +5408,22 @@ export const postOrderErpMessageReadAll = /* #__PURE__ */ (() =&gt; {
5495 return request; 5408 return request;
5496 })(); 5409 })();
5497 5410
5498 -/** @description request parameter type for postOrderErpOptLogListByPage */  
5499 -export interface PostOrderErpOptLogListByPageOption { 5411 +/** @description request parameter type for postOrderErpMenusAdd */
  5412 +export interface PostOrderErpMenusAddOption {
5500 /** 5413 /**
5501 * @description 5414 * @description
5502 - * queryVO 5415 + * menuVO
5503 */ 5416 */
5504 body: { 5417 body: {
5505 /** 5418 /**
5506 @description 5419 @description
5507 - queryVO */  
5508 - queryVO: OrderOptLogQueryVO; 5420 + menuVO */
  5421 + menuVO: AdminMenuVO;
5509 }; 5422 };
5510 } 5423 }
5511 5424
5512 -/** @description response type for postOrderErpOptLogListByPage */  
5513 -export interface PostOrderErpOptLogListByPageResponse { 5425 +/** @description response type for postOrderErpMenusAdd */
  5426 +export interface PostOrderErpMenusAddResponse {
5514 /** 5427 /**
5515 * @description 5428 * @description
5516 * OK 5429 * OK
@@ -5538,25 +5451,25 @@ export interface PostOrderErpOptLogListByPageResponse { @@ -5538,25 +5451,25 @@ export interface PostOrderErpOptLogListByPageResponse {
5538 404: any; 5451 404: any;
5539 } 5452 }
5540 5453
5541 -export type PostOrderErpOptLogListByPageResponseSuccess =  
5542 - PostOrderErpOptLogListByPageResponse[200]; 5454 +export type PostOrderErpMenusAddResponseSuccess =
  5455 + PostOrderErpMenusAddResponse[200];
5543 /** 5456 /**
5544 * @description 5457 * @description
5545 - * 分页查询  
5546 - * @tags 订单操作日志 5458 + * 新增菜单
  5459 + * @tags 系统:菜单管理
5547 * @produces * 5460 * @produces *
5548 * @consumes application/json 5461 * @consumes application/json
5549 */ 5462 */
5550 -export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => { 5463 +export const postOrderErpMenusAdd = /* #__PURE__ */ (() => {
5551 const method = 'post'; 5464 const method = 'post';
5552 - const url = '/order/erp/opt/log/list_by_page'; 5465 + const url = '/order/erp/menus/add';
5553 function request( 5466 function request(
5554 - option: PostOrderErpOptLogListByPageOption,  
5555 - ): Promise<PostOrderErpOptLogListByPageResponseSuccess> { 5467 + option: PostOrderErpMenusAddOption,
  5468 + ): Promise<PostOrderErpMenusAddResponseSuccess> {
5556 return requester(request.url, { 5469 return requester(request.url, {
5557 method: request.method, 5470 method: request.method,
5558 ...option, 5471 ...option,
5559 - }) as unknown as Promise<PostOrderErpOptLogListByPageResponseSuccess>; 5472 + }) as unknown as Promise<PostOrderErpMenusAddResponseSuccess>;
5560 } 5473 }
5561 5474
5562 /** http method */ 5475 /** http method */
@@ -5566,22 +5479,22 @@ export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() =&gt; { @@ -5566,22 +5479,22 @@ export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() =&gt; {
5566 return request; 5479 return request;
5567 })(); 5480 })();
5568 5481
5569 -/** @description request parameter type for postOrderErpOrderAdd */  
5570 -export interface PostOrderErpOrderAddOption { 5482 +/** @description request parameter type for postOrderErpMenusAll */
  5483 +export interface PostOrderErpMenusAllOption {
5571 /** 5484 /**
5572 * @description 5485 * @description
5573 - * orderAddVO 5486 + * queryVO
5574 */ 5487 */
5575 body: { 5488 body: {
5576 /** 5489 /**
5577 @description 5490 @description
5578 - orderAddVO */  
5579 - orderAddVO: OrderAddVO; 5491 + queryVO */
  5492 + queryVO: AdminMenuQueryVO;
5580 }; 5493 };
5581 } 5494 }
5582 5495
5583 -/** @description response type for postOrderErpOrderAdd */  
5584 -export interface PostOrderErpOrderAddResponse { 5496 +/** @description response type for postOrderErpMenusAll */
  5497 +export interface PostOrderErpMenusAllResponse {
5585 /** 5498 /**
5586 * @description 5499 * @description
5587 * OK 5500 * OK
@@ -5609,25 +5522,25 @@ export interface PostOrderErpOrderAddResponse { @@ -5609,25 +5522,25 @@ export interface PostOrderErpOrderAddResponse {
5609 404: any; 5522 404: any;
5610 } 5523 }
5611 5524
5612 -export type PostOrderErpOrderAddResponseSuccess =  
5613 - PostOrderErpOrderAddResponse[200]; 5525 +export type PostOrderErpMenusAllResponseSuccess =
  5526 + PostOrderErpMenusAllResponse[200];
5614 /** 5527 /**
5615 * @description 5528 * @description
5616 - * 新增数据  
5617 - * @tags 订单管理 5529 + * 查询菜单
  5530 + * @tags 系统:菜单管理
5618 * @produces * 5531 * @produces *
5619 * @consumes application/json 5532 * @consumes application/json
5620 */ 5533 */
5621 -export const postOrderErpOrderAdd = /* #__PURE__ */ (() => { 5534 +export const postOrderErpMenusAll = /* #__PURE__ */ (() => {
5622 const method = 'post'; 5535 const method = 'post';
5623 - const url = '/order/erp/order/add'; 5536 + const url = '/order/erp/menus/all';
5624 function request( 5537 function request(
5625 - option: PostOrderErpOrderAddOption,  
5626 - ): Promise<PostOrderErpOrderAddResponseSuccess> { 5538 + option: PostOrderErpMenusAllOption,
  5539 + ): Promise<PostOrderErpMenusAllResponseSuccess> {
5627 return requester(request.url, { 5540 return requester(request.url, {
5628 method: request.method, 5541 method: request.method,
5629 ...option, 5542 ...option,
5630 - }) as unknown as Promise<PostOrderErpOrderAddResponseSuccess>; 5543 + }) as unknown as Promise<PostOrderErpMenusAllResponseSuccess>;
5631 } 5544 }
5632 5545
5633 /** http method */ 5546 /** http method */
@@ -5637,22 +5550,8 @@ export const postOrderErpOrderAdd = /* #__PURE__ */ (() =&gt; { @@ -5637,22 +5550,8 @@ export const postOrderErpOrderAdd = /* #__PURE__ */ (() =&gt; {
5637 return request; 5550 return request;
5638 })(); 5551 })();
5639 5552
5640 -/** @description request parameter type for postOrderErpOrderDeleteById */  
5641 -export interface PostOrderErpOrderDeleteByIdOption {  
5642 - /**  
5643 - * @description  
5644 - * orderBaseInfoQueryVO  
5645 - */  
5646 - body: {  
5647 - /**  
5648 - @description  
5649 - orderBaseInfoQueryVO */  
5650 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO;  
5651 - };  
5652 -}  
5653 -  
5654 -/** @description response type for postOrderErpOrderDeleteById */  
5655 -export interface PostOrderErpOrderDeleteByIdResponse { 5553 +/** @description response type for postOrderErpMenusBuild */
  5554 +export interface PostOrderErpMenusBuildResponse {
5656 /** 5555 /**
5657 * @description 5556 * @description
5658 * OK 5557 * OK
@@ -5680,25 +5579,22 @@ export interface PostOrderErpOrderDeleteByIdResponse { @@ -5680,25 +5579,22 @@ export interface PostOrderErpOrderDeleteByIdResponse {
5680 404: any; 5579 404: any;
5681 } 5580 }
5682 5581
5683 -export type PostOrderErpOrderDeleteByIdResponseSuccess =  
5684 - PostOrderErpOrderDeleteByIdResponse[200]; 5582 +export type PostOrderErpMenusBuildResponseSuccess =
  5583 + PostOrderErpMenusBuildResponse[200];
5685 /** 5584 /**
5686 * @description 5585 * @description
5687 - * 删除数据  
5688 - * @tags 订单管理 5586 + * 获取前端所需菜单
  5587 + * @tags 系统:菜单管理
5689 * @produces * 5588 * @produces *
5690 * @consumes application/json 5589 * @consumes application/json
5691 */ 5590 */
5692 -export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => { 5591 +export const postOrderErpMenusBuild = /* #__PURE__ */ (() => {
5693 const method = 'post'; 5592 const method = 'post';
5694 - const url = '/order/erp/order/delete_by_id';  
5695 - function request(  
5696 - option: PostOrderErpOrderDeleteByIdOption,  
5697 - ): Promise<PostOrderErpOrderDeleteByIdResponseSuccess> { 5593 + const url = '/order/erp/menus/build';
  5594 + function request(): Promise<PostOrderErpMenusBuildResponseSuccess> {
5698 return requester(request.url, { 5595 return requester(request.url, {
5699 method: request.method, 5596 method: request.method,
5700 - ...option,  
5701 - }) as unknown as Promise<PostOrderErpOrderDeleteByIdResponseSuccess>; 5597 + }) as unknown as Promise<PostOrderErpMenusBuildResponseSuccess>;
5702 } 5598 }
5703 5599
5704 /** http method */ 5600 /** http method */
@@ -5708,22 +5604,22 @@ export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() =&gt; { @@ -5708,22 +5604,22 @@ export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() =&gt; {
5708 return request; 5604 return request;
5709 })(); 5605 })();
5710 5606
5711 -/** @description request parameter type for postOrderErpOrderEdit */  
5712 -export interface PostOrderErpOrderEditOption { 5607 +/** @description request parameter type for postOrderErpMenusDelete */
  5608 +export interface PostOrderErpMenusDeleteOption {
5713 /** 5609 /**
5714 * @description 5610 * @description
5715 - * updateVO 5611 + * queryVO
5716 */ 5612 */
5717 body: { 5613 body: {
5718 /** 5614 /**
5719 @description 5615 @description
5720 - updateVO */  
5721 - updateVO: OrderUpdateVO; 5616 + queryVO */
  5617 + queryVO: AdminMenuQueryVO;
5722 }; 5618 };
5723 } 5619 }
5724 5620
5725 -/** @description response type for postOrderErpOrderEdit */  
5726 -export interface PostOrderErpOrderEditResponse { 5621 +/** @description response type for postOrderErpMenusDelete */
  5622 +export interface PostOrderErpMenusDeleteResponse {
5727 /** 5623 /**
5728 * @description 5624 * @description
5729 * OK 5625 * OK
@@ -5751,25 +5647,25 @@ export interface PostOrderErpOrderEditResponse { @@ -5751,25 +5647,25 @@ export interface PostOrderErpOrderEditResponse {
5751 404: any; 5647 404: any;
5752 } 5648 }
5753 5649
5754 -export type PostOrderErpOrderEditResponseSuccess =  
5755 - PostOrderErpOrderEditResponse[200]; 5650 +export type PostOrderErpMenusDeleteResponseSuccess =
  5651 + PostOrderErpMenusDeleteResponse[200];
5756 /** 5652 /**
5757 * @description 5653 * @description
5758 - * 编辑数据  
5759 - * @tags 订单管理 5654 + * 删除菜单
  5655 + * @tags 系统:菜单管理
5760 * @produces * 5656 * @produces *
5761 * @consumes application/json 5657 * @consumes application/json
5762 */ 5658 */
5763 -export const postOrderErpOrderEdit = /* #__PURE__ */ (() => { 5659 +export const postOrderErpMenusDelete = /* #__PURE__ */ (() => {
5764 const method = 'post'; 5660 const method = 'post';
5765 - const url = '/order/erp/order/edit'; 5661 + const url = '/order/erp/menus/delete';
5766 function request( 5662 function request(
5767 - option: PostOrderErpOrderEditOption,  
5768 - ): Promise<PostOrderErpOrderEditResponseSuccess> { 5663 + option: PostOrderErpMenusDeleteOption,
  5664 + ): Promise<PostOrderErpMenusDeleteResponseSuccess> {
5769 return requester(request.url, { 5665 return requester(request.url, {
5770 method: request.method, 5666 method: request.method,
5771 ...option, 5667 ...option,
5772 - }) as unknown as Promise<PostOrderErpOrderEditResponseSuccess>; 5668 + }) as unknown as Promise<PostOrderErpMenusDeleteResponseSuccess>;
5773 } 5669 }
5774 5670
5775 /** http method */ 5671 /** http method */
@@ -5779,22 +5675,22 @@ export const postOrderErpOrderEdit = /* #__PURE__ */ (() =&gt; { @@ -5779,22 +5675,22 @@ export const postOrderErpOrderEdit = /* #__PURE__ */ (() =&gt; {
5779 return request; 5675 return request;
5780 })(); 5676 })();
5781 5677
5782 -/** @description request parameter type for postOrderErpOrderExport */  
5783 -export interface PostOrderErpOrderExportOption { 5678 +/** @description request parameter type for postOrderErpMenusEdit */
  5679 +export interface PostOrderErpMenusEditOption {
5784 /** 5680 /**
5785 * @description 5681 * @description
5786 - * orderBaseInfoQueryVO 5682 + * menuVO
5787 */ 5683 */
5788 body: { 5684 body: {
5789 /** 5685 /**
5790 @description 5686 @description
5791 - orderBaseInfoQueryVO */  
5792 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO; 5687 + menuVO */
  5688 + menuVO: AdminMenuVO;
5793 }; 5689 };
5794 } 5690 }
5795 5691
5796 -/** @description response type for postOrderErpOrderExport */  
5797 -export interface PostOrderErpOrderExportResponse { 5692 +/** @description response type for postOrderErpMenusEdit */
  5693 +export interface PostOrderErpMenusEditResponse {
5798 /** 5694 /**
5799 * @description 5695 * @description
5800 * OK 5696 * OK
@@ -5822,25 +5718,25 @@ export interface PostOrderErpOrderExportResponse { @@ -5822,25 +5718,25 @@ export interface PostOrderErpOrderExportResponse {
5822 404: any; 5718 404: any;
5823 } 5719 }
5824 5720
5825 -export type PostOrderErpOrderExportResponseSuccess =  
5826 - PostOrderErpOrderExportResponse[200]; 5721 +export type PostOrderErpMenusEditResponseSuccess =
  5722 + PostOrderErpMenusEditResponse[200];
5827 /** 5723 /**
5828 * @description 5724 * @description
5829 - * 导出订单  
5830 - * @tags 订单管理 5725 + * 修改菜单
  5726 + * @tags 系统:菜单管理
5831 * @produces * 5727 * @produces *
5832 * @consumes application/json 5728 * @consumes application/json
5833 */ 5729 */
5834 -export const postOrderErpOrderExport = /* #__PURE__ */ (() => { 5730 +export const postOrderErpMenusEdit = /* #__PURE__ */ (() => {
5835 const method = 'post'; 5731 const method = 'post';
5836 - const url = '/order/erp/order/export'; 5732 + const url = '/order/erp/menus/edit';
5837 function request( 5733 function request(
5838 - option: PostOrderErpOrderExportOption,  
5839 - ): Promise<PostOrderErpOrderExportResponseSuccess> { 5734 + option: PostOrderErpMenusEditOption,
  5735 + ): Promise<PostOrderErpMenusEditResponseSuccess> {
5840 return requester(request.url, { 5736 return requester(request.url, {
5841 method: request.method, 5737 method: request.method,
5842 ...option, 5738 ...option,
5843 - }) as unknown as Promise<PostOrderErpOrderExportResponseSuccess>; 5739 + }) as unknown as Promise<PostOrderErpMenusEditResponseSuccess>;
5844 } 5740 }
5845 5741
5846 /** http method */ 5742 /** http method */
@@ -5850,22 +5746,8 @@ export const postOrderErpOrderExport = /* #__PURE__ */ (() =&gt; { @@ -5850,22 +5746,8 @@ export const postOrderErpOrderExport = /* #__PURE__ */ (() =&gt; {
5850 return request; 5746 return request;
5851 })(); 5747 })();
5852 5748
5853 -/** @description request parameter type for postOrderErpOrderFieldUnlockApply */  
5854 -export interface PostOrderErpOrderFieldUnlockApplyOption {  
5855 - /**  
5856 - * @description  
5857 - * fieldVO  
5858 - */  
5859 - body: {  
5860 - /**  
5861 - @description  
5862 - fieldVO */  
5863 - fieldVO: OrderUnlockFieldApplyVO;  
5864 - };  
5865 -}  
5866 -  
5867 -/** @description response type for postOrderErpOrderFieldUnlockApply */  
5868 -export interface PostOrderErpOrderFieldUnlockApplyResponse { 5749 +/** @description response type for postOrderErpMenusTree */
  5750 +export interface PostOrderErpMenusTreeResponse {
5869 /** 5751 /**
5870 * @description 5752 * @description
5871 * OK 5753 * OK
@@ -5893,25 +5775,22 @@ export interface PostOrderErpOrderFieldUnlockApplyResponse { @@ -5893,25 +5775,22 @@ export interface PostOrderErpOrderFieldUnlockApplyResponse {
5893 404: any; 5775 404: any;
5894 } 5776 }
5895 5777
5896 -export type PostOrderErpOrderFieldUnlockApplyResponseSuccess =  
5897 - PostOrderErpOrderFieldUnlockApplyResponse[200]; 5778 +export type PostOrderErpMenusTreeResponseSuccess =
  5779 + PostOrderErpMenusTreeResponse[200];
5898 /** 5780 /**
5899 * @description 5781 * @description
5900 - * 字段解锁申请  
5901 - * @tags 订单管理 5782 + * 返回全部的菜单
  5783 + * @tags 系统:菜单管理
5902 * @produces * 5784 * @produces *
5903 * @consumes application/json 5785 * @consumes application/json
5904 */ 5786 */
5905 -export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => { 5787 +export const postOrderErpMenusTree = /* #__PURE__ */ (() => {
5906 const method = 'post'; 5788 const method = 'post';
5907 - const url = '/order/erp/order/field_unlock_apply';  
5908 - function request(  
5909 - option: PostOrderErpOrderFieldUnlockApplyOption,  
5910 - ): Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess> { 5789 + const url = '/order/erp/menus/tree';
  5790 + function request(): Promise<PostOrderErpMenusTreeResponseSuccess> {
5911 return requester(request.url, { 5791 return requester(request.url, {
5912 method: request.method, 5792 method: request.method,
5913 - ...option,  
5914 - }) as unknown as Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess>; 5793 + }) as unknown as Promise<PostOrderErpMenusTreeResponseSuccess>;
5915 } 5794 }
5916 5795
5917 /** http method */ 5796 /** http method */
@@ -5921,22 +5800,8 @@ export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() =&gt; { @@ -5921,22 +5800,8 @@ export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() =&gt; {
5921 return request; 5800 return request;
5922 })(); 5801 })();
5923 5802
5924 -/** @description request parameter type for postOrderErpOrderListByPage */  
5925 -export interface PostOrderErpOrderListByPageOption {  
5926 - /**  
5927 - * @description  
5928 - * orderBaseInfoQueryVO  
5929 - */  
5930 - body: {  
5931 - /**  
5932 - @description  
5933 - orderBaseInfoQueryVO */  
5934 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO;  
5935 - };  
5936 -}  
5937 -  
5938 -/** @description response type for postOrderErpOrderListByPage */  
5939 -export interface PostOrderErpOrderListByPageResponse { 5803 +/** @description response type for postOrderErpMessageGetUnreadNum */
  5804 +export interface PostOrderErpMessageGetUnreadNumResponse {
5940 /** 5805 /**
5941 * @description 5806 * @description
5942 * OK 5807 * OK
@@ -5964,25 +5829,22 @@ export interface PostOrderErpOrderListByPageResponse { @@ -5964,25 +5829,22 @@ export interface PostOrderErpOrderListByPageResponse {
5964 404: any; 5829 404: any;
5965 } 5830 }
5966 5831
5967 -export type PostOrderErpOrderListByPageResponseSuccess =  
5968 - PostOrderErpOrderListByPageResponse[200]; 5832 +export type PostOrderErpMessageGetUnreadNumResponseSuccess =
  5833 + PostOrderErpMessageGetUnreadNumResponse[200];
5969 /** 5834 /**
5970 * @description 5835 * @description
5971 - * 分页查询  
5972 - * @tags 订单管理 5836 + * getUnreadNum
  5837 + * @tags message-controller
5973 * @produces * 5838 * @produces *
5974 * @consumes application/json 5839 * @consumes application/json
5975 */ 5840 */
5976 -export const postOrderErpOrderListByPage = /* #__PURE__ */ (() => { 5841 +export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => {
5977 const method = 'post'; 5842 const method = 'post';
5978 - const url = '/order/erp/order/list_by_page';  
5979 - function request(  
5980 - option: PostOrderErpOrderListByPageOption,  
5981 - ): Promise<PostOrderErpOrderListByPageResponseSuccess> { 5843 + const url = '/order/erp/message/getUnreadNum';
  5844 + function request(): Promise<PostOrderErpMessageGetUnreadNumResponseSuccess> {
5982 return requester(request.url, { 5845 return requester(request.url, {
5983 method: request.method, 5846 method: request.method,
5984 - ...option,  
5985 - }) as unknown as Promise<PostOrderErpOrderListByPageResponseSuccess>; 5847 + }) as unknown as Promise<PostOrderErpMessageGetUnreadNumResponseSuccess>;
5986 } 5848 }
5987 5849
5988 /** http method */ 5850 /** http method */
@@ -5992,22 +5854,22 @@ export const postOrderErpOrderListByPage = /* #__PURE__ */ (() =&gt; { @@ -5992,22 +5854,22 @@ export const postOrderErpOrderListByPage = /* #__PURE__ */ (() =&gt; {
5992 return request; 5854 return request;
5993 })(); 5855 })();
5994 5856
5995 -/** @description request parameter type for postOrderErpOrderQueryById */  
5996 -export interface PostOrderErpOrderQueryByIdOption { 5857 +/** @description request parameter type for postOrderErpMessageQueryMyMessage */
  5858 +export interface PostOrderErpMessageQueryMyMessageOption {
5997 /** 5859 /**
5998 * @description 5860 * @description
5999 - * orderBaseInfoQueryVO 5861 + * messageQueryDTO
6000 */ 5862 */
6001 body: { 5863 body: {
6002 /** 5864 /**
6003 @description 5865 @description
6004 - orderBaseInfoQueryVO */  
6005 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO; 5866 + messageQueryDTO */
  5867 + messageQueryDTO: MessageQueryDTO;
6006 }; 5868 };
6007 } 5869 }
6008 5870
6009 -/** @description response type for postOrderErpOrderQueryById */  
6010 -export interface PostOrderErpOrderQueryByIdResponse { 5871 +/** @description response type for postOrderErpMessageQueryMyMessage */
  5872 +export interface PostOrderErpMessageQueryMyMessageResponse {
6011 /** 5873 /**
6012 * @description 5874 * @description
6013 * OK 5875 * OK
@@ -6035,25 +5897,25 @@ export interface PostOrderErpOrderQueryByIdResponse { @@ -6035,25 +5897,25 @@ export interface PostOrderErpOrderQueryByIdResponse {
6035 404: any; 5897 404: any;
6036 } 5898 }
6037 5899
6038 -export type PostOrderErpOrderQueryByIdResponseSuccess =  
6039 - PostOrderErpOrderQueryByIdResponse[200]; 5900 +export type PostOrderErpMessageQueryMyMessageResponseSuccess =
  5901 + PostOrderErpMessageQueryMyMessageResponse[200];
6040 /** 5902 /**
6041 * @description 5903 * @description
6042 - * queryById  
6043 - * @tags 订单管理 5904 + * queryMyMessage
  5905 + * @tags message-controller
6044 * @produces * 5906 * @produces *
6045 * @consumes application/json 5907 * @consumes application/json
6046 */ 5908 */
6047 -export const postOrderErpOrderQueryById = /* #__PURE__ */ (() => { 5909 +export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => {
6048 const method = 'post'; 5910 const method = 'post';
6049 - const url = '/order/erp/order/query_by_id'; 5911 + const url = '/order/erp/message/queryMyMessage';
6050 function request( 5912 function request(
6051 - option: PostOrderErpOrderQueryByIdOption,  
6052 - ): Promise<PostOrderErpOrderQueryByIdResponseSuccess> { 5913 + option: PostOrderErpMessageQueryMyMessageOption,
  5914 + ): Promise<PostOrderErpMessageQueryMyMessageResponseSuccess> {
6053 return requester(request.url, { 5915 return requester(request.url, {
6054 method: request.method, 5916 method: request.method,
6055 ...option, 5917 ...option,
6056 - }) as unknown as Promise<PostOrderErpOrderQueryByIdResponseSuccess>; 5918 + }) as unknown as Promise<PostOrderErpMessageQueryMyMessageResponseSuccess>;
6057 } 5919 }
6058 5920
6059 /** http method */ 5921 /** http method */
@@ -6063,22 +5925,22 @@ export const postOrderErpOrderQueryById = /* #__PURE__ */ (() =&gt; { @@ -6063,22 +5925,22 @@ export const postOrderErpOrderQueryById = /* #__PURE__ */ (() =&gt; {
6063 return request; 5925 return request;
6064 })(); 5926 })();
6065 5927
6066 -/** @description request parameter type for postOrderErpOrderStagesAdd */  
6067 -export interface PostOrderErpOrderStagesAddOption { 5928 +/** @description request parameter type for postOrderErpMessageRead */
  5929 +export interface PostOrderErpMessageReadOption {
6068 /** 5930 /**
6069 * @description 5931 * @description
6070 - * orderStagesFromDo 5932 + * ids
6071 */ 5933 */
6072 body: { 5934 body: {
6073 /** 5935 /**
6074 @description 5936 @description
6075 - orderStagesFromDo */  
6076 - orderStagesFromDo: OrderStagesFromDo; 5937 + ids */
  5938 + ids: Array<number>;
6077 }; 5939 };
6078 } 5940 }
6079 5941
6080 -/** @description response type for postOrderErpOrderStagesAdd */  
6081 -export interface PostOrderErpOrderStagesAddResponse { 5942 +/** @description response type for postOrderErpMessageRead */
  5943 +export interface PostOrderErpMessageReadResponse {
6082 /** 5944 /**
6083 * @description 5945 * @description
6084 * OK 5946 * OK
@@ -6106,25 +5968,25 @@ export interface PostOrderErpOrderStagesAddResponse { @@ -6106,25 +5968,25 @@ export interface PostOrderErpOrderStagesAddResponse {
6106 404: any; 5968 404: any;
6107 } 5969 }
6108 5970
6109 -export type PostOrderErpOrderStagesAddResponseSuccess =  
6110 - PostOrderErpOrderStagesAddResponse[200]; 5971 +export type PostOrderErpMessageReadResponseSuccess =
  5972 + PostOrderErpMessageReadResponse[200];
6111 /** 5973 /**
6112 * @description 5974 * @description
6113 - * 添加或者修改分期账单  
6114 - * @tags order-stages-controller 5975 + * read
  5976 + * @tags message-controller
6115 * @produces * 5977 * @produces *
6116 * @consumes application/json 5978 * @consumes application/json
6117 */ 5979 */
6118 -export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => { 5980 +export const postOrderErpMessageRead = /* #__PURE__ */ (() => {
6119 const method = 'post'; 5981 const method = 'post';
6120 - const url = '/order/erp/orderStages/add'; 5982 + const url = '/order/erp/message/read';
6121 function request( 5983 function request(
6122 - option: PostOrderErpOrderStagesAddOption,  
6123 - ): Promise<PostOrderErpOrderStagesAddResponseSuccess> { 5984 + option: PostOrderErpMessageReadOption,
  5985 + ): Promise<PostOrderErpMessageReadResponseSuccess> {
6124 return requester(request.url, { 5986 return requester(request.url, {
6125 method: request.method, 5987 method: request.method,
6126 ...option, 5988 ...option,
6127 - }) as unknown as Promise<PostOrderErpOrderStagesAddResponseSuccess>; 5989 + }) as unknown as Promise<PostOrderErpMessageReadResponseSuccess>;
6128 } 5990 }
6129 5991
6130 /** http method */ 5992 /** http method */
@@ -6134,22 +5996,8 @@ export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() =&gt; { @@ -6134,22 +5996,8 @@ export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() =&gt; {
6134 return request; 5996 return request;
6135 })(); 5997 })();
6136 5998
6137 -/** @description request parameter type for deleteOrderErpOrderStagesDelect */  
6138 -export interface DeleteOrderErpOrderStagesDelectOption {  
6139 - /**  
6140 - * @description  
6141 - * orderStagesDelDo  
6142 - */  
6143 - body: {  
6144 - /**  
6145 - @description  
6146 - orderStagesDelDo */  
6147 - orderStagesDelDo: OrderStagesDelDo;  
6148 - };  
6149 -}  
6150 -  
6151 -/** @description response type for deleteOrderErpOrderStagesDelect */  
6152 -export interface DeleteOrderErpOrderStagesDelectResponse { 5999 +/** @description response type for postOrderErpMessageReadAll */
  6000 +export interface PostOrderErpMessageReadAllResponse {
6153 /** 6001 /**
6154 * @description 6002 * @description
6155 * OK 6003 * OK
@@ -6157,9 +6005,9 @@ export interface DeleteOrderErpOrderStagesDelectResponse { @@ -6157,9 +6005,9 @@ export interface DeleteOrderErpOrderStagesDelectResponse {
6157 200: ServerResult; 6005 200: ServerResult;
6158 /** 6006 /**
6159 * @description 6007 * @description
6160 - * No Content 6008 + * Created
6161 */ 6009 */
6162 - 204: any; 6010 + 201: any;
6163 /** 6011 /**
6164 * @description 6012 * @description
6165 * Unauthorized 6013 * Unauthorized
@@ -6170,26 +6018,29 @@ export interface DeleteOrderErpOrderStagesDelectResponse { @@ -6170,26 +6018,29 @@ export interface DeleteOrderErpOrderStagesDelectResponse {
6170 * Forbidden 6018 * Forbidden
6171 */ 6019 */
6172 403: any; 6020 403: any;
  6021 + /**
  6022 + * @description
  6023 + * Not Found
  6024 + */
  6025 + 404: any;
6173 } 6026 }
6174 6027
6175 -export type DeleteOrderErpOrderStagesDelectResponseSuccess =  
6176 - DeleteOrderErpOrderStagesDelectResponse[200]; 6028 +export type PostOrderErpMessageReadAllResponseSuccess =
  6029 + PostOrderErpMessageReadAllResponse[200];
6177 /** 6030 /**
6178 * @description 6031 * @description
6179 - * 删除分期账单  
6180 - * @tags order-stages-controller 6032 + * readAll
  6033 + * @tags message-controller
6181 * @produces * 6034 * @produces *
  6035 + * @consumes application/json
6182 */ 6036 */
6183 -export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() => {  
6184 - const method = 'delete';  
6185 - const url = '/order/erp/orderStages/delect';  
6186 - function request(  
6187 - option: DeleteOrderErpOrderStagesDelectOption,  
6188 - ): Promise<DeleteOrderErpOrderStagesDelectResponseSuccess> { 6037 +export const postOrderErpMessageReadAll = /* #__PURE__ */ (() => {
  6038 + const method = 'post';
  6039 + const url = '/order/erp/message/readAll';
  6040 + function request(): Promise<PostOrderErpMessageReadAllResponseSuccess> {
6189 return requester(request.url, { 6041 return requester(request.url, {
6190 method: request.method, 6042 method: request.method,
6191 - ...option,  
6192 - }) as unknown as Promise<DeleteOrderErpOrderStagesDelectResponseSuccess>; 6043 + }) as unknown as Promise<PostOrderErpMessageReadAllResponseSuccess>;
6193 } 6044 }
6194 6045
6195 /** http method */ 6046 /** http method */
@@ -6199,13 +6050,32 @@ export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() =&gt; { @@ -6199,13 +6050,32 @@ export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() =&gt; {
6199 return request; 6050 return request;
6200 })(); 6051 })();
6201 6052
6202 -/** @description response type for getOrderErpOrderStagesExport */  
6203 -export interface GetOrderErpOrderStagesExportResponse { 6053 +/** @description request parameter type for postOrderErpOptLogListByPage */
  6054 +export interface PostOrderErpOptLogListByPageOption {
  6055 + /**
  6056 + * @description
  6057 + * queryVO
  6058 + */
  6059 + body: {
  6060 + /**
  6061 + @description
  6062 + queryVO */
  6063 + queryVO: OrderOptLogQueryVO;
  6064 + };
  6065 +}
  6066 +
  6067 +/** @description response type for postOrderErpOptLogListByPage */
  6068 +export interface PostOrderErpOptLogListByPageResponse {
6204 /** 6069 /**
6205 * @description 6070 * @description
6206 * OK 6071 * OK
6207 */ 6072 */
6208 - 200: any; 6073 + 200: ServerResult;
  6074 + /**
  6075 + * @description
  6076 + * Created
  6077 + */
  6078 + 201: any;
6209 /** 6079 /**
6210 * @description 6080 * @description
6211 * Unauthorized 6081 * Unauthorized
@@ -6223,21 +6093,25 @@ export interface GetOrderErpOrderStagesExportResponse { @@ -6223,21 +6093,25 @@ export interface GetOrderErpOrderStagesExportResponse {
6223 404: any; 6093 404: any;
6224 } 6094 }
6225 6095
6226 -export type GetOrderErpOrderStagesExportResponseSuccess =  
6227 - GetOrderErpOrderStagesExportResponse[200]; 6096 +export type PostOrderErpOptLogListByPageResponseSuccess =
  6097 + PostOrderErpOptLogListByPageResponse[200];
6228 /** 6098 /**
6229 * @description 6099 * @description
6230 - * 导出分期账单  
6231 - * @tags order-stages-controller 6100 + * 分页查询
  6101 + * @tags 订单操作日志
6232 * @produces * 6102 * @produces *
  6103 + * @consumes application/json
6233 */ 6104 */
6234 -export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() => {  
6235 - const method = 'get';  
6236 - const url = '/order/erp/orderStages/export';  
6237 - function request(): Promise<GetOrderErpOrderStagesExportResponseSuccess> { 6105 +export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => {
  6106 + const method = 'post';
  6107 + const url = '/order/erp/opt/log/list_by_page';
  6108 + function request(
  6109 + option: PostOrderErpOptLogListByPageOption,
  6110 + ): Promise<PostOrderErpOptLogListByPageResponseSuccess> {
6238 return requester(request.url, { 6111 return requester(request.url, {
6239 method: request.method, 6112 method: request.method,
6240 - }) as unknown as Promise<GetOrderErpOrderStagesExportResponseSuccess>; 6113 + ...option,
  6114 + }) as unknown as Promise<PostOrderErpOptLogListByPageResponseSuccess>;
6241 } 6115 }
6242 6116
6243 /** http method */ 6117 /** http method */
@@ -6247,22 +6121,22 @@ export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() =&gt; { @@ -6247,22 +6121,22 @@ export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() =&gt; {
6247 return request; 6121 return request;
6248 })(); 6122 })();
6249 6123
6250 -/** @description request parameter type for postOrderErpOrderStagesImport */  
6251 -export interface PostOrderErpOrderStagesImportOption { 6124 +/** @description request parameter type for postOrderErpOrderAdd */
  6125 +export interface PostOrderErpOrderAddOption {
6252 /** 6126 /**
6253 * @description 6127 * @description
6254 - * file 6128 + * orderAddVO
6255 */ 6129 */
6256 - formData: { 6130 + body: {
6257 /** 6131 /**
6258 @description 6132 @description
6259 - file */  
6260 - file: File; 6133 + orderAddVO */
  6134 + orderAddVO: OrderAddVO;
6261 }; 6135 };
6262 } 6136 }
6263 6137
6264 -/** @description response type for postOrderErpOrderStagesImport */  
6265 -export interface PostOrderErpOrderStagesImportResponse { 6138 +/** @description response type for postOrderErpOrderAdd */
  6139 +export interface PostOrderErpOrderAddResponse {
6266 /** 6140 /**
6267 * @description 6141 * @description
6268 * OK 6142 * OK
@@ -6290,25 +6164,25 @@ export interface PostOrderErpOrderStagesImportResponse { @@ -6290,25 +6164,25 @@ export interface PostOrderErpOrderStagesImportResponse {
6290 404: any; 6164 404: any;
6291 } 6165 }
6292 6166
6293 -export type PostOrderErpOrderStagesImportResponseSuccess =  
6294 - PostOrderErpOrderStagesImportResponse[200]; 6167 +export type PostOrderErpOrderAddResponseSuccess =
  6168 + PostOrderErpOrderAddResponse[200];
6295 /** 6169 /**
6296 * @description 6170 * @description
6297 - * 导入分期账单  
6298 - * @tags order-stages-controller 6171 + * 新增数据
  6172 + * @tags 订单管理
6299 * @produces * 6173 * @produces *
6300 - * @consumes multipart/form-data 6174 + * @consumes application/json
6301 */ 6175 */
6302 -export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() => { 6176 +export const postOrderErpOrderAdd = /* #__PURE__ */ (() => {
6303 const method = 'post'; 6177 const method = 'post';
6304 - const url = '/order/erp/orderStages/import'; 6178 + const url = '/order/erp/order/add';
6305 function request( 6179 function request(
6306 - option: PostOrderErpOrderStagesImportOption,  
6307 - ): Promise<PostOrderErpOrderStagesImportResponseSuccess> { 6180 + option: PostOrderErpOrderAddOption,
  6181 + ): Promise<PostOrderErpOrderAddResponseSuccess> {
6308 return requester(request.url, { 6182 return requester(request.url, {
6309 method: request.method, 6183 method: request.method,
6310 ...option, 6184 ...option,
6311 - }) as unknown as Promise<PostOrderErpOrderStagesImportResponseSuccess>; 6185 + }) as unknown as Promise<PostOrderErpOrderAddResponseSuccess>;
6312 } 6186 }
6313 6187
6314 /** http method */ 6188 /** http method */
@@ -6318,8 +6192,22 @@ export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() =&gt; { @@ -6318,8 +6192,22 @@ export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() =&gt; {
6318 return request; 6192 return request;
6319 })(); 6193 })();
6320 6194
6321 -/** @description response type for getOrderErpOrderStagesListAll */  
6322 -export interface GetOrderErpOrderStagesListAllResponse { 6195 +/** @description request parameter type for postOrderErpOrderDeleteById */
  6196 +export interface PostOrderErpOrderDeleteByIdOption {
  6197 + /**
  6198 + * @description
  6199 + * orderBaseInfoQueryVO
  6200 + */
  6201 + body: {
  6202 + /**
  6203 + @description
  6204 + orderBaseInfoQueryVO */
  6205 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
  6206 + };
  6207 +}
  6208 +
  6209 +/** @description response type for postOrderErpOrderDeleteById */
  6210 +export interface PostOrderErpOrderDeleteByIdResponse {
6323 /** 6211 /**
6324 * @description 6212 * @description
6325 * OK 6213 * OK
@@ -6327,6 +6215,11 @@ export interface GetOrderErpOrderStagesListAllResponse { @@ -6327,6 +6215,11 @@ export interface GetOrderErpOrderStagesListAllResponse {
6327 200: ServerResult; 6215 200: ServerResult;
6328 /** 6216 /**
6329 * @description 6217 * @description
  6218 + * Created
  6219 + */
  6220 + 201: any;
  6221 + /**
  6222 + * @description
6330 * Unauthorized 6223 * Unauthorized
6331 */ 6224 */
6332 401: any; 6225 401: any;
@@ -6342,21 +6235,25 @@ export interface GetOrderErpOrderStagesListAllResponse { @@ -6342,21 +6235,25 @@ export interface GetOrderErpOrderStagesListAllResponse {
6342 404: any; 6235 404: any;
6343 } 6236 }
6344 6237
6345 -export type GetOrderErpOrderStagesListAllResponseSuccess =  
6346 - GetOrderErpOrderStagesListAllResponse[200]; 6238 +export type PostOrderErpOrderDeleteByIdResponseSuccess =
  6239 + PostOrderErpOrderDeleteByIdResponse[200];
6347 /** 6240 /**
6348 * @description 6241 * @description
6349 - * 查询所有分期账单  
6350 - * @tags order-stages-controller 6242 + * 删除数据
  6243 + * @tags 订单管理
6351 * @produces * 6244 * @produces *
  6245 + * @consumes application/json
6352 */ 6246 */
6353 -export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() => {  
6354 - const method = 'get';  
6355 - const url = '/order/erp/orderStages/listAll';  
6356 - function request(): Promise<GetOrderErpOrderStagesListAllResponseSuccess> { 6247 +export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => {
  6248 + const method = 'post';
  6249 + const url = '/order/erp/order/delete_by_id';
  6250 + function request(
  6251 + option: PostOrderErpOrderDeleteByIdOption,
  6252 + ): Promise<PostOrderErpOrderDeleteByIdResponseSuccess> {
6357 return requester(request.url, { 6253 return requester(request.url, {
6358 method: request.method, 6254 method: request.method,
6359 - }) as unknown as Promise<GetOrderErpOrderStagesListAllResponseSuccess>; 6255 + ...option,
  6256 + }) as unknown as Promise<PostOrderErpOrderDeleteByIdResponseSuccess>;
6360 } 6257 }
6361 6258
6362 /** http method */ 6259 /** http method */
@@ -6366,22 +6263,22 @@ export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() =&gt; { @@ -6366,22 +6263,22 @@ export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() =&gt; {
6366 return request; 6263 return request;
6367 })(); 6264 })();
6368 6265
6369 -/** @description request parameter type for postOrderErpOrderStagesSaveOrUpdate */  
6370 -export interface PostOrderErpOrderStagesSaveOrUpdateOption { 6266 +/** @description request parameter type for postOrderErpOrderEdit */
  6267 +export interface PostOrderErpOrderEditOption {
6371 /** 6268 /**
6372 * @description 6269 * @description
6373 - * orderStagesFromDo 6270 + * updateVO
6374 */ 6271 */
6375 body: { 6272 body: {
6376 /** 6273 /**
6377 @description 6274 @description
6378 - orderStagesFromDo */  
6379 - orderStagesFromDo: OrderStagesFromDo; 6275 + updateVO */
  6276 + updateVO: OrderUpdateVO;
6380 }; 6277 };
6381 } 6278 }
6382 6279
6383 -/** @description response type for postOrderErpOrderStagesSaveOrUpdate */  
6384 -export interface PostOrderErpOrderStagesSaveOrUpdateResponse { 6280 +/** @description response type for postOrderErpOrderEdit */
  6281 +export interface PostOrderErpOrderEditResponse {
6385 /** 6282 /**
6386 * @description 6283 * @description
6387 * OK 6284 * OK
@@ -6409,25 +6306,25 @@ export interface PostOrderErpOrderStagesSaveOrUpdateResponse { @@ -6409,25 +6306,25 @@ export interface PostOrderErpOrderStagesSaveOrUpdateResponse {
6409 404: any; 6306 404: any;
6410 } 6307 }
6411 6308
6412 -export type PostOrderErpOrderStagesSaveOrUpdateResponseSuccess =  
6413 - PostOrderErpOrderStagesSaveOrUpdateResponse[200]; 6309 +export type PostOrderErpOrderEditResponseSuccess =
  6310 + PostOrderErpOrderEditResponse[200];
6414 /** 6311 /**
6415 * @description 6312 * @description
6416 - * 添加或者修改分期账单  
6417 - * @tags order-stages-controller 6313 + * 编辑数据
  6314 + * @tags 订单管理
6418 * @produces * 6315 * @produces *
6419 * @consumes application/json 6316 * @consumes application/json
6420 */ 6317 */
6421 -export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => { 6318 +export const postOrderErpOrderEdit = /* #__PURE__ */ (() => {
6422 const method = 'post'; 6319 const method = 'post';
6423 - const url = '/order/erp/orderStages/saveOrUpdate'; 6320 + const url = '/order/erp/order/edit';
6424 function request( 6321 function request(
6425 - option: PostOrderErpOrderStagesSaveOrUpdateOption,  
6426 - ): Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess> { 6322 + option: PostOrderErpOrderEditOption,
  6323 + ): Promise<PostOrderErpOrderEditResponseSuccess> {
6427 return requester(request.url, { 6324 return requester(request.url, {
6428 method: request.method, 6325 method: request.method,
6429 ...option, 6326 ...option,
6430 - }) as unknown as Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess>; 6327 + }) as unknown as Promise<PostOrderErpOrderEditResponseSuccess>;
6431 } 6328 }
6432 6329
6433 /** http method */ 6330 /** http method */
@@ -6437,22 +6334,22 @@ export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() =&gt; { @@ -6437,22 +6334,22 @@ export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() =&gt; {
6437 return request; 6334 return request;
6438 })(); 6335 })();
6439 6336
6440 -/** @description request parameter type for postOrderErpOrderStagesSearch */  
6441 -export interface PostOrderErpOrderStagesSearchOption { 6337 +/** @description request parameter type for postOrderErpOrderExport */
  6338 +export interface PostOrderErpOrderExportOption {
6442 /** 6339 /**
6443 * @description 6340 * @description
6444 - * orderStagesSelDo 6341 + * orderBaseInfoQueryVO
6445 */ 6342 */
6446 body: { 6343 body: {
6447 /** 6344 /**
6448 @description 6345 @description
6449 - orderStagesSelDo */  
6450 - orderStagesSelDo: OrderStagesSelDo; 6346 + orderBaseInfoQueryVO */
  6347 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
6451 }; 6348 };
6452 } 6349 }
6453 6350
6454 -/** @description response type for postOrderErpOrderStagesSearch */  
6455 -export interface PostOrderErpOrderStagesSearchResponse { 6351 +/** @description response type for postOrderErpOrderExport */
  6352 +export interface PostOrderErpOrderExportResponse {
6456 /** 6353 /**
6457 * @description 6354 * @description
6458 * OK 6355 * OK
@@ -6480,25 +6377,25 @@ export interface PostOrderErpOrderStagesSearchResponse { @@ -6480,25 +6377,25 @@ export interface PostOrderErpOrderStagesSearchResponse {
6480 404: any; 6377 404: any;
6481 } 6378 }
6482 6379
6483 -export type PostOrderErpOrderStagesSearchResponseSuccess =  
6484 - PostOrderErpOrderStagesSearchResponse[200]; 6380 +export type PostOrderErpOrderExportResponseSuccess =
  6381 + PostOrderErpOrderExportResponse[200];
6485 /** 6382 /**
6486 * @description 6383 * @description
6487 - * 条件搜索分期账单  
6488 - * @tags order-stages-controller 6384 + * 导出订单
  6385 + * @tags 订单管理
6489 * @produces * 6386 * @produces *
6490 * @consumes application/json 6387 * @consumes application/json
6491 */ 6388 */
6492 -export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => { 6389 +export const postOrderErpOrderExport = /* #__PURE__ */ (() => {
6493 const method = 'post'; 6390 const method = 'post';
6494 - const url = '/order/erp/orderStages/search'; 6391 + const url = '/order/erp/order/export';
6495 function request( 6392 function request(
6496 - option: PostOrderErpOrderStagesSearchOption,  
6497 - ): Promise<PostOrderErpOrderStagesSearchResponseSuccess> { 6393 + option: PostOrderErpOrderExportOption,
  6394 + ): Promise<PostOrderErpOrderExportResponseSuccess> {
6498 return requester(request.url, { 6395 return requester(request.url, {
6499 method: request.method, 6396 method: request.method,
6500 ...option, 6397 ...option,
6501 - }) as unknown as Promise<PostOrderErpOrderStagesSearchResponseSuccess>; 6398 + }) as unknown as Promise<PostOrderErpOrderExportResponseSuccess>;
6502 } 6399 }
6503 6400
6504 /** http method */ 6401 /** http method */
@@ -6508,22 +6405,22 @@ export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() =&gt; { @@ -6508,22 +6405,22 @@ export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() =&gt; {
6508 return request; 6405 return request;
6509 })(); 6406 })();
6510 6407
6511 -/** @description request parameter type for postOrderErpOrderStagesUpload */  
6512 -export interface PostOrderErpOrderStagesUploadOption { 6408 +/** @description request parameter type for postOrderErpOrderFieldUnlockApply */
  6409 +export interface PostOrderErpOrderFieldUnlockApplyOption {
6513 /** 6410 /**
6514 * @description 6411 * @description
6515 - * file 6412 + * fieldVO
6516 */ 6413 */
6517 - formData: { 6414 + body: {
6518 /** 6415 /**
6519 @description 6416 @description
6520 - file */  
6521 - file: File; 6417 + fieldVO */
  6418 + fieldVO: OrderUnlockFieldApplyVO;
6522 }; 6419 };
6523 } 6420 }
6524 6421
6525 -/** @description response type for postOrderErpOrderStagesUpload */  
6526 -export interface PostOrderErpOrderStagesUploadResponse { 6422 +/** @description response type for postOrderErpOrderFieldUnlockApply */
  6423 +export interface PostOrderErpOrderFieldUnlockApplyResponse {
6527 /** 6424 /**
6528 * @description 6425 * @description
6529 * OK 6426 * OK
@@ -6551,25 +6448,25 @@ export interface PostOrderErpOrderStagesUploadResponse { @@ -6551,25 +6448,25 @@ export interface PostOrderErpOrderStagesUploadResponse {
6551 404: any; 6448 404: any;
6552 } 6449 }
6553 6450
6554 -export type PostOrderErpOrderStagesUploadResponseSuccess =  
6555 - PostOrderErpOrderStagesUploadResponse[200]; 6451 +export type PostOrderErpOrderFieldUnlockApplyResponseSuccess =
  6452 + PostOrderErpOrderFieldUnlockApplyResponse[200];
6556 /** 6453 /**
6557 * @description 6454 * @description
6558 - * 合同文件上传  
6559 - * @tags order-stages-controller 6455 + * 字段解锁申请
  6456 + * @tags 订单管理
6560 * @produces * 6457 * @produces *
6561 - * @consumes multipart/form-data 6458 + * @consumes application/json
6562 */ 6459 */
6563 -export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => { 6460 +export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => {
6564 const method = 'post'; 6461 const method = 'post';
6565 - const url = '/order/erp/orderStages/upload'; 6462 + const url = '/order/erp/order/field_unlock_apply';
6566 function request( 6463 function request(
6567 - option: PostOrderErpOrderStagesUploadOption,  
6568 - ): Promise<PostOrderErpOrderStagesUploadResponseSuccess> { 6464 + option: PostOrderErpOrderFieldUnlockApplyOption,
  6465 + ): Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess> {
6569 return requester(request.url, { 6466 return requester(request.url, {
6570 method: request.method, 6467 method: request.method,
6571 ...option, 6468 ...option,
6572 - }) as unknown as Promise<PostOrderErpOrderStagesUploadResponseSuccess>; 6469 + }) as unknown as Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess>;
6573 } 6470 }
6574 6471
6575 /** http method */ 6472 /** http method */
@@ -6579,22 +6476,22 @@ export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() =&gt; { @@ -6579,22 +6476,22 @@ export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() =&gt; {
6579 return request; 6476 return request;
6580 })(); 6477 })();
6581 6478
6582 -/** @description request parameter type for postOrderErpOrderStagesPayWaySaveOrUpdate */  
6583 -export interface PostOrderErpOrderStagesPayWaySaveOrUpdateOption { 6479 +/** @description request parameter type for postOrderErpOrderListByPage */
  6480 +export interface PostOrderErpOrderListByPageOption {
6584 /** 6481 /**
6585 * @description 6482 * @description
6586 - * orderStagesPayWayList 6483 + * orderBaseInfoQueryVO
6587 */ 6484 */
6588 body: { 6485 body: {
6589 /** 6486 /**
6590 @description 6487 @description
6591 - orderStagesPayWayList */  
6592 - orderStagesPayWayList: Array<OrderStagesPayWay>; 6488 + orderBaseInfoQueryVO */
  6489 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
6593 }; 6490 };
6594 } 6491 }
6595 6492
6596 -/** @description response type for postOrderErpOrderStagesPayWaySaveOrUpdate */  
6597 -export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse { 6493 +/** @description response type for postOrderErpOrderListByPage */
  6494 +export interface PostOrderErpOrderListByPageResponse {
6598 /** 6495 /**
6599 * @description 6496 * @description
6600 * OK 6497 * OK
@@ -6622,51 +6519,50 @@ export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse { @@ -6622,51 +6519,50 @@ export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse {
6622 404: any; 6519 404: any;
6623 } 6520 }
6624 6521
6625 -export type PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess =  
6626 - PostOrderErpOrderStagesPayWaySaveOrUpdateResponse[200]; 6522 +export type PostOrderErpOrderListByPageResponseSuccess =
  6523 + PostOrderErpOrderListByPageResponse[200];
6627 /** 6524 /**
6628 * @description 6525 * @description
6629 - * 修改或者保存  
6630 - * @tags order-stages-pay-way-controller 6526 + * 分页查询
  6527 + * @tags 订单管理
6631 * @produces * 6528 * @produces *
6632 * @consumes application/json 6529 * @consumes application/json
6633 */ 6530 */
6634 -export const postOrderErpOrderStagesPayWaySaveOrUpdate =  
6635 - /* #__PURE__ */ (() => {  
6636 - const method = 'post';  
6637 - const url = '/order/erp/orderStagesPayWay/saveOrUpdate';  
6638 - function request(  
6639 - option: PostOrderErpOrderStagesPayWaySaveOrUpdateOption,  
6640 - ): Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess> {  
6641 - return requester(request.url, {  
6642 - method: request.method,  
6643 - ...option,  
6644 - }) as unknown as Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess>;  
6645 - } 6531 +export const postOrderErpOrderListByPage = /* #__PURE__ */ (() => {
  6532 + const method = 'post';
  6533 + const url = '/order/erp/order/list_by_page';
  6534 + function request(
  6535 + option: PostOrderErpOrderListByPageOption,
  6536 + ): Promise<PostOrderErpOrderListByPageResponseSuccess> {
  6537 + return requester(request.url, {
  6538 + method: request.method,
  6539 + ...option,
  6540 + }) as unknown as Promise<PostOrderErpOrderListByPageResponseSuccess>;
  6541 + }
6646 6542
6647 - /** http method */  
6648 - request.method = method;  
6649 - /** request url */  
6650 - request.url = url;  
6651 - return request;  
6652 - })(); 6543 + /** http method */
  6544 + request.method = method;
  6545 + /** request url */
  6546 + request.url = url;
  6547 + return request;
  6548 +})();
6653 6549
6654 -/** @description request parameter type for postOrderErpOrderStagesPayWaySelect */  
6655 -export interface PostOrderErpOrderStagesPayWaySelectOption { 6550 +/** @description request parameter type for postOrderErpOrderQueryById */
  6551 +export interface PostOrderErpOrderQueryByIdOption {
6656 /** 6552 /**
6657 * @description 6553 * @description
6658 - * orderStagesPayWayDo 6554 + * orderBaseInfoQueryVO
6659 */ 6555 */
6660 body: { 6556 body: {
6661 /** 6557 /**
6662 @description 6558 @description
6663 - orderStagesPayWayDo */  
6664 - orderStagesPayWayDo: OrderStagesPayWayDo; 6559 + orderBaseInfoQueryVO */
  6560 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
6665 }; 6561 };
6666 } 6562 }
6667 6563
6668 -/** @description response type for postOrderErpOrderStagesPayWaySelect */  
6669 -export interface PostOrderErpOrderStagesPayWaySelectResponse { 6564 +/** @description response type for postOrderErpOrderQueryById */
  6565 +export interface PostOrderErpOrderQueryByIdResponse {
6670 /** 6566 /**
6671 * @description 6567 * @description
6672 * OK 6568 * OK
@@ -6694,25 +6590,25 @@ export interface PostOrderErpOrderStagesPayWaySelectResponse { @@ -6694,25 +6590,25 @@ export interface PostOrderErpOrderStagesPayWaySelectResponse {
6694 404: any; 6590 404: any;
6695 } 6591 }
6696 6592
6697 -export type PostOrderErpOrderStagesPayWaySelectResponseSuccess =  
6698 - PostOrderErpOrderStagesPayWaySelectResponse[200]; 6593 +export type PostOrderErpOrderQueryByIdResponseSuccess =
  6594 + PostOrderErpOrderQueryByIdResponse[200];
6699 /** 6595 /**
6700 * @description 6596 * @description
6701 - * 查询该的分期比例  
6702 - * @tags order-stages-pay-way-controller 6597 + * queryById
  6598 + * @tags 订单管理
6703 * @produces * 6599 * @produces *
6704 * @consumes application/json 6600 * @consumes application/json
6705 */ 6601 */
6706 -export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => { 6602 +export const postOrderErpOrderQueryById = /* #__PURE__ */ (() => {
6707 const method = 'post'; 6603 const method = 'post';
6708 - const url = '/order/erp/orderStagesPayWay/select'; 6604 + const url = '/order/erp/order/query_by_id';
6709 function request( 6605 function request(
6710 - option: PostOrderErpOrderStagesPayWaySelectOption,  
6711 - ): Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess> { 6606 + option: PostOrderErpOrderQueryByIdOption,
  6607 + ): Promise<PostOrderErpOrderQueryByIdResponseSuccess> {
6712 return requester(request.url, { 6608 return requester(request.url, {
6713 method: request.method, 6609 method: request.method,
6714 ...option, 6610 ...option,
6715 - }) as unknown as Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess>; 6611 + }) as unknown as Promise<PostOrderErpOrderQueryByIdResponseSuccess>;
6716 } 6612 }
6717 6613
6718 /** http method */ 6614 /** http method */
@@ -6722,22 +6618,22 @@ export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() =&gt; { @@ -6722,22 +6618,22 @@ export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() =&gt; {
6722 return request; 6618 return request;
6723 })(); 6619 })();
6724 6620
6725 -/** @description request parameter type for postOrderErpOrderStagesPayWayUploadForPayWay */  
6726 -export interface PostOrderErpOrderStagesPayWayUploadForPayWayOption { 6621 +/** @description request parameter type for postOrderErpOrderStagesAdd */
  6622 +export interface PostOrderErpOrderStagesAddOption {
6727 /** 6623 /**
6728 * @description 6624 * @description
6729 - * orderStagesPayWayFileDo 6625 + * orderStagesFromDo
6730 */ 6626 */
6731 body: { 6627 body: {
6732 /** 6628 /**
6733 @description 6629 @description
6734 - orderStagesPayWayFileDo */  
6735 - orderStagesPayWayFileDo: OrderStagesPayWayFileDo; 6630 + orderStagesFromDo */
  6631 + orderStagesFromDo: OrderStagesFromDo;
6736 }; 6632 };
6737 } 6633 }
6738 6634
6739 -/** @description response type for postOrderErpOrderStagesPayWayUploadForPayWay */  
6740 -export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse { 6635 +/** @description response type for postOrderErpOrderStagesAdd */
  6636 +export interface PostOrderErpOrderStagesAddResponse {
6741 /** 6637 /**
6742 * @description 6638 * @description
6743 * OK 6639 * OK
@@ -6765,51 +6661,50 @@ export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse { @@ -6765,51 +6661,50 @@ export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse {
6765 404: any; 6661 404: any;
6766 } 6662 }
6767 6663
6768 -export type PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess =  
6769 - PostOrderErpOrderStagesPayWayUploadForPayWayResponse[200]; 6664 +export type PostOrderErpOrderStagesAddResponseSuccess =
  6665 + PostOrderErpOrderStagesAddResponse[200];
6770 /** 6666 /**
6771 * @description 6667 * @description
6772 - * 付款合同文件上传  
6773 - * @tags order-stages-pay-way-controller 6668 + * 添加或者修改分期账单
  6669 + * @tags order-stages-controller
6774 * @produces * 6670 * @produces *
6775 * @consumes application/json 6671 * @consumes application/json
6776 */ 6672 */
6777 -export const postOrderErpOrderStagesPayWayUploadForPayWay =  
6778 - /* #__PURE__ */ (() => {  
6779 - const method = 'post';  
6780 - const url = '/order/erp/orderStagesPayWay/uploadForPayWay';  
6781 - function request(  
6782 - option: PostOrderErpOrderStagesPayWayUploadForPayWayOption,  
6783 - ): Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess> {  
6784 - return requester(request.url, {  
6785 - method: request.method,  
6786 - ...option,  
6787 - }) as unknown as Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess>;  
6788 - } 6673 +export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => {
  6674 + const method = 'post';
  6675 + const url = '/order/erp/orderStages/add';
  6676 + function request(
  6677 + option: PostOrderErpOrderStagesAddOption,
  6678 + ): Promise<PostOrderErpOrderStagesAddResponseSuccess> {
  6679 + return requester(request.url, {
  6680 + method: request.method,
  6681 + ...option,
  6682 + }) as unknown as Promise<PostOrderErpOrderStagesAddResponseSuccess>;
  6683 + }
6789 6684
6790 - /** http method */  
6791 - request.method = method;  
6792 - /** request url */  
6793 - request.url = url;  
6794 - return request;  
6795 - })(); 6685 + /** http method */
  6686 + request.method = method;
  6687 + /** request url */
  6688 + request.url = url;
  6689 + return request;
  6690 +})();
6796 6691
6797 -/** @description request parameter type for deleteOrderErpOrderZoNingDelete */  
6798 -export interface DeleteOrderErpOrderZoNingDeleteOption { 6692 +/** @description request parameter type for deleteOrderErpOrderStagesDelect */
  6693 +export interface DeleteOrderErpOrderStagesDelectOption {
6799 /** 6694 /**
6800 * @description 6695 * @description
6801 - * id 6696 + * orderStagesDelDo
6802 */ 6697 */
6803 body: { 6698 body: {
6804 /** 6699 /**
6805 @description 6700 @description
6806 - id */  
6807 - id: number; 6701 + orderStagesDelDo */
  6702 + orderStagesDelDo: OrderStagesDelDo;
6808 }; 6703 };
6809 } 6704 }
6810 6705
6811 -/** @description response type for deleteOrderErpOrderZoNingDelete */  
6812 -export interface DeleteOrderErpOrderZoNingDeleteResponse { 6706 +/** @description response type for deleteOrderErpOrderStagesDelect */
  6707 +export interface DeleteOrderErpOrderStagesDelectResponse {
6813 /** 6708 /**
6814 * @description 6709 * @description
6815 * OK 6710 * OK
@@ -6832,24 +6727,24 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse { @@ -6832,24 +6727,24 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse {
6832 403: any; 6727 403: any;
6833 } 6728 }
6834 6729
6835 -export type DeleteOrderErpOrderZoNingDeleteResponseSuccess =  
6836 - DeleteOrderErpOrderZoNingDeleteResponse[200]; 6730 +export type DeleteOrderErpOrderStagesDelectResponseSuccess =
  6731 + DeleteOrderErpOrderStagesDelectResponse[200];
6837 /** 6732 /**
6838 * @description 6733 * @description
6839 - * toDetele  
6840 - * @tags order-zo-ning-controller 6734 + * 删除分期账单
  6735 + * @tags order-stages-controller
6841 * @produces * 6736 * @produces *
6842 */ 6737 */
6843 -export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => { 6738 +export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() => {
6844 const method = 'delete'; 6739 const method = 'delete';
6845 - const url = '/order/erp/orderZoNing/delete'; 6740 + const url = '/order/erp/orderStages/delect';
6846 function request( 6741 function request(
6847 - option: DeleteOrderErpOrderZoNingDeleteOption,  
6848 - ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> { 6742 + option: DeleteOrderErpOrderStagesDelectOption,
  6743 + ): Promise<DeleteOrderErpOrderStagesDelectResponseSuccess> {
6849 return requester(request.url, { 6744 return requester(request.url, {
6850 method: request.method, 6745 method: request.method,
6851 ...option, 6746 ...option,
6852 - }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>; 6747 + }) as unknown as Promise<DeleteOrderErpOrderStagesDelectResponseSuccess>;
6853 } 6748 }
6854 6749
6855 /** http method */ 6750 /** http method */
@@ -6859,32 +6754,13 @@ export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() =&gt; { @@ -6859,32 +6754,13 @@ export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() =&gt; {
6859 return request; 6754 return request;
6860 })(); 6755 })();
6861 6756
6862 -/** @description request parameter type for postOrderErpOrderZoNingSaveOrUpdate */  
6863 -export interface PostOrderErpOrderZoNingSaveOrUpdateOption {  
6864 - /**  
6865 - * @description  
6866 - * orderZoNingProvinceUserDo  
6867 - */  
6868 - body: {  
6869 - /**  
6870 - @description  
6871 - orderZoNingProvinceUserDo */  
6872 - orderZoNingProvinceUserDo: OrderZoNingProvinceUserDo;  
6873 - };  
6874 -}  
6875 -  
6876 -/** @description response type for postOrderErpOrderZoNingSaveOrUpdate */  
6877 -export interface PostOrderErpOrderZoNingSaveOrUpdateResponse { 6757 +/** @description response type for getOrderErpOrderStagesExport */
  6758 +export interface GetOrderErpOrderStagesExportResponse {
6878 /** 6759 /**
6879 * @description 6760 * @description
6880 * OK 6761 * OK
6881 */ 6762 */
6882 - 200: ServerResult;  
6883 - /**  
6884 - * @description  
6885 - * Created  
6886 - */  
6887 - 201: any; 6763 + 200: any;
6888 /** 6764 /**
6889 * @description 6765 * @description
6890 * Unauthorized 6766 * Unauthorized
@@ -6902,25 +6778,21 @@ export interface PostOrderErpOrderZoNingSaveOrUpdateResponse { @@ -6902,25 +6778,21 @@ export interface PostOrderErpOrderZoNingSaveOrUpdateResponse {
6902 404: any; 6778 404: any;
6903 } 6779 }
6904 6780
6905 -export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess =  
6906 - PostOrderErpOrderZoNingSaveOrUpdateResponse[200]; 6781 +export type GetOrderErpOrderStagesExportResponseSuccess =
  6782 + GetOrderErpOrderStagesExportResponse[200];
6907 /** 6783 /**
6908 * @description 6784 * @description
6909 - * update  
6910 - * @tags order-zo-ning-controller 6785 + * 导出分期账单
  6786 + * @tags order-stages-controller
6911 * @produces * 6787 * @produces *
6912 - * @consumes application/json  
6913 */ 6788 */
6914 -export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => {  
6915 - const method = 'post';  
6916 - const url = '/order/erp/orderZoNing/saveOrUpdate';  
6917 - function request(  
6918 - option: PostOrderErpOrderZoNingSaveOrUpdateOption,  
6919 - ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> { 6789 +export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() => {
  6790 + const method = 'get';
  6791 + const url = '/order/erp/orderStages/export';
  6792 + function request(): Promise<GetOrderErpOrderStagesExportResponseSuccess> {
6920 return requester(request.url, { 6793 return requester(request.url, {
6921 method: request.method, 6794 method: request.method,
6922 - ...option,  
6923 - }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>; 6795 + }) as unknown as Promise<GetOrderErpOrderStagesExportResponseSuccess>;
6924 } 6796 }
6925 6797
6926 /** http method */ 6798 /** http method */
@@ -6930,8 +6802,22 @@ export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() =&gt; { @@ -6930,8 +6802,22 @@ export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() =&gt; {
6930 return request; 6802 return request;
6931 })(); 6803 })();
6932 6804
6933 -/** @description response type for getOrderErpOrderZoNingSelectAll */  
6934 -export interface GetOrderErpOrderZoNingSelectAllResponse { 6805 +/** @description request parameter type for postOrderErpOrderStagesImport */
  6806 +export interface PostOrderErpOrderStagesImportOption {
  6807 + /**
  6808 + * @description
  6809 + * file
  6810 + */
  6811 + formData: {
  6812 + /**
  6813 + @description
  6814 + file */
  6815 + file: File;
  6816 + };
  6817 +}
  6818 +
  6819 +/** @description response type for postOrderErpOrderStagesImport */
  6820 +export interface PostOrderErpOrderStagesImportResponse {
6935 /** 6821 /**
6936 * @description 6822 * @description
6937 * OK 6823 * OK
@@ -6939,6 +6825,11 @@ export interface GetOrderErpOrderZoNingSelectAllResponse { @@ -6939,6 +6825,11 @@ export interface GetOrderErpOrderZoNingSelectAllResponse {
6939 200: ServerResult; 6825 200: ServerResult;
6940 /** 6826 /**
6941 * @description 6827 * @description
  6828 + * Created
  6829 + */
  6830 + 201: any;
  6831 + /**
  6832 + * @description
6942 * Unauthorized 6833 * Unauthorized
6943 */ 6834 */
6944 401: any; 6835 401: any;
@@ -6954,21 +6845,25 @@ export interface GetOrderErpOrderZoNingSelectAllResponse { @@ -6954,21 +6845,25 @@ export interface GetOrderErpOrderZoNingSelectAllResponse {
6954 404: any; 6845 404: any;
6955 } 6846 }
6956 6847
6957 -export type GetOrderErpOrderZoNingSelectAllResponseSuccess =  
6958 - GetOrderErpOrderZoNingSelectAllResponse[200]; 6848 +export type PostOrderErpOrderStagesImportResponseSuccess =
  6849 + PostOrderErpOrderStagesImportResponse[200];
6959 /** 6850 /**
6960 * @description 6851 * @description
6961 - * 查询  
6962 - * @tags order-zo-ning-controller 6852 + * 导入分期账单
  6853 + * @tags order-stages-controller
6963 * @produces * 6854 * @produces *
  6855 + * @consumes multipart/form-data
6964 */ 6856 */
6965 -export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => {  
6966 - const method = 'get';  
6967 - const url = '/order/erp/orderZoNing/selectAll';  
6968 - function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> { 6857 +export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() => {
  6858 + const method = 'post';
  6859 + const url = '/order/erp/orderStages/import';
  6860 + function request(
  6861 + option: PostOrderErpOrderStagesImportOption,
  6862 + ): Promise<PostOrderErpOrderStagesImportResponseSuccess> {
6969 return requester(request.url, { 6863 return requester(request.url, {
6970 method: request.method, 6864 method: request.method,
6971 - }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>; 6865 + ...option,
  6866 + }) as unknown as Promise<PostOrderErpOrderStagesImportResponseSuccess>;
6972 } 6867 }
6973 6868
6974 /** http method */ 6869 /** http method */
@@ -6978,8 +6873,8 @@ export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() =&gt; { @@ -6978,8 +6873,8 @@ export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() =&gt; {
6978 return request; 6873 return request;
6979 })(); 6874 })();
6980 6875
6981 -/** @description response type for getOrderErpOrderZoNingSelectProvinceAll */  
6982 -export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { 6876 +/** @description response type for getOrderErpOrderStagesListAll */
  6877 +export interface GetOrderErpOrderStagesListAllResponse {
6983 /** 6878 /**
6984 * @description 6879 * @description
6985 * OK 6880 * OK
@@ -7002,21 +6897,21 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { @@ -7002,21 +6897,21 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse {
7002 404: any; 6897 404: any;
7003 } 6898 }
7004 6899
7005 -export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess =  
7006 - GetOrderErpOrderZoNingSelectProvinceAllResponse[200]; 6900 +export type GetOrderErpOrderStagesListAllResponseSuccess =
  6901 + GetOrderErpOrderStagesListAllResponse[200];
7007 /** 6902 /**
7008 * @description 6903 * @description
7009 - * 查询所有省份  
7010 - * @tags order-zo-ning-controller 6904 + * 查询所有分期账单
  6905 + * @tags order-stages-controller
7011 * @produces * 6906 * @produces *
7012 */ 6907 */
7013 -export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => { 6908 +export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() => {
7014 const method = 'get'; 6909 const method = 'get';
7015 - const url = '/order/erp/orderZoNing/selectProvinceAll';  
7016 - function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> { 6910 + const url = '/order/erp/orderStages/listAll';
  6911 + function request(): Promise<GetOrderErpOrderStagesListAllResponseSuccess> {
7017 return requester(request.url, { 6912 return requester(request.url, {
7018 method: request.method, 6913 method: request.method,
7019 - }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>; 6914 + }) as unknown as Promise<GetOrderErpOrderStagesListAllResponseSuccess>;
7020 } 6915 }
7021 6916
7022 /** http method */ 6917 /** http method */
@@ -7026,8 +6921,22 @@ export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() =&gt; { @@ -7026,8 +6921,22 @@ export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() =&gt; {
7026 return request; 6921 return request;
7027 })(); 6922 })();
7028 6923
7029 -/** @description response type for getOrderErpOrderZoNingSelectUserAll */  
7030 -export interface GetOrderErpOrderZoNingSelectUserAllResponse { 6924 +/** @description request parameter type for postOrderErpOrderStagesSaveOrUpdate */
  6925 +export interface PostOrderErpOrderStagesSaveOrUpdateOption {
  6926 + /**
  6927 + * @description
  6928 + * orderStagesFromDo
  6929 + */
  6930 + body: {
  6931 + /**
  6932 + @description
  6933 + orderStagesFromDo */
  6934 + orderStagesFromDo: OrderStagesFromDo;
  6935 + };
  6936 +}
  6937 +
  6938 +/** @description response type for postOrderErpOrderStagesSaveOrUpdate */
  6939 +export interface PostOrderErpOrderStagesSaveOrUpdateResponse {
7031 /** 6940 /**
7032 * @description 6941 * @description
7033 * OK 6942 * OK
@@ -7035,6 +6944,11 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse { @@ -7035,6 +6944,11 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse {
7035 200: ServerResult; 6944 200: ServerResult;
7036 /** 6945 /**
7037 * @description 6946 * @description
  6947 + * Created
  6948 + */
  6949 + 201: any;
  6950 + /**
  6951 + * @description
7038 * Unauthorized 6952 * Unauthorized
7039 */ 6953 */
7040 401: any; 6954 401: any;
@@ -7050,21 +6964,25 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse { @@ -7050,21 +6964,25 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse {
7050 404: any; 6964 404: any;
7051 } 6965 }
7052 6966
7053 -export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess =  
7054 - GetOrderErpOrderZoNingSelectUserAllResponse[200]; 6967 +export type PostOrderErpOrderStagesSaveOrUpdateResponseSuccess =
  6968 + PostOrderErpOrderStagesSaveOrUpdateResponse[200];
7055 /** 6969 /**
7056 * @description 6970 * @description
7057 - * 查询所有销售  
7058 - * @tags order-zo-ning-controller 6971 + * 添加或者修改分期账单
  6972 + * @tags order-stages-controller
7059 * @produces * 6973 * @produces *
  6974 + * @consumes application/json
7060 */ 6975 */
7061 -export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => {  
7062 - const method = 'get';  
7063 - const url = '/order/erp/orderZoNing/selectUserAll';  
7064 - function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> { 6976 +export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => {
  6977 + const method = 'post';
  6978 + const url = '/order/erp/orderStages/saveOrUpdate';
  6979 + function request(
  6980 + option: PostOrderErpOrderStagesSaveOrUpdateOption,
  6981 + ): Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess> {
7065 return requester(request.url, { 6982 return requester(request.url, {
7066 method: request.method, 6983 method: request.method,
7067 - }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>; 6984 + ...option,
  6985 + }) as unknown as Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess>;
7068 } 6986 }
7069 6987
7070 /** http method */ 6988 /** http method */
@@ -7074,22 +6992,22 @@ export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() =&gt; { @@ -7074,22 +6992,22 @@ export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() =&gt; {
7074 return request; 6992 return request;
7075 })(); 6993 })();
7076 6994
7077 -/** @description request parameter type for postOrderErpProfitAnalysis */  
7078 -export interface PostOrderErpProfitAnalysisOption { 6995 +/** @description request parameter type for postOrderErpOrderStagesSearch */
  6996 +export interface PostOrderErpOrderStagesSearchOption {
7079 /** 6997 /**
7080 * @description 6998 * @description
7081 - * orderProfitAnalysisVo 6999 + * orderStagesSelDo
7082 */ 7000 */
7083 body: { 7001 body: {
7084 /** 7002 /**
7085 @description 7003 @description
7086 - orderProfitAnalysisVo */  
7087 - orderProfitAnalysisVo: OrderProfitAnalysisVo; 7004 + orderStagesSelDo */
  7005 + orderStagesSelDo: OrderStagesSelDo;
7088 }; 7006 };
7089 } 7007 }
7090 7008
7091 -/** @description response type for postOrderErpProfitAnalysis */  
7092 -export interface PostOrderErpProfitAnalysisResponse { 7009 +/** @description response type for postOrderErpOrderStagesSearch */
  7010 +export interface PostOrderErpOrderStagesSearchResponse {
7093 /** 7011 /**
7094 * @description 7012 * @description
7095 * OK 7013 * OK
@@ -7117,25 +7035,25 @@ export interface PostOrderErpProfitAnalysisResponse { @@ -7117,25 +7035,25 @@ export interface PostOrderErpProfitAnalysisResponse {
7117 404: any; 7035 404: any;
7118 } 7036 }
7119 7037
7120 -export type PostOrderErpProfitAnalysisResponseSuccess =  
7121 - PostOrderErpProfitAnalysisResponse[200]; 7038 +export type PostOrderErpOrderStagesSearchResponseSuccess =
  7039 + PostOrderErpOrderStagesSearchResponse[200];
7122 /** 7040 /**
7123 * @description 7041 * @description
7124 - * analysis  
7125 - * @tags order-profit-controller 7042 + * 条件搜索分期账单
  7043 + * @tags order-stages-controller
7126 * @produces * 7044 * @produces *
7127 * @consumes application/json 7045 * @consumes application/json
7128 */ 7046 */
7129 -export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => { 7047 +export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => {
7130 const method = 'post'; 7048 const method = 'post';
7131 - const url = '/order/erp/profit/analysis'; 7049 + const url = '/order/erp/orderStages/search';
7132 function request( 7050 function request(
7133 - option: PostOrderErpProfitAnalysisOption,  
7134 - ): Promise<PostOrderErpProfitAnalysisResponseSuccess> { 7051 + option: PostOrderErpOrderStagesSearchOption,
  7052 + ): Promise<PostOrderErpOrderStagesSearchResponseSuccess> {
7135 return requester(request.url, { 7053 return requester(request.url, {
7136 method: request.method, 7054 method: request.method,
7137 ...option, 7055 ...option,
7138 - }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>; 7056 + }) as unknown as Promise<PostOrderErpOrderStagesSearchResponseSuccess>;
7139 } 7057 }
7140 7058
7141 /** http method */ 7059 /** http method */
@@ -7145,22 +7063,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() =&gt; { @@ -7145,22 +7063,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() =&gt; {
7145 return request; 7063 return request;
7146 })(); 7064 })();
7147 7065
7148 -/** @description request parameter type for postOrderErpRolesAdd */  
7149 -export interface PostOrderErpRolesAddOption { 7066 +/** @description request parameter type for postOrderErpOrderStagesUpload */
  7067 +export interface PostOrderErpOrderStagesUploadOption {
7150 /** 7068 /**
7151 * @description 7069 * @description
7152 - * roleVO 7070 + * file
7153 */ 7071 */
7154 - body: { 7072 + formData: {
7155 /** 7073 /**
7156 @description 7074 @description
7157 - roleVO */  
7158 - roleVO: AdminRoleVO; 7075 + file */
  7076 + file: File;
7159 }; 7077 };
7160 } 7078 }
7161 7079
7162 -/** @description response type for postOrderErpRolesAdd */  
7163 -export interface PostOrderErpRolesAddResponse { 7080 +/** @description response type for postOrderErpOrderStagesUpload */
  7081 +export interface PostOrderErpOrderStagesUploadResponse {
7164 /** 7082 /**
7165 * @description 7083 * @description
7166 * OK 7084 * OK
@@ -7188,25 +7106,25 @@ export interface PostOrderErpRolesAddResponse { @@ -7188,25 +7106,25 @@ export interface PostOrderErpRolesAddResponse {
7188 404: any; 7106 404: any;
7189 } 7107 }
7190 7108
7191 -export type PostOrderErpRolesAddResponseSuccess =  
7192 - PostOrderErpRolesAddResponse[200]; 7109 +export type PostOrderErpOrderStagesUploadResponseSuccess =
  7110 + PostOrderErpOrderStagesUploadResponse[200];
7193 /** 7111 /**
7194 * @description 7112 * @description
7195 - * 新增角色  
7196 - * @tags 系统:角色管理 7113 + * 合同文件上传
  7114 + * @tags order-stages-controller
7197 * @produces * 7115 * @produces *
7198 - * @consumes application/json 7116 + * @consumes multipart/form-data
7199 */ 7117 */
7200 -export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { 7118 +export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => {
7201 const method = 'post'; 7119 const method = 'post';
7202 - const url = '/order/erp/roles/add'; 7120 + const url = '/order/erp/orderStages/upload';
7203 function request( 7121 function request(
7204 - option: PostOrderErpRolesAddOption,  
7205 - ): Promise<PostOrderErpRolesAddResponseSuccess> { 7122 + option: PostOrderErpOrderStagesUploadOption,
  7123 + ): Promise<PostOrderErpOrderStagesUploadResponseSuccess> {
7206 return requester(request.url, { 7124 return requester(request.url, {
7207 method: request.method, 7125 method: request.method,
7208 ...option, 7126 ...option,
7209 - }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>; 7127 + }) as unknown as Promise<PostOrderErpOrderStagesUploadResponseSuccess>;
7210 } 7128 }
7211 7129
7212 /** http method */ 7130 /** http method */
@@ -7216,22 +7134,22 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() =&gt; { @@ -7216,22 +7134,22 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() =&gt; {
7216 return request; 7134 return request;
7217 })(); 7135 })();
7218 7136
7219 -/** @description request parameter type for postOrderErpRolesAll */  
7220 -export interface PostOrderErpRolesAllOption { 7137 +/** @description request parameter type for postOrderErpOrderStagesPayWaySaveOrUpdate */
  7138 +export interface PostOrderErpOrderStagesPayWaySaveOrUpdateOption {
7221 /** 7139 /**
7222 * @description 7140 * @description
7223 - * queryVO 7141 + * orderStagesPayWayList
7224 */ 7142 */
7225 body: { 7143 body: {
7226 /** 7144 /**
7227 @description 7145 @description
7228 - queryVO */  
7229 - queryVO: AdminRoleQueryVO; 7146 + orderStagesPayWayList */
  7147 + orderStagesPayWayList: Array<OrderStagesPayWay>;
7230 }; 7148 };
7231 } 7149 }
7232 7150
7233 -/** @description response type for postOrderErpRolesAll */  
7234 -export interface PostOrderErpRolesAllResponse { 7151 +/** @description response type for postOrderErpOrderStagesPayWaySaveOrUpdate */
  7152 +export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse {
7235 /** 7153 /**
7236 * @description 7154 * @description
7237 * OK 7155 * OK
@@ -7259,50 +7177,51 @@ export interface PostOrderErpRolesAllResponse { @@ -7259,50 +7177,51 @@ export interface PostOrderErpRolesAllResponse {
7259 404: any; 7177 404: any;
7260 } 7178 }
7261 7179
7262 -export type PostOrderErpRolesAllResponseSuccess =  
7263 - PostOrderErpRolesAllResponse[200]; 7180 +export type PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess =
  7181 + PostOrderErpOrderStagesPayWaySaveOrUpdateResponse[200];
7264 /** 7182 /**
7265 * @description 7183 * @description
7266 - * 返回全部的角色  
7267 - * @tags 系统:角色管理 7184 + * 修改或者保存
  7185 + * @tags order-stages-pay-way-controller
7268 * @produces * 7186 * @produces *
7269 * @consumes application/json 7187 * @consumes application/json
7270 */ 7188 */
7271 -export const postOrderErpRolesAll = /* #__PURE__ */ (() => {  
7272 - const method = 'post';  
7273 - const url = '/order/erp/roles/all';  
7274 - function request(  
7275 - option: PostOrderErpRolesAllOption,  
7276 - ): Promise<PostOrderErpRolesAllResponseSuccess> {  
7277 - return requester(request.url, {  
7278 - method: request.method,  
7279 - ...option,  
7280 - }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>;  
7281 - } 7189 +export const postOrderErpOrderStagesPayWaySaveOrUpdate =
  7190 + /* #__PURE__ */ (() => {
  7191 + const method = 'post';
  7192 + const url = '/order/erp/orderStagesPayWay/saveOrUpdate';
  7193 + function request(
  7194 + option: PostOrderErpOrderStagesPayWaySaveOrUpdateOption,
  7195 + ): Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess> {
  7196 + return requester(request.url, {
  7197 + method: request.method,
  7198 + ...option,
  7199 + }) as unknown as Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess>;
  7200 + }
7282 7201
7283 - /** http method */  
7284 - request.method = method;  
7285 - /** request url */  
7286 - request.url = url;  
7287 - return request;  
7288 -})(); 7202 + /** http method */
  7203 + request.method = method;
  7204 + /** request url */
  7205 + request.url = url;
  7206 + return request;
  7207 + })();
7289 7208
7290 -/** @description request parameter type for postOrderErpRolesAuthMenu */  
7291 -export interface PostOrderErpRolesAuthMenuOption { 7209 +/** @description request parameter type for postOrderErpOrderStagesPayWaySelect */
  7210 +export interface PostOrderErpOrderStagesPayWaySelectOption {
7292 /** 7211 /**
7293 * @description 7212 * @description
7294 - * roleVO 7213 + * orderStagesPayWayDo
7295 */ 7214 */
7296 body: { 7215 body: {
7297 /** 7216 /**
7298 @description 7217 @description
7299 - roleVO */  
7300 - roleVO: AdminAuthRoleVO; 7218 + orderStagesPayWayDo */
  7219 + orderStagesPayWayDo: OrderStagesPayWayDo;
7301 }; 7220 };
7302 } 7221 }
7303 7222
7304 -/** @description response type for postOrderErpRolesAuthMenu */  
7305 -export interface PostOrderErpRolesAuthMenuResponse { 7223 +/** @description response type for postOrderErpOrderStagesPayWaySelect */
  7224 +export interface PostOrderErpOrderStagesPayWaySelectResponse {
7306 /** 7225 /**
7307 * @description 7226 * @description
7308 * OK 7227 * OK
@@ -7330,25 +7249,25 @@ export interface PostOrderErpRolesAuthMenuResponse { @@ -7330,25 +7249,25 @@ export interface PostOrderErpRolesAuthMenuResponse {
7330 404: any; 7249 404: any;
7331 } 7250 }
7332 7251
7333 -export type PostOrderErpRolesAuthMenuResponseSuccess =  
7334 - PostOrderErpRolesAuthMenuResponse[200]; 7252 +export type PostOrderErpOrderStagesPayWaySelectResponseSuccess =
  7253 + PostOrderErpOrderStagesPayWaySelectResponse[200];
7335 /** 7254 /**
7336 * @description 7255 * @description
7337 - * 授权角色菜单  
7338 - * @tags 系统:角色管理 7256 + * 查询该的分期比例
  7257 + * @tags order-stages-pay-way-controller
7339 * @produces * 7258 * @produces *
7340 * @consumes application/json 7259 * @consumes application/json
7341 */ 7260 */
7342 -export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { 7261 +export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => {
7343 const method = 'post'; 7262 const method = 'post';
7344 - const url = '/order/erp/roles/auth_menu'; 7263 + const url = '/order/erp/orderStagesPayWay/select';
7345 function request( 7264 function request(
7346 - option: PostOrderErpRolesAuthMenuOption,  
7347 - ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> { 7265 + option: PostOrderErpOrderStagesPayWaySelectOption,
  7266 + ): Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess> {
7348 return requester(request.url, { 7267 return requester(request.url, {
7349 method: request.method, 7268 method: request.method,
7350 ...option, 7269 ...option,
7351 - }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>; 7270 + }) as unknown as Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess>;
7352 } 7271 }
7353 7272
7354 /** http method */ 7273 /** http method */
@@ -7358,22 +7277,22 @@ export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() =&gt; { @@ -7358,22 +7277,22 @@ export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() =&gt; {
7358 return request; 7277 return request;
7359 })(); 7278 })();
7360 7279
7361 -/** @description request parameter type for postOrderErpRolesDelete */  
7362 -export interface PostOrderErpRolesDeleteOption { 7280 +/** @description request parameter type for postOrderErpOrderStagesPayWayUploadForPayWay */
  7281 +export interface PostOrderErpOrderStagesPayWayUploadForPayWayOption {
7363 /** 7282 /**
7364 * @description 7283 * @description
7365 - * queryVO 7284 + * orderStagesPayWayFileDo
7366 */ 7285 */
7367 body: { 7286 body: {
7368 /** 7287 /**
7369 @description 7288 @description
7370 - queryVO */  
7371 - queryVO: AdminRoleQueryVO; 7289 + orderStagesPayWayFileDo */
  7290 + orderStagesPayWayFileDo: OrderStagesPayWayFileDo;
7372 }; 7291 };
7373 } 7292 }
7374 7293
7375 -/** @description response type for postOrderErpRolesDelete */  
7376 -export interface PostOrderErpRolesDeleteResponse { 7294 +/** @description response type for postOrderErpOrderStagesPayWayUploadForPayWay */
  7295 +export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse {
7377 /** 7296 /**
7378 * @description 7297 * @description
7379 * OK 7298 * OK
@@ -7401,50 +7320,51 @@ export interface PostOrderErpRolesDeleteResponse { @@ -7401,50 +7320,51 @@ export interface PostOrderErpRolesDeleteResponse {
7401 404: any; 7320 404: any;
7402 } 7321 }
7403 7322
7404 -export type PostOrderErpRolesDeleteResponseSuccess =  
7405 - PostOrderErpRolesDeleteResponse[200]; 7323 +export type PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess =
  7324 + PostOrderErpOrderStagesPayWayUploadForPayWayResponse[200];
7406 /** 7325 /**
7407 * @description 7326 * @description
7408 - * 删除角色  
7409 - * @tags 系统:角色管理 7327 + * 付款合同文件上传
  7328 + * @tags order-stages-pay-way-controller
7410 * @produces * 7329 * @produces *
7411 * @consumes application/json 7330 * @consumes application/json
7412 */ 7331 */
7413 -export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {  
7414 - const method = 'post';  
7415 - const url = '/order/erp/roles/delete';  
7416 - function request(  
7417 - option: PostOrderErpRolesDeleteOption,  
7418 - ): Promise<PostOrderErpRolesDeleteResponseSuccess> {  
7419 - return requester(request.url, {  
7420 - method: request.method,  
7421 - ...option,  
7422 - }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>;  
7423 - } 7332 +export const postOrderErpOrderStagesPayWayUploadForPayWay =
  7333 + /* #__PURE__ */ (() => {
  7334 + const method = 'post';
  7335 + const url = '/order/erp/orderStagesPayWay/uploadForPayWay';
  7336 + function request(
  7337 + option: PostOrderErpOrderStagesPayWayUploadForPayWayOption,
  7338 + ): Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess> {
  7339 + return requester(request.url, {
  7340 + method: request.method,
  7341 + ...option,
  7342 + }) as unknown as Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess>;
  7343 + }
7424 7344
7425 - /** http method */  
7426 - request.method = method;  
7427 - /** request url */  
7428 - request.url = url;  
7429 - return request;  
7430 -})(); 7345 + /** http method */
  7346 + request.method = method;
  7347 + /** request url */
  7348 + request.url = url;
  7349 + return request;
  7350 + })();
7431 7351
7432 -/** @description request parameter type for postOrderErpRolesDetail */  
7433 -export interface PostOrderErpRolesDetailOption { 7352 +/** @description request parameter type for deleteOrderErpOrderZoNingDelete */
  7353 +export interface DeleteOrderErpOrderZoNingDeleteOption {
7434 /** 7354 /**
7435 * @description 7355 * @description
7436 - * queryVO 7356 + * id
7437 */ 7357 */
7438 body: { 7358 body: {
7439 /** 7359 /**
7440 @description 7360 @description
7441 - queryVO */  
7442 - queryVO: AdminRoleQueryVO; 7361 + id */
  7362 + id: number;
7443 }; 7363 };
7444 } 7364 }
7445 7365
7446 -/** @description response type for postOrderErpRolesDetail */  
7447 -export interface PostOrderErpRolesDetailResponse { 7366 +/** @description response type for deleteOrderErpOrderZoNingDelete */
  7367 +export interface DeleteOrderErpOrderZoNingDeleteResponse {
7448 /** 7368 /**
7449 * @description 7369 * @description
7450 * OK 7370 * OK
@@ -7452,9 +7372,9 @@ export interface PostOrderErpRolesDetailResponse { @@ -7452,9 +7372,9 @@ export interface PostOrderErpRolesDetailResponse {
7452 200: ServerResult; 7372 200: ServerResult;
7453 /** 7373 /**
7454 * @description 7374 * @description
7455 - * Created 7375 + * No Content
7456 */ 7376 */
7457 - 201: any; 7377 + 204: any;
7458 /** 7378 /**
7459 * @description 7379 * @description
7460 * Unauthorized 7380 * Unauthorized
@@ -7465,32 +7385,26 @@ export interface PostOrderErpRolesDetailResponse { @@ -7465,32 +7385,26 @@ export interface PostOrderErpRolesDetailResponse {
7465 * Forbidden 7385 * Forbidden
7466 */ 7386 */
7467 403: any; 7387 403: any;
7468 - /**  
7469 - * @description  
7470 - * Not Found  
7471 - */  
7472 - 404: any;  
7473 } 7388 }
7474 7389
7475 -export type PostOrderErpRolesDetailResponseSuccess =  
7476 - PostOrderErpRolesDetailResponse[200]; 7390 +export type DeleteOrderErpOrderZoNingDeleteResponseSuccess =
  7391 + DeleteOrderErpOrderZoNingDeleteResponse[200];
7477 /** 7392 /**
7478 * @description 7393 * @description
7479 - * 获取单个role  
7480 - * @tags 系统:角色管理 7394 + * toDetele
  7395 + * @tags order-zo-ning-controller
7481 * @produces * 7396 * @produces *
7482 - * @consumes application/json  
7483 */ 7397 */
7484 -export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {  
7485 - const method = 'post';  
7486 - const url = '/order/erp/roles/detail'; 7398 +export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => {
  7399 + const method = 'delete';
  7400 + const url = '/order/erp/orderZoNing/delete';
7487 function request( 7401 function request(
7488 - option: PostOrderErpRolesDetailOption,  
7489 - ): Promise<PostOrderErpRolesDetailResponseSuccess> { 7402 + option: DeleteOrderErpOrderZoNingDeleteOption,
  7403 + ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> {
7490 return requester(request.url, { 7404 return requester(request.url, {
7491 method: request.method, 7405 method: request.method,
7492 ...option, 7406 ...option,
7493 - }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>; 7407 + }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>;
7494 } 7408 }
7495 7409
7496 /** http method */ 7410 /** http method */
@@ -7500,22 +7414,22 @@ export const postOrderErpRolesDetail = /* #__PURE__ */ (() =&gt; { @@ -7500,22 +7414,22 @@ export const postOrderErpRolesDetail = /* #__PURE__ */ (() =&gt; {
7500 return request; 7414 return request;
7501 })(); 7415 })();
7502 7416
7503 -/** @description request parameter type for postOrderErpRolesEdit */  
7504 -export interface PostOrderErpRolesEditOption { 7417 +/** @description request parameter type for postOrderErpOrderZoNingSaveOrUpdate */
  7418 +export interface PostOrderErpOrderZoNingSaveOrUpdateOption {
7505 /** 7419 /**
7506 * @description 7420 * @description
7507 - * roleVO 7421 + * orderZoNingProvinceUserDo
7508 */ 7422 */
7509 body: { 7423 body: {
7510 /** 7424 /**
7511 @description 7425 @description
7512 - roleVO */  
7513 - roleVO: AdminRoleVO; 7426 + orderZoNingProvinceUserDo */
  7427 + orderZoNingProvinceUserDo: OrderZoNingProvinceUserDo;
7514 }; 7428 };
7515 } 7429 }
7516 7430
7517 -/** @description response type for postOrderErpRolesEdit */  
7518 -export interface PostOrderErpRolesEditResponse { 7431 +/** @description response type for postOrderErpOrderZoNingSaveOrUpdate */
  7432 +export interface PostOrderErpOrderZoNingSaveOrUpdateResponse {
7519 /** 7433 /**
7520 * @description 7434 * @description
7521 * OK 7435 * OK
@@ -7543,25 +7457,25 @@ export interface PostOrderErpRolesEditResponse { @@ -7543,25 +7457,25 @@ export interface PostOrderErpRolesEditResponse {
7543 404: any; 7457 404: any;
7544 } 7458 }
7545 7459
7546 -export type PostOrderErpRolesEditResponseSuccess =  
7547 - PostOrderErpRolesEditResponse[200]; 7460 +export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess =
  7461 + PostOrderErpOrderZoNingSaveOrUpdateResponse[200];
7548 /** 7462 /**
7549 * @description 7463 * @description
7550 - * 修改角色  
7551 - * @tags 系统:角色管理 7464 + * update
  7465 + * @tags order-zo-ning-controller
7552 * @produces * 7466 * @produces *
7553 * @consumes application/json 7467 * @consumes application/json
7554 */ 7468 */
7555 -export const postOrderErpRolesEdit = /* #__PURE__ */ (() => { 7469 +export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => {
7556 const method = 'post'; 7470 const method = 'post';
7557 - const url = '/order/erp/roles/edit'; 7471 + const url = '/order/erp/orderZoNing/saveOrUpdate';
7558 function request( 7472 function request(
7559 - option: PostOrderErpRolesEditOption,  
7560 - ): Promise<PostOrderErpRolesEditResponseSuccess> { 7473 + option: PostOrderErpOrderZoNingSaveOrUpdateOption,
  7474 + ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> {
7561 return requester(request.url, { 7475 return requester(request.url, {
7562 method: request.method, 7476 method: request.method,
7563 ...option, 7477 ...option,
7564 - }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>; 7478 + }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>;
7565 } 7479 }
7566 7480
7567 /** http method */ 7481 /** http method */
@@ -7571,22 +7485,8 @@ export const postOrderErpRolesEdit = /* #__PURE__ */ (() =&gt; { @@ -7571,22 +7485,8 @@ export const postOrderErpRolesEdit = /* #__PURE__ */ (() =&gt; {
7571 return request; 7485 return request;
7572 })(); 7486 })();
7573 7487
7574 -/** @description request parameter type for postOrderErpRolesListByPage */  
7575 -export interface PostOrderErpRolesListByPageOption {  
7576 - /**  
7577 - * @description  
7578 - * queryVO  
7579 - */  
7580 - body: {  
7581 - /**  
7582 - @description  
7583 - queryVO */  
7584 - queryVO: AdminRoleQueryVO;  
7585 - };  
7586 -}  
7587 -  
7588 -/** @description response type for postOrderErpRolesListByPage */  
7589 -export interface PostOrderErpRolesListByPageResponse { 7488 +/** @description response type for getOrderErpOrderZoNingSelectAll */
  7489 +export interface GetOrderErpOrderZoNingSelectAllResponse {
7590 /** 7490 /**
7591 * @description 7491 * @description
7592 * OK 7492 * OK
@@ -7594,11 +7494,6 @@ export interface PostOrderErpRolesListByPageResponse { @@ -7594,11 +7494,6 @@ export interface PostOrderErpRolesListByPageResponse {
7594 200: ServerResult; 7494 200: ServerResult;
7595 /** 7495 /**
7596 * @description 7496 * @description
7597 - * Created  
7598 - */  
7599 - 201: any;  
7600 - /**  
7601 - * @description  
7602 * Unauthorized 7497 * Unauthorized
7603 */ 7498 */
7604 401: any; 7499 401: any;
@@ -7614,25 +7509,21 @@ export interface PostOrderErpRolesListByPageResponse { @@ -7614,25 +7509,21 @@ export interface PostOrderErpRolesListByPageResponse {
7614 404: any; 7509 404: any;
7615 } 7510 }
7616 7511
7617 -export type PostOrderErpRolesListByPageResponseSuccess =  
7618 - PostOrderErpRolesListByPageResponse[200]; 7512 +export type GetOrderErpOrderZoNingSelectAllResponseSuccess =
  7513 + GetOrderErpOrderZoNingSelectAllResponse[200];
7619 /** 7514 /**
7620 * @description 7515 * @description
7621 - * 查询角色  
7622 - * @tags 系统:角色管理 7516 + * 查询
  7517 + * @tags order-zo-ning-controller
7623 * @produces * 7518 * @produces *
7624 - * @consumes application/json  
7625 */ 7519 */
7626 -export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {  
7627 - const method = 'post';  
7628 - const url = '/order/erp/roles/list_by_page';  
7629 - function request(  
7630 - option: PostOrderErpRolesListByPageOption,  
7631 - ): Promise<PostOrderErpRolesListByPageResponseSuccess> { 7520 +export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => {
  7521 + const method = 'get';
  7522 + const url = '/order/erp/orderZoNing/selectAll';
  7523 + function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> {
7632 return requester(request.url, { 7524 return requester(request.url, {
7633 method: request.method, 7525 method: request.method,
7634 - ...option,  
7635 - }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>; 7526 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>;
7636 } 7527 }
7637 7528
7638 /** http method */ 7529 /** http method */
@@ -7642,22 +7533,8 @@ export const postOrderErpRolesListByPage = /* #__PURE__ */ (() =&gt; { @@ -7642,22 +7533,8 @@ export const postOrderErpRolesListByPage = /* #__PURE__ */ (() =&gt; {
7642 return request; 7533 return request;
7643 })(); 7534 })();
7644 7535
7645 -/** @description request parameter type for postOrderErpUsersAdd */  
7646 -export interface PostOrderErpUsersAddOption {  
7647 - /**  
7648 - * @description  
7649 - * userVO  
7650 - */  
7651 - body: {  
7652 - /**  
7653 - @description  
7654 - userVO */  
7655 - userVO: AdminUserVO;  
7656 - };  
7657 -}  
7658 -  
7659 -/** @description response type for postOrderErpUsersAdd */  
7660 -export interface PostOrderErpUsersAddResponse { 7536 +/** @description response type for getOrderErpOrderZoNingSelectProvinceAll */
  7537 +export interface GetOrderErpOrderZoNingSelectProvinceAllResponse {
7661 /** 7538 /**
7662 * @description 7539 * @description
7663 * OK 7540 * OK
@@ -7665,11 +7542,6 @@ export interface PostOrderErpUsersAddResponse { @@ -7665,11 +7542,6 @@ export interface PostOrderErpUsersAddResponse {
7665 200: ServerResult; 7542 200: ServerResult;
7666 /** 7543 /**
7667 * @description 7544 * @description
7668 - * Created  
7669 - */  
7670 - 201: any;  
7671 - /**  
7672 - * @description  
7673 * Unauthorized 7545 * Unauthorized
7674 */ 7546 */
7675 401: any; 7547 401: any;
@@ -7685,25 +7557,21 @@ export interface PostOrderErpUsersAddResponse { @@ -7685,25 +7557,21 @@ export interface PostOrderErpUsersAddResponse {
7685 404: any; 7557 404: any;
7686 } 7558 }
7687 7559
7688 -export type PostOrderErpUsersAddResponseSuccess =  
7689 - PostOrderErpUsersAddResponse[200]; 7560 +export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess =
  7561 + GetOrderErpOrderZoNingSelectProvinceAllResponse[200];
7690 /** 7562 /**
7691 * @description 7563 * @description
7692 - * 新增用户  
7693 - * @tags 系统:用户管理 7564 + * 查询所有省份
  7565 + * @tags order-zo-ning-controller
7694 * @produces * 7566 * @produces *
7695 - * @consumes application/json  
7696 */ 7567 */
7697 -export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {  
7698 - const method = 'post';  
7699 - const url = '/order/erp/users/add';  
7700 - function request(  
7701 - option: PostOrderErpUsersAddOption,  
7702 - ): Promise<PostOrderErpUsersAddResponseSuccess> { 7568 +export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => {
  7569 + const method = 'get';
  7570 + const url = '/order/erp/orderZoNing/selectProvinceAll';
  7571 + function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> {
7703 return requester(request.url, { 7572 return requester(request.url, {
7704 method: request.method, 7573 method: request.method,
7705 - ...option,  
7706 - }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>; 7574 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>;
7707 } 7575 }
7708 7576
7709 /** http method */ 7577 /** http method */
@@ -7713,22 +7581,22 @@ export const postOrderErpUsersAdd = /* #__PURE__ */ (() =&gt; { @@ -7713,22 +7581,22 @@ export const postOrderErpUsersAdd = /* #__PURE__ */ (() =&gt; {
7713 return request; 7581 return request;
7714 })(); 7582 })();
7715 7583
7716 -/** @description request parameter type for postOrderErpUsersAuthRole */  
7717 -export interface PostOrderErpUsersAuthRoleOption { 7584 +/** @description request parameter type for postOrderErpOrderZoNingSelectSaleUserByProvince */
  7585 +export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceOption {
7718 /** 7586 /**
7719 * @description 7587 * @description
7720 - * userVO 7588 + * zoning
7721 */ 7589 */
7722 body: { 7590 body: {
7723 /** 7591 /**
7724 @description 7592 @description
7725 - userVO */  
7726 - userVO: AdminAuthUserVO; 7593 + zoning */
  7594 + zoning: string;
7727 }; 7595 };
7728 } 7596 }
7729 7597
7730 -/** @description response type for postOrderErpUsersAuthRole */  
7731 -export interface PostOrderErpUsersAuthRoleResponse { 7598 +/** @description response type for postOrderErpOrderZoNingSelectSaleUserByProvince */
  7599 +export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse {
7732 /** 7600 /**
7733 * @description 7601 * @description
7734 * OK 7602 * OK
@@ -7756,50 +7624,37 @@ export interface PostOrderErpUsersAuthRoleResponse { @@ -7756,50 +7624,37 @@ export interface PostOrderErpUsersAuthRoleResponse {
7756 404: any; 7624 404: any;
7757 } 7625 }
7758 7626
7759 -export type PostOrderErpUsersAuthRoleResponseSuccess =  
7760 - PostOrderErpUsersAuthRoleResponse[200]; 7627 +export type PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess =
  7628 + PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse[200];
7761 /** 7629 /**
7762 * @description 7630 * @description
7763 - * 授权角色  
7764 - * @tags 系统:用户管理 7631 + * 查询出这个大区所包含的销售
  7632 + * @tags order-zo-ning-controller
7765 * @produces * 7633 * @produces *
7766 * @consumes application/json 7634 * @consumes application/json
7767 */ 7635 */
7768 -export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {  
7769 - const method = 'post';  
7770 - const url = '/order/erp/users/auth_role';  
7771 - function request(  
7772 - option: PostOrderErpUsersAuthRoleOption,  
7773 - ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {  
7774 - return requester(request.url, {  
7775 - method: request.method,  
7776 - ...option,  
7777 - }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>;  
7778 - }  
7779 -  
7780 - /** http method */  
7781 - request.method = method;  
7782 - /** request url */  
7783 - request.url = url;  
7784 - return request;  
7785 -})();  
7786 -  
7787 -/** @description request parameter type for postOrderErpUsersDelete */  
7788 -export interface PostOrderErpUsersDeleteOption {  
7789 - /**  
7790 - * @description  
7791 - * queryVO  
7792 - */  
7793 - body: {  
7794 - /**  
7795 - @description  
7796 - queryVO */  
7797 - queryVO: AdminUserQueryVO;  
7798 - };  
7799 -} 7636 +export const postOrderErpOrderZoNingSelectSaleUserByProvince =
  7637 + /* #__PURE__ */ (() => {
  7638 + const method = 'post';
  7639 + const url = '/order/erp/orderZoNing/selectSaleUserByProvince';
  7640 + function request(
  7641 + option: PostOrderErpOrderZoNingSelectSaleUserByProvinceOption,
  7642 + ): Promise<PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess> {
  7643 + return requester(request.url, {
  7644 + method: request.method,
  7645 + ...option,
  7646 + }) as unknown as Promise<PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess>;
  7647 + }
7800 7648
7801 -/** @description response type for postOrderErpUsersDelete */  
7802 -export interface PostOrderErpUsersDeleteResponse { 7649 + /** http method */
  7650 + request.method = method;
  7651 + /** request url */
  7652 + request.url = url;
  7653 + return request;
  7654 + })();
  7655 +
  7656 +/** @description response type for getOrderErpOrderZoNingSelectUserAll */
  7657 +export interface GetOrderErpOrderZoNingSelectUserAllResponse {
7803 /** 7658 /**
7804 * @description 7659 * @description
7805 * OK 7660 * OK
@@ -7807,11 +7662,6 @@ export interface PostOrderErpUsersDeleteResponse { @@ -7807,11 +7662,6 @@ export interface PostOrderErpUsersDeleteResponse {
7807 200: ServerResult; 7662 200: ServerResult;
7808 /** 7663 /**
7809 * @description 7664 * @description
7810 - * Created  
7811 - */  
7812 - 201: any;  
7813 - /**  
7814 - * @description  
7815 * Unauthorized 7665 * Unauthorized
7816 */ 7666 */
7817 401: any; 7667 401: any;
@@ -7827,25 +7677,21 @@ export interface PostOrderErpUsersDeleteResponse { @@ -7827,25 +7677,21 @@ export interface PostOrderErpUsersDeleteResponse {
7827 404: any; 7677 404: any;
7828 } 7678 }
7829 7679
7830 -export type PostOrderErpUsersDeleteResponseSuccess =  
7831 - PostOrderErpUsersDeleteResponse[200]; 7680 +export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess =
  7681 + GetOrderErpOrderZoNingSelectUserAllResponse[200];
7832 /** 7682 /**
7833 * @description 7683 * @description
7834 - * 删除用户  
7835 - * @tags 系统:用户管理 7684 + * 查询所有销售
  7685 + * @tags order-zo-ning-controller
7836 * @produces * 7686 * @produces *
7837 - * @consumes application/json  
7838 */ 7687 */
7839 -export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {  
7840 - const method = 'post';  
7841 - const url = '/order/erp/users/delete';  
7842 - function request(  
7843 - option: PostOrderErpUsersDeleteOption,  
7844 - ): Promise<PostOrderErpUsersDeleteResponseSuccess> { 7688 +export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => {
  7689 + const method = 'get';
  7690 + const url = '/order/erp/orderZoNing/selectUserAll';
  7691 + function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> {
7845 return requester(request.url, { 7692 return requester(request.url, {
7846 method: request.method, 7693 method: request.method,
7847 - ...option,  
7848 - }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>; 7694 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>;
7849 } 7695 }
7850 7696
7851 /** http method */ 7697 /** http method */
@@ -7855,22 +7701,22 @@ export const postOrderErpUsersDelete = /* #__PURE__ */ (() =&gt; { @@ -7855,22 +7701,22 @@ export const postOrderErpUsersDelete = /* #__PURE__ */ (() =&gt; {
7855 return request; 7701 return request;
7856 })(); 7702 })();
7857 7703
7858 -/** @description request parameter type for postOrderErpUsersEdit */  
7859 -export interface PostOrderErpUsersEditOption { 7704 +/** @description request parameter type for postOrderErpProfitAnalysis */
  7705 +export interface PostOrderErpProfitAnalysisOption {
7860 /** 7706 /**
7861 * @description 7707 * @description
7862 - * userVO 7708 + * orderProfitAnalysisVo
7863 */ 7709 */
7864 body: { 7710 body: {
7865 /** 7711 /**
7866 @description 7712 @description
7867 - userVO */  
7868 - userVO: AdminUserVO; 7713 + orderProfitAnalysisVo */
  7714 + orderProfitAnalysisVo: OrderProfitAnalysisVo;
7869 }; 7715 };
7870 } 7716 }
7871 7717
7872 -/** @description response type for postOrderErpUsersEdit */  
7873 -export interface PostOrderErpUsersEditResponse { 7718 +/** @description response type for postOrderErpProfitAnalysis */
  7719 +export interface PostOrderErpProfitAnalysisResponse {
7874 /** 7720 /**
7875 * @description 7721 * @description
7876 * OK 7722 * OK
@@ -7898,25 +7744,25 @@ export interface PostOrderErpUsersEditResponse { @@ -7898,25 +7744,25 @@ export interface PostOrderErpUsersEditResponse {
7898 404: any; 7744 404: any;
7899 } 7745 }
7900 7746
7901 -export type PostOrderErpUsersEditResponseSuccess =  
7902 - PostOrderErpUsersEditResponse[200]; 7747 +export type PostOrderErpProfitAnalysisResponseSuccess =
  7748 + PostOrderErpProfitAnalysisResponse[200];
7903 /** 7749 /**
7904 * @description 7750 * @description
7905 - * 修改用户  
7906 - * @tags 系统:用户管理 7751 + * analysis
  7752 + * @tags order-profit-controller
7907 * @produces * 7753 * @produces *
7908 * @consumes application/json 7754 * @consumes application/json
7909 */ 7755 */
7910 -export const postOrderErpUsersEdit = /* #__PURE__ */ (() => { 7756 +export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => {
7911 const method = 'post'; 7757 const method = 'post';
7912 - const url = '/order/erp/users/edit'; 7758 + const url = '/order/erp/profit/analysis';
7913 function request( 7759 function request(
7914 - option: PostOrderErpUsersEditOption,  
7915 - ): Promise<PostOrderErpUsersEditResponseSuccess> { 7760 + option: PostOrderErpProfitAnalysisOption,
  7761 + ): Promise<PostOrderErpProfitAnalysisResponseSuccess> {
7916 return requester(request.url, { 7762 return requester(request.url, {
7917 method: request.method, 7763 method: request.method,
7918 ...option, 7764 ...option,
7919 - }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>; 7765 + }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>;
7920 } 7766 }
7921 7767
7922 /** http method */ 7768 /** http method */
@@ -7926,22 +7772,22 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() =&gt; { @@ -7926,22 +7772,22 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() =&gt; {
7926 return request; 7772 return request;
7927 })(); 7773 })();
7928 7774
7929 -/** @description request parameter type for postOrderErpUsersListByPage */  
7930 -export interface PostOrderErpUsersListByPageOption { 7775 +/** @description request parameter type for postOrderErpRolesAdd */
  7776 +export interface PostOrderErpRolesAddOption {
7931 /** 7777 /**
7932 * @description 7778 * @description
7933 - * queryVO 7779 + * roleVO
7934 */ 7780 */
7935 body: { 7781 body: {
7936 /** 7782 /**
7937 @description 7783 @description
7938 - queryVO */  
7939 - queryVO: AdminUserQueryVO; 7784 + roleVO */
  7785 + roleVO: AdminRoleVO;
7940 }; 7786 };
7941 } 7787 }
7942 7788
7943 -/** @description response type for postOrderErpUsersListByPage */  
7944 -export interface PostOrderErpUsersListByPageResponse { 7789 +/** @description response type for postOrderErpRolesAdd */
  7790 +export interface PostOrderErpRolesAddResponse {
7945 /** 7791 /**
7946 * @description 7792 * @description
7947 * OK 7793 * OK
@@ -7969,25 +7815,25 @@ export interface PostOrderErpUsersListByPageResponse { @@ -7969,25 +7815,25 @@ export interface PostOrderErpUsersListByPageResponse {
7969 404: any; 7815 404: any;
7970 } 7816 }
7971 7817
7972 -export type PostOrderErpUsersListByPageResponseSuccess =  
7973 - PostOrderErpUsersListByPageResponse[200]; 7818 +export type PostOrderErpRolesAddResponseSuccess =
  7819 + PostOrderErpRolesAddResponse[200];
7974 /** 7820 /**
7975 * @description 7821 * @description
7976 - * 查询用户  
7977 - * @tags 系统:用户管理 7822 + * 新增角色
  7823 + * @tags 系统:角色管理
7978 * @produces * 7824 * @produces *
7979 * @consumes application/json 7825 * @consumes application/json
7980 */ 7826 */
7981 -export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => { 7827 +export const postOrderErpRolesAdd = /* #__PURE__ */ (() => {
7982 const method = 'post'; 7828 const method = 'post';
7983 - const url = '/order/erp/users/list_by_page'; 7829 + const url = '/order/erp/roles/add';
7984 function request( 7830 function request(
7985 - option: PostOrderErpUsersListByPageOption,  
7986 - ): Promise<PostOrderErpUsersListByPageResponseSuccess> { 7831 + option: PostOrderErpRolesAddOption,
  7832 + ): Promise<PostOrderErpRolesAddResponseSuccess> {
7987 return requester(request.url, { 7833 return requester(request.url, {
7988 method: request.method, 7834 method: request.method,
7989 ...option, 7835 ...option,
7990 - }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>; 7836 + }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>;
7991 } 7837 }
7992 7838
7993 /** http method */ 7839 /** http method */
@@ -7997,22 +7843,22 @@ export const postOrderErpUsersListByPage = /* #__PURE__ */ (() =&gt; { @@ -7997,22 +7843,22 @@ export const postOrderErpUsersListByPage = /* #__PURE__ */ (() =&gt; {
7997 return request; 7843 return request;
7998 })(); 7844 })();
7999 7845
8000 -/** @description request parameter type for postOrderErpUsersReset */  
8001 -export interface PostOrderErpUsersResetOption { 7846 +/** @description request parameter type for postOrderErpRolesAll */
  7847 +export interface PostOrderErpRolesAllOption {
8002 /** 7848 /**
8003 * @description 7849 * @description
8004 - * resetPwdVO 7850 + * queryVO
8005 */ 7851 */
8006 body: { 7852 body: {
8007 /** 7853 /**
8008 @description 7854 @description
8009 - resetPwdVO */  
8010 - resetPwdVO: ResetPwdVO; 7855 + queryVO */
  7856 + queryVO: AdminRoleQueryVO;
8011 }; 7857 };
8012 } 7858 }
8013 7859
8014 -/** @description response type for postOrderErpUsersReset */  
8015 -export interface PostOrderErpUsersResetResponse { 7860 +/** @description response type for postOrderErpRolesAll */
  7861 +export interface PostOrderErpRolesAllResponse {
8016 /** 7862 /**
8017 * @description 7863 * @description
8018 * OK 7864 * OK
@@ -8040,25 +7886,25 @@ export interface PostOrderErpUsersResetResponse { @@ -8040,25 +7886,25 @@ export interface PostOrderErpUsersResetResponse {
8040 404: any; 7886 404: any;
8041 } 7887 }
8042 7888
8043 -export type PostOrderErpUsersResetResponseSuccess =  
8044 - PostOrderErpUsersResetResponse[200]; 7889 +export type PostOrderErpRolesAllResponseSuccess =
  7890 + PostOrderErpRolesAllResponse[200];
8045 /** 7891 /**
8046 * @description 7892 * @description
8047 - * 重置密码  
8048 - * @tags 系统:用户管理 7893 + * 返回全部的角色
  7894 + * @tags 系统:角色管理
8049 * @produces * 7895 * @produces *
8050 * @consumes application/json 7896 * @consumes application/json
8051 */ 7897 */
8052 -export const postOrderErpUsersReset = /* #__PURE__ */ (() => { 7898 +export const postOrderErpRolesAll = /* #__PURE__ */ (() => {
8053 const method = 'post'; 7899 const method = 'post';
8054 - const url = '/order/erp/users/reset'; 7900 + const url = '/order/erp/roles/all';
8055 function request( 7901 function request(
8056 - option: PostOrderErpUsersResetOption,  
8057 - ): Promise<PostOrderErpUsersResetResponseSuccess> { 7902 + option: PostOrderErpRolesAllOption,
  7903 + ): Promise<PostOrderErpRolesAllResponseSuccess> {
8058 return requester(request.url, { 7904 return requester(request.url, {
8059 method: request.method, 7905 method: request.method,
8060 ...option, 7906 ...option,
8061 - }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>; 7907 + }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>;
8062 } 7908 }
8063 7909
8064 /** http method */ 7910 /** http method */
@@ -8068,22 +7914,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() =&gt; { @@ -8068,22 +7914,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() =&gt; {
8068 return request; 7914 return request;
8069 })(); 7915 })();
8070 7916
8071 -/** @description request parameter type for postOrderErpUsersUpdatePass */  
8072 -export interface PostOrderErpUsersUpdatePassOption { 7917 +/** @description request parameter type for postOrderErpRolesAuthMenu */
  7918 +export interface PostOrderErpRolesAuthMenuOption {
8073 /** 7919 /**
8074 * @description 7920 * @description
8075 - * pwdVO 7921 + * roleVO
8076 */ 7922 */
8077 body: { 7923 body: {
8078 /** 7924 /**
8079 @description 7925 @description
8080 - pwdVO */  
8081 - pwdVO: UpdatePwdVO; 7926 + roleVO */
  7927 + roleVO: AdminAuthRoleVO;
8082 }; 7928 };
8083 } 7929 }
8084 7930
8085 -/** @description response type for postOrderErpUsersUpdatePass */  
8086 -export interface PostOrderErpUsersUpdatePassResponse { 7931 +/** @description response type for postOrderErpRolesAuthMenu */
  7932 +export interface PostOrderErpRolesAuthMenuResponse {
8087 /** 7933 /**
8088 * @description 7934 * @description
8089 * OK 7935 * OK
@@ -8111,25 +7957,25 @@ export interface PostOrderErpUsersUpdatePassResponse { @@ -8111,25 +7957,25 @@ export interface PostOrderErpUsersUpdatePassResponse {
8111 404: any; 7957 404: any;
8112 } 7958 }
8113 7959
8114 -export type PostOrderErpUsersUpdatePassResponseSuccess =  
8115 - PostOrderErpUsersUpdatePassResponse[200]; 7960 +export type PostOrderErpRolesAuthMenuResponseSuccess =
  7961 + PostOrderErpRolesAuthMenuResponse[200];
8116 /** 7962 /**
8117 * @description 7963 * @description
8118 - * 修改密码  
8119 - * @tags 系统:用户管理 7964 + * 授权角色菜单
  7965 + * @tags 系统:角色管理
8120 * @produces * 7966 * @produces *
8121 * @consumes application/json 7967 * @consumes application/json
8122 */ 7968 */
8123 -export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { 7969 +export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => {
8124 const method = 'post'; 7970 const method = 'post';
8125 - const url = '/order/erp/users/update_pass'; 7971 + const url = '/order/erp/roles/auth_menu';
8126 function request( 7972 function request(
8127 - option: PostOrderErpUsersUpdatePassOption,  
8128 - ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> { 7973 + option: PostOrderErpRolesAuthMenuOption,
  7974 + ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> {
8129 return requester(request.url, { 7975 return requester(request.url, {
8130 method: request.method, 7976 method: request.method,
8131 ...option, 7977 ...option,
8132 - }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>; 7978 + }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>;
8133 } 7979 }
8134 7980
8135 /** http method */ 7981 /** http method */
@@ -8139,22 +7985,22 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() =&gt; { @@ -8139,22 +7985,22 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() =&gt; {
8139 return request; 7985 return request;
8140 })(); 7986 })();
8141 7987
8142 -/** @description request parameter type for postOrderImportImportInvoiceProject */  
8143 -export interface PostOrderImportImportInvoiceProjectOption { 7988 +/** @description request parameter type for postOrderErpRolesDelete */
  7989 +export interface PostOrderErpRolesDeleteOption {
8144 /** 7990 /**
8145 * @description 7991 * @description
8146 - * file 7992 + * queryVO
8147 */ 7993 */
8148 - formData: { 7994 + body: {
8149 /** 7995 /**
8150 @description 7996 @description
8151 - file */  
8152 - file: File; 7997 + queryVO */
  7998 + queryVO: AdminRoleQueryVO;
8153 }; 7999 };
8154 } 8000 }
8155 8001
8156 -/** @description response type for postOrderImportImportInvoiceProject */  
8157 -export interface PostOrderImportImportInvoiceProjectResponse { 8002 +/** @description response type for postOrderErpRolesDelete */
  8003 +export interface PostOrderErpRolesDeleteResponse {
8158 /** 8004 /**
8159 * @description 8005 * @description
8160 * OK 8006 * OK
@@ -8182,25 +8028,25 @@ export interface PostOrderImportImportInvoiceProjectResponse { @@ -8182,25 +8028,25 @@ export interface PostOrderImportImportInvoiceProjectResponse {
8182 404: any; 8028 404: any;
8183 } 8029 }
8184 8030
8185 -export type PostOrderImportImportInvoiceProjectResponseSuccess =  
8186 - PostOrderImportImportInvoiceProjectResponse[200]; 8031 +export type PostOrderErpRolesDeleteResponseSuccess =
  8032 + PostOrderErpRolesDeleteResponse[200];
8187 /** 8033 /**
8188 * @description 8034 * @description
8189 - * 导入发票项目  
8190 - * @tags 导入 8035 + * 删除角色
  8036 + * @tags 系统:角色管理
8191 * @produces * 8037 * @produces *
8192 - * @consumes multipart/form-data 8038 + * @consumes application/json
8193 */ 8039 */
8194 -export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() => { 8040 +export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {
8195 const method = 'post'; 8041 const method = 'post';
8196 - const url = '/order/import/importInvoiceProject'; 8042 + const url = '/order/erp/roles/delete';
8197 function request( 8043 function request(
8198 - option: PostOrderImportImportInvoiceProjectOption,  
8199 - ): Promise<PostOrderImportImportInvoiceProjectResponseSuccess> { 8044 + option: PostOrderErpRolesDeleteOption,
  8045 + ): Promise<PostOrderErpRolesDeleteResponseSuccess> {
8200 return requester(request.url, { 8046 return requester(request.url, {
8201 method: request.method, 8047 method: request.method,
8202 ...option, 8048 ...option,
8203 - }) as unknown as Promise<PostOrderImportImportInvoiceProjectResponseSuccess>; 8049 + }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>;
8204 } 8050 }
8205 8051
8206 /** http method */ 8052 /** http method */
@@ -8210,22 +8056,22 @@ export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() =&gt; { @@ -8210,22 +8056,22 @@ export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() =&gt; {
8210 return request; 8056 return request;
8211 })(); 8057 })();
8212 8058
8213 -/** @description request parameter type for postOrderImportImportWeightAndVolume */  
8214 -export interface PostOrderImportImportWeightAndVolumeOption { 8059 +/** @description request parameter type for postOrderErpRolesDetail */
  8060 +export interface PostOrderErpRolesDetailOption {
8215 /** 8061 /**
8216 * @description 8062 * @description
8217 - * file 8063 + * queryVO
8218 */ 8064 */
8219 - formData: { 8065 + body: {
8220 /** 8066 /**
8221 @description 8067 @description
8222 - file */  
8223 - file: File; 8068 + queryVO */
  8069 + queryVO: AdminRoleQueryVO;
8224 }; 8070 };
8225 } 8071 }
8226 8072
8227 -/** @description response type for postOrderImportImportWeightAndVolume */  
8228 -export interface PostOrderImportImportWeightAndVolumeResponse { 8073 +/** @description response type for postOrderErpRolesDetail */
  8074 +export interface PostOrderErpRolesDetailResponse {
8229 /** 8075 /**
8230 * @description 8076 * @description
8231 * OK 8077 * OK
@@ -8253,25 +8099,25 @@ export interface PostOrderImportImportWeightAndVolumeResponse { @@ -8253,25 +8099,25 @@ export interface PostOrderImportImportWeightAndVolumeResponse {
8253 404: any; 8099 404: any;
8254 } 8100 }
8255 8101
8256 -export type PostOrderImportImportWeightAndVolumeResponseSuccess =  
8257 - PostOrderImportImportWeightAndVolumeResponse[200]; 8102 +export type PostOrderErpRolesDetailResponseSuccess =
  8103 + PostOrderErpRolesDetailResponse[200];
8258 /** 8104 /**
8259 * @description 8105 * @description
8260 - * 导入重量和体积  
8261 - * @tags 导入 8106 + * 获取单个role
  8107 + * @tags 系统:角色管理
8262 * @produces * 8108 * @produces *
8263 - * @consumes multipart/form-data 8109 + * @consumes application/json
8264 */ 8110 */
8265 -export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => { 8111 +export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {
8266 const method = 'post'; 8112 const method = 'post';
8267 - const url = '/order/import/importWeightAndVolume'; 8113 + const url = '/order/erp/roles/detail';
8268 function request( 8114 function request(
8269 - option: PostOrderImportImportWeightAndVolumeOption,  
8270 - ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> { 8115 + option: PostOrderErpRolesDetailOption,
  8116 + ): Promise<PostOrderErpRolesDetailResponseSuccess> {
8271 return requester(request.url, { 8117 return requester(request.url, {
8272 method: request.method, 8118 method: request.method,
8273 ...option, 8119 ...option,
8274 - }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>; 8120 + }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>;
8275 } 8121 }
8276 8122
8277 /** http method */ 8123 /** http method */
@@ -8281,22 +8127,22 @@ export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() =&gt; { @@ -8281,22 +8127,22 @@ export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() =&gt; {
8281 return request; 8127 return request;
8282 })(); 8128 })();
8283 8129
8284 -/** @description request parameter type for postPrepaidAudit */  
8285 -export interface PostPrepaidAuditOption { 8130 +/** @description request parameter type for postOrderErpRolesEdit */
  8131 +export interface PostOrderErpRolesEditOption {
8286 /** 8132 /**
8287 * @description 8133 * @description
8288 - * request 8134 + * roleVO
8289 */ 8135 */
8290 body: { 8136 body: {
8291 /** 8137 /**
8292 @description 8138 @description
8293 - request */  
8294 - request: SalesRechargePrepaymentAuditRequest; 8139 + roleVO */
  8140 + roleVO: AdminRoleVO;
8295 }; 8141 };
8296 } 8142 }
8297 8143
8298 -/** @description response type for postPrepaidAudit */  
8299 -export interface PostPrepaidAuditResponse { 8144 +/** @description response type for postOrderErpRolesEdit */
  8145 +export interface PostOrderErpRolesEditResponse {
8300 /** 8146 /**
8301 * @description 8147 * @description
8302 * OK 8148 * OK
@@ -8324,24 +8170,25 @@ export interface PostPrepaidAuditResponse { @@ -8324,24 +8170,25 @@ export interface PostPrepaidAuditResponse {
8324 404: any; 8170 404: any;
8325 } 8171 }
8326 8172
8327 -export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200]; 8173 +export type PostOrderErpRolesEditResponseSuccess =
  8174 + PostOrderErpRolesEditResponse[200];
8328 /** 8175 /**
8329 * @description 8176 * @description
8330 - * 财务审核  
8331 - * @tags prepaid-controller 8177 + * 修改角色
  8178 + * @tags 系统:角色管理
8332 * @produces * 8179 * @produces *
8333 * @consumes application/json 8180 * @consumes application/json
8334 */ 8181 */
8335 -export const postPrepaidAudit = /* #__PURE__ */ (() => { 8182 +export const postOrderErpRolesEdit = /* #__PURE__ */ (() => {
8336 const method = 'post'; 8183 const method = 'post';
8337 - const url = '/prepaid/audit'; 8184 + const url = '/order/erp/roles/edit';
8338 function request( 8185 function request(
8339 - option: PostPrepaidAuditOption,  
8340 - ): Promise<PostPrepaidAuditResponseSuccess> { 8186 + option: PostOrderErpRolesEditOption,
  8187 + ): Promise<PostOrderErpRolesEditResponseSuccess> {
8341 return requester(request.url, { 8188 return requester(request.url, {
8342 method: request.method, 8189 method: request.method,
8343 ...option, 8190 ...option,
8344 - }) as unknown as Promise<PostPrepaidAuditResponseSuccess>; 8191 + }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>;
8345 } 8192 }
8346 8193
8347 /** http method */ 8194 /** http method */
@@ -8351,22 +8198,22 @@ export const postPrepaidAudit = /* #__PURE__ */ (() =&gt; { @@ -8351,22 +8198,22 @@ export const postPrepaidAudit = /* #__PURE__ */ (() =&gt; {
8351 return request; 8198 return request;
8352 })(); 8199 })();
8353 8200
8354 -/** @description request parameter type for postPrepaidCreate */  
8355 -export interface PostPrepaidCreateOption { 8201 +/** @description request parameter type for postOrderErpRolesListByPage */
  8202 +export interface PostOrderErpRolesListByPageOption {
8356 /** 8203 /**
8357 * @description 8204 * @description
8358 - * request 8205 + * queryVO
8359 */ 8206 */
8360 body: { 8207 body: {
8361 /** 8208 /**
8362 @description 8209 @description
8363 - request */  
8364 - request: SalesRechargePrepaymentCreateRequest; 8210 + queryVO */
  8211 + queryVO: AdminRoleQueryVO;
8365 }; 8212 };
8366 } 8213 }
8367 8214
8368 -/** @description response type for postPrepaidCreate */  
8369 -export interface PostPrepaidCreateResponse { 8215 +/** @description response type for postOrderErpRolesListByPage */
  8216 +export interface PostOrderErpRolesListByPageResponse {
8370 /** 8217 /**
8371 * @description 8218 * @description
8372 * OK 8219 * OK
@@ -8394,24 +8241,25 @@ export interface PostPrepaidCreateResponse { @@ -8394,24 +8241,25 @@ export interface PostPrepaidCreateResponse {
8394 404: any; 8241 404: any;
8395 } 8242 }
8396 8243
8397 -export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200]; 8244 +export type PostOrderErpRolesListByPageResponseSuccess =
  8245 + PostOrderErpRolesListByPageResponse[200];
8398 /** 8246 /**
8399 * @description 8247 * @description
8400 - * 新增预存  
8401 - * @tags prepaid-controller 8248 + * 查询角色
  8249 + * @tags 系统:角色管理
8402 * @produces * 8250 * @produces *
8403 * @consumes application/json 8251 * @consumes application/json
8404 */ 8252 */
8405 -export const postPrepaidCreate = /* #__PURE__ */ (() => { 8253 +export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {
8406 const method = 'post'; 8254 const method = 'post';
8407 - const url = '/prepaid/create'; 8255 + const url = '/order/erp/roles/list_by_page';
8408 function request( 8256 function request(
8409 - option: PostPrepaidCreateOption,  
8410 - ): Promise<PostPrepaidCreateResponseSuccess> { 8257 + option: PostOrderErpRolesListByPageOption,
  8258 + ): Promise<PostOrderErpRolesListByPageResponseSuccess> {
8411 return requester(request.url, { 8259 return requester(request.url, {
8412 method: request.method, 8260 method: request.method,
8413 ...option, 8261 ...option,
8414 - }) as unknown as Promise<PostPrepaidCreateResponseSuccess>; 8262 + }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>;
8415 } 8263 }
8416 8264
8417 /** http method */ 8265 /** http method */
@@ -8421,22 +8269,22 @@ export const postPrepaidCreate = /* #__PURE__ */ (() =&gt; { @@ -8421,22 +8269,22 @@ export const postPrepaidCreate = /* #__PURE__ */ (() =&gt; {
8421 return request; 8269 return request;
8422 })(); 8270 })();
8423 8271
8424 -/** @description request parameter type for postPrepaidDelete */  
8425 -export interface PostPrepaidDeleteOption { 8272 +/** @description request parameter type for postOrderErpUsersAdd */
  8273 +export interface PostOrderErpUsersAddOption {
8426 /** 8274 /**
8427 * @description 8275 * @description
8428 - * request 8276 + * userVO
8429 */ 8277 */
8430 body: { 8278 body: {
8431 /** 8279 /**
8432 @description 8280 @description
8433 - request */  
8434 - request: SalesRechargePrepaymentDeleteRequest; 8281 + userVO */
  8282 + userVO: AdminUserVO;
8435 }; 8283 };
8436 } 8284 }
8437 8285
8438 -/** @description response type for postPrepaidDelete */  
8439 -export interface PostPrepaidDeleteResponse { 8286 +/** @description response type for postOrderErpUsersAdd */
  8287 +export interface PostOrderErpUsersAddResponse {
8440 /** 8288 /**
8441 * @description 8289 * @description
8442 * OK 8290 * OK
@@ -8464,24 +8312,25 @@ export interface PostPrepaidDeleteResponse { @@ -8464,24 +8312,25 @@ export interface PostPrepaidDeleteResponse {
8464 404: any; 8312 404: any;
8465 } 8313 }
8466 8314
8467 -export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200]; 8315 +export type PostOrderErpUsersAddResponseSuccess =
  8316 + PostOrderErpUsersAddResponse[200];
8468 /** 8317 /**
8469 * @description 8318 * @description
8470 - * 删除预存  
8471 - * @tags prepaid-controller 8319 + * 新增用户
  8320 + * @tags 系统:用户管理
8472 * @produces * 8321 * @produces *
8473 * @consumes application/json 8322 * @consumes application/json
8474 */ 8323 */
8475 -export const postPrepaidDelete = /* #__PURE__ */ (() => { 8324 +export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {
8476 const method = 'post'; 8325 const method = 'post';
8477 - const url = '/prepaid/delete'; 8326 + const url = '/order/erp/users/add';
8478 function request( 8327 function request(
8479 - option: PostPrepaidDeleteOption,  
8480 - ): Promise<PostPrepaidDeleteResponseSuccess> { 8328 + option: PostOrderErpUsersAddOption,
  8329 + ): Promise<PostOrderErpUsersAddResponseSuccess> {
8481 return requester(request.url, { 8330 return requester(request.url, {
8482 method: request.method, 8331 method: request.method,
8483 ...option, 8332 ...option,
8484 - }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>; 8333 + }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>;
8485 } 8334 }
8486 8335
8487 /** http method */ 8336 /** http method */
@@ -8491,22 +8340,22 @@ export const postPrepaidDelete = /* #__PURE__ */ (() =&gt; { @@ -8491,22 +8340,22 @@ export const postPrepaidDelete = /* #__PURE__ */ (() =&gt; {
8491 return request; 8340 return request;
8492 })(); 8341 })();
8493 8342
8494 -/** @description request parameter type for postPrepaidList */  
8495 -export interface PostPrepaidListOption { 8343 +/** @description request parameter type for postOrderErpUsersAuthRole */
  8344 +export interface PostOrderErpUsersAuthRoleOption {
8496 /** 8345 /**
8497 * @description 8346 * @description
8498 - * request 8347 + * userVO
8499 */ 8348 */
8500 body: { 8349 body: {
8501 /** 8350 /**
8502 @description 8351 @description
8503 - request */  
8504 - request: SalesRechargePrepaymentRequest; 8352 + userVO */
  8353 + userVO: AdminAuthUserVO;
8505 }; 8354 };
8506 } 8355 }
8507 8356
8508 -/** @description response type for postPrepaidList */  
8509 -export interface PostPrepaidListResponse { 8357 +/** @description response type for postOrderErpUsersAuthRole */
  8358 +export interface PostOrderErpUsersAuthRoleResponse {
8510 /** 8359 /**
8511 * @description 8360 * @description
8512 * OK 8361 * OK
@@ -8534,24 +8383,25 @@ export interface PostPrepaidListResponse { @@ -8534,24 +8383,25 @@ export interface PostPrepaidListResponse {
8534 404: any; 8383 404: any;
8535 } 8384 }
8536 8385
8537 -export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200]; 8386 +export type PostOrderErpUsersAuthRoleResponseSuccess =
  8387 + PostOrderErpUsersAuthRoleResponse[200];
8538 /** 8388 /**
8539 * @description 8389 * @description
8540 - * 查询列表  
8541 - * @tags prepaid-controller 8390 + * 授权角色
  8391 + * @tags 系统:用户管理
8542 * @produces * 8392 * @produces *
8543 * @consumes application/json 8393 * @consumes application/json
8544 */ 8394 */
8545 -export const postPrepaidList = /* #__PURE__ */ (() => { 8395 +export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {
8546 const method = 'post'; 8396 const method = 'post';
8547 - const url = '/prepaid/list'; 8397 + const url = '/order/erp/users/auth_role';
8548 function request( 8398 function request(
8549 - option: PostPrepaidListOption,  
8550 - ): Promise<PostPrepaidListResponseSuccess> { 8399 + option: PostOrderErpUsersAuthRoleOption,
  8400 + ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {
8551 return requester(request.url, { 8401 return requester(request.url, {
8552 method: request.method, 8402 method: request.method,
8553 ...option, 8403 ...option,
8554 - }) as unknown as Promise<PostPrepaidListResponseSuccess>; 8404 + }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>;
8555 } 8405 }
8556 8406
8557 /** http method */ 8407 /** http method */
@@ -8561,22 +8411,22 @@ export const postPrepaidList = /* #__PURE__ */ (() =&gt; { @@ -8561,22 +8411,22 @@ export const postPrepaidList = /* #__PURE__ */ (() =&gt; {
8561 return request; 8411 return request;
8562 })(); 8412 })();
8563 8413
8564 -/** @description request parameter type for postPrepaidUpdate */  
8565 -export interface PostPrepaidUpdateOption { 8414 +/** @description request parameter type for postOrderErpUsersDelete */
  8415 +export interface PostOrderErpUsersDeleteOption {
8566 /** 8416 /**
8567 * @description 8417 * @description
8568 - * request 8418 + * queryVO
8569 */ 8419 */
8570 body: { 8420 body: {
8571 /** 8421 /**
8572 @description 8422 @description
8573 - request */  
8574 - request: SalesRechargePrepaymentUpdateRequest; 8423 + queryVO */
  8424 + queryVO: AdminUserQueryVO;
8575 }; 8425 };
8576 } 8426 }
8577 8427
8578 -/** @description response type for postPrepaidUpdate */  
8579 -export interface PostPrepaidUpdateResponse { 8428 +/** @description response type for postOrderErpUsersDelete */
  8429 +export interface PostOrderErpUsersDeleteResponse {
8580 /** 8430 /**
8581 * @description 8431 * @description
8582 * OK 8432 * OK
@@ -8604,24 +8454,25 @@ export interface PostPrepaidUpdateResponse { @@ -8604,24 +8454,25 @@ export interface PostPrepaidUpdateResponse {
8604 404: any; 8454 404: any;
8605 } 8455 }
8606 8456
8607 -export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; 8457 +export type PostOrderErpUsersDeleteResponseSuccess =
  8458 + PostOrderErpUsersDeleteResponse[200];
8608 /** 8459 /**
8609 * @description 8460 * @description
8610 - * 修改预存  
8611 - * @tags prepaid-controller 8461 + * 删除用户
  8462 + * @tags 系统:用户管理
8612 * @produces * 8463 * @produces *
8613 * @consumes application/json 8464 * @consumes application/json
8614 */ 8465 */
8615 -export const postPrepaidUpdate = /* #__PURE__ */ (() => { 8466 +export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {
8616 const method = 'post'; 8467 const method = 'post';
8617 - const url = '/prepaid/update'; 8468 + const url = '/order/erp/users/delete';
8618 function request( 8469 function request(
8619 - option: PostPrepaidUpdateOption,  
8620 - ): Promise<PostPrepaidUpdateResponseSuccess> { 8470 + option: PostOrderErpUsersDeleteOption,
  8471 + ): Promise<PostOrderErpUsersDeleteResponseSuccess> {
8621 return requester(request.url, { 8472 return requester(request.url, {
8622 method: request.method, 8473 method: request.method,
8623 ...option, 8474 ...option,
8624 - }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; 8475 + }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>;
8625 } 8476 }
8626 8477
8627 /** http method */ 8478 /** http method */
@@ -8631,22 +8482,22 @@ export const postPrepaidUpdate = /* #__PURE__ */ (() =&gt; { @@ -8631,22 +8482,22 @@ export const postPrepaidUpdate = /* #__PURE__ */ (() =&gt; {
8631 return request; 8482 return request;
8632 })(); 8483 })();
8633 8484
8634 -/** @description request parameter type for postServiceBankStatementDeleteBankStatement */  
8635 -export interface PostServiceBankStatementDeleteBankStatementOption { 8485 +/** @description request parameter type for postOrderErpUsersEdit */
  8486 +export interface PostOrderErpUsersEditOption {
8636 /** 8487 /**
8637 * @description 8488 * @description
8638 - * dto 8489 + * userVO
8639 */ 8490 */
8640 body: { 8491 body: {
8641 /** 8492 /**
8642 @description 8493 @description
8643 - dto */  
8644 - dto: Dto; 8494 + userVO */
  8495 + userVO: AdminUserVO;
8645 }; 8496 };
8646 } 8497 }
8647 8498
8648 -/** @description response type for postServiceBankStatementDeleteBankStatement */  
8649 -export interface PostServiceBankStatementDeleteBankStatementResponse { 8499 +/** @description response type for postOrderErpUsersEdit */
  8500 +export interface PostOrderErpUsersEditResponse {
8650 /** 8501 /**
8651 * @description 8502 * @description
8652 * OK 8503 * OK
@@ -8674,51 +8525,50 @@ export interface PostServiceBankStatementDeleteBankStatementResponse { @@ -8674,51 +8525,50 @@ export interface PostServiceBankStatementDeleteBankStatementResponse {
8674 404: any; 8525 404: any;
8675 } 8526 }
8676 8527
8677 -export type PostServiceBankStatementDeleteBankStatementResponseSuccess =  
8678 - PostServiceBankStatementDeleteBankStatementResponse[200]; 8528 +export type PostOrderErpUsersEditResponseSuccess =
  8529 + PostOrderErpUsersEditResponse[200];
8679 /** 8530 /**
8680 * @description 8531 * @description
8681 - * 删除银行流水  
8682 - * @tags 银行流水 8532 + * 修改用户
  8533 + * @tags 系统:用户管理
8683 * @produces * 8534 * @produces *
8684 * @consumes application/json 8535 * @consumes application/json
8685 */ 8536 */
8686 -export const postServiceBankStatementDeleteBankStatement =  
8687 - /* #__PURE__ */ (() => {  
8688 - const method = 'post';  
8689 - const url = '/service/bankStatement/deleteBankStatement';  
8690 - function request(  
8691 - option: PostServiceBankStatementDeleteBankStatementOption,  
8692 - ): Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess> {  
8693 - return requester(request.url, {  
8694 - method: request.method,  
8695 - ...option,  
8696 - }) as unknown as Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess>;  
8697 - } 8537 +export const postOrderErpUsersEdit = /* #__PURE__ */ (() => {
  8538 + const method = 'post';
  8539 + const url = '/order/erp/users/edit';
  8540 + function request(
  8541 + option: PostOrderErpUsersEditOption,
  8542 + ): Promise<PostOrderErpUsersEditResponseSuccess> {
  8543 + return requester(request.url, {
  8544 + method: request.method,
  8545 + ...option,
  8546 + }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>;
  8547 + }
8698 8548
8699 - /** http method */  
8700 - request.method = method;  
8701 - /** request url */  
8702 - request.url = url;  
8703 - return request;  
8704 - })(); 8549 + /** http method */
  8550 + request.method = method;
  8551 + /** request url */
  8552 + request.url = url;
  8553 + return request;
  8554 +})();
8705 8555
8706 -/** @description request parameter type for postServiceBankStatementEditBankStatement */  
8707 -export interface PostServiceBankStatementEditBankStatementOption { 8556 +/** @description request parameter type for postOrderErpUsersListByPage */
  8557 +export interface PostOrderErpUsersListByPageOption {
8708 /** 8558 /**
8709 * @description 8559 * @description
8710 - * dto 8560 + * queryVO
8711 */ 8561 */
8712 body: { 8562 body: {
8713 /** 8563 /**
8714 @description 8564 @description
8715 - dto */  
8716 - dto: Dto; 8565 + queryVO */
  8566 + queryVO: AdminUserQueryVO;
8717 }; 8567 };
8718 } 8568 }
8719 8569
8720 -/** @description response type for postServiceBankStatementEditBankStatement */  
8721 -export interface PostServiceBankStatementEditBankStatementResponse { 8570 +/** @description response type for postOrderErpUsersListByPage */
  8571 +export interface PostOrderErpUsersListByPageResponse {
8722 /** 8572 /**
8723 * @description 8573 * @description
8724 * OK 8574 * OK
@@ -8746,42 +8596,55 @@ export interface PostServiceBankStatementEditBankStatementResponse { @@ -8746,42 +8596,55 @@ export interface PostServiceBankStatementEditBankStatementResponse {
8746 404: any; 8596 404: any;
8747 } 8597 }
8748 8598
8749 -export type PostServiceBankStatementEditBankStatementResponseSuccess =  
8750 - PostServiceBankStatementEditBankStatementResponse[200]; 8599 +export type PostOrderErpUsersListByPageResponseSuccess =
  8600 + PostOrderErpUsersListByPageResponse[200];
8751 /** 8601 /**
8752 * @description 8602 * @description
8753 - * 编辑银行流水  
8754 - * @tags 银行流水 8603 + * 查询用户
  8604 + * @tags 系统:用户管理
8755 * @produces * 8605 * @produces *
8756 * @consumes application/json 8606 * @consumes application/json
8757 */ 8607 */
8758 -export const postServiceBankStatementEditBankStatement =  
8759 - /* #__PURE__ */ (() => {  
8760 - const method = 'post';  
8761 - const url = '/service/bankStatement/editBankStatement';  
8762 - function request(  
8763 - option: PostServiceBankStatementEditBankStatementOption,  
8764 - ): Promise<PostServiceBankStatementEditBankStatementResponseSuccess> {  
8765 - return requester(request.url, {  
8766 - method: request.method,  
8767 - ...option,  
8768 - }) as unknown as Promise<PostServiceBankStatementEditBankStatementResponseSuccess>;  
8769 - } 8608 +export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => {
  8609 + const method = 'post';
  8610 + const url = '/order/erp/users/list_by_page';
  8611 + function request(
  8612 + option: PostOrderErpUsersListByPageOption,
  8613 + ): Promise<PostOrderErpUsersListByPageResponseSuccess> {
  8614 + return requester(request.url, {
  8615 + method: request.method,
  8616 + ...option,
  8617 + }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>;
  8618 + }
8770 8619
8771 - /** http method */  
8772 - request.method = method;  
8773 - /** request url */  
8774 - request.url = url;  
8775 - return request;  
8776 - })(); 8620 + /** http method */
  8621 + request.method = method;
  8622 + /** request url */
  8623 + request.url = url;
  8624 + return request;
  8625 +})();
8777 8626
8778 -/** @description response type for postServiceBankStatementExportTemplate */  
8779 -export interface PostServiceBankStatementExportTemplateResponse { 8627 +/** @description request parameter type for postOrderErpUsersReset */
  8628 +export interface PostOrderErpUsersResetOption {
  8629 + /**
  8630 + * @description
  8631 + * resetPwdVO
  8632 + */
  8633 + body: {
  8634 + /**
  8635 + @description
  8636 + resetPwdVO */
  8637 + resetPwdVO: ResetPwdVO;
  8638 + };
  8639 +}
  8640 +
  8641 +/** @description response type for postOrderErpUsersReset */
  8642 +export interface PostOrderErpUsersResetResponse {
8780 /** 8643 /**
8781 * @description 8644 * @description
8782 * OK 8645 * OK
8783 */ 8646 */
8784 - 200: any; 8647 + 200: ServerResult;
8785 /** 8648 /**
8786 * @description 8649 * @description
8787 * Created 8650 * Created
@@ -8804,22 +8667,25 @@ export interface PostServiceBankStatementExportTemplateResponse { @@ -8804,22 +8667,25 @@ export interface PostServiceBankStatementExportTemplateResponse {
8804 404: any; 8667 404: any;
8805 } 8668 }
8806 8669
8807 -export type PostServiceBankStatementExportTemplateResponseSuccess =  
8808 - PostServiceBankStatementExportTemplateResponse[200]; 8670 +export type PostOrderErpUsersResetResponseSuccess =
  8671 + PostOrderErpUsersResetResponse[200];
8809 /** 8672 /**
8810 * @description 8673 * @description
8811 - * 下载银行流水模板  
8812 - * @tags 银行流水 8674 + * 重置密码
  8675 + * @tags 系统:用户管理
8813 * @produces * 8676 * @produces *
8814 * @consumes application/json 8677 * @consumes application/json
8815 */ 8678 */
8816 -export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() => { 8679 +export const postOrderErpUsersReset = /* #__PURE__ */ (() => {
8817 const method = 'post'; 8680 const method = 'post';
8818 - const url = '/service/bankStatement/exportTemplate';  
8819 - function request(): Promise<PostServiceBankStatementExportTemplateResponseSuccess> { 8681 + const url = '/order/erp/users/reset';
  8682 + function request(
  8683 + option: PostOrderErpUsersResetOption,
  8684 + ): Promise<PostOrderErpUsersResetResponseSuccess> {
8820 return requester(request.url, { 8685 return requester(request.url, {
8821 method: request.method, 8686 method: request.method,
8822 - }) as unknown as Promise<PostServiceBankStatementExportTemplateResponseSuccess>; 8687 + ...option,
  8688 + }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>;
8823 } 8689 }
8824 8690
8825 /** http method */ 8691 /** http method */
@@ -8829,22 +8695,22 @@ export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() =&gt; { @@ -8829,22 +8695,22 @@ export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() =&gt; {
8829 return request; 8695 return request;
8830 })(); 8696 })();
8831 8697
8832 -/** @description request parameter type for postServiceBankStatementImportBankStatementForm */  
8833 -export interface PostServiceBankStatementImportBankStatementFormOption { 8698 +/** @description request parameter type for postOrderErpUsersUpdatePass */
  8699 +export interface PostOrderErpUsersUpdatePassOption {
8834 /** 8700 /**
8835 * @description 8701 * @description
8836 - * file 8702 + * pwdVO
8837 */ 8703 */
8838 - formData: { 8704 + body: {
8839 /** 8705 /**
8840 @description 8706 @description
8841 - file */  
8842 - file: File; 8707 + pwdVO */
  8708 + pwdVO: UpdatePwdVO;
8843 }; 8709 };
8844 } 8710 }
8845 8711
8846 -/** @description response type for postServiceBankStatementImportBankStatementForm */  
8847 -export interface PostServiceBankStatementImportBankStatementFormResponse { 8712 +/** @description response type for postOrderErpUsersUpdatePass */
  8713 +export interface PostOrderErpUsersUpdatePassResponse {
8848 /** 8714 /**
8849 * @description 8715 * @description
8850 * OK 8716 * OK
@@ -8872,51 +8738,50 @@ export interface PostServiceBankStatementImportBankStatementFormResponse { @@ -8872,51 +8738,50 @@ export interface PostServiceBankStatementImportBankStatementFormResponse {
8872 404: any; 8738 404: any;
8873 } 8739 }
8874 8740
8875 -export type PostServiceBankStatementImportBankStatementFormResponseSuccess =  
8876 - PostServiceBankStatementImportBankStatementFormResponse[200]; 8741 +export type PostOrderErpUsersUpdatePassResponseSuccess =
  8742 + PostOrderErpUsersUpdatePassResponse[200];
8877 /** 8743 /**
8878 * @description 8744 * @description
8879 - * 导入银行流水表格  
8880 - * @tags 银行流水 8745 + * 修改密码
  8746 + * @tags 系统:用户管理
8881 * @produces * 8747 * @produces *
8882 - * @consumes multipart/form-data 8748 + * @consumes application/json
8883 */ 8749 */
8884 -export const postServiceBankStatementImportBankStatementForm =  
8885 - /* #__PURE__ */ (() => {  
8886 - const method = 'post';  
8887 - const url = '/service/bankStatement/importBankStatementForm';  
8888 - function request(  
8889 - option: PostServiceBankStatementImportBankStatementFormOption,  
8890 - ): Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess> {  
8891 - return requester(request.url, {  
8892 - method: request.method,  
8893 - ...option,  
8894 - }) as unknown as Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess>;  
8895 - } 8750 +export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => {
  8751 + const method = 'post';
  8752 + const url = '/order/erp/users/update_pass';
  8753 + function request(
  8754 + option: PostOrderErpUsersUpdatePassOption,
  8755 + ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> {
  8756 + return requester(request.url, {
  8757 + method: request.method,
  8758 + ...option,
  8759 + }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>;
  8760 + }
8896 8761
8897 - /** http method */  
8898 - request.method = method;  
8899 - /** request url */  
8900 - request.url = url;  
8901 - return request;  
8902 - })(); 8762 + /** http method */
  8763 + request.method = method;
  8764 + /** request url */
  8765 + request.url = url;
  8766 + return request;
  8767 +})();
8903 8768
8904 -/** @description request parameter type for postServiceBankStatementQueryBankStatement */  
8905 -export interface PostServiceBankStatementQueryBankStatementOption { 8769 +/** @description request parameter type for postOrderImportImportWeightAndVolume */
  8770 +export interface PostOrderImportImportWeightAndVolumeOption {
8906 /** 8771 /**
8907 * @description 8772 * @description
8908 - * dto 8773 + * file
8909 */ 8774 */
8910 - body: { 8775 + formData: {
8911 /** 8776 /**
8912 @description 8777 @description
8913 - dto */  
8914 - dto: QueryBankStatementDto; 8778 + file */
  8779 + file: File;
8915 }; 8780 };
8916 } 8781 }
8917 8782
8918 -/** @description response type for postServiceBankStatementQueryBankStatement */  
8919 -export interface PostServiceBankStatementQueryBankStatementResponse { 8783 +/** @description response type for postOrderImportImportWeightAndVolume */
  8784 +export interface PostOrderImportImportWeightAndVolumeResponse {
8920 /** 8785 /**
8921 * @description 8786 * @description
8922 * OK 8787 * OK
@@ -8944,37 +8809,50 @@ export interface PostServiceBankStatementQueryBankStatementResponse { @@ -8944,37 +8809,50 @@ export interface PostServiceBankStatementQueryBankStatementResponse {
8944 404: any; 8809 404: any;
8945 } 8810 }
8946 8811
8947 -export type PostServiceBankStatementQueryBankStatementResponseSuccess =  
8948 - PostServiceBankStatementQueryBankStatementResponse[200]; 8812 +export type PostOrderImportImportWeightAndVolumeResponseSuccess =
  8813 + PostOrderImportImportWeightAndVolumeResponse[200];
8949 /** 8814 /**
8950 * @description 8815 * @description
8951 - * 查询银行流水  
8952 - * @tags 银行流水 8816 + * 导入重量和体积
  8817 + * @tags 导入
8953 * @produces * 8818 * @produces *
8954 - * @consumes application/json 8819 + * @consumes multipart/form-data
8955 */ 8820 */
8956 -export const postServiceBankStatementQueryBankStatement =  
8957 - /* #__PURE__ */ (() => {  
8958 - const method = 'post';  
8959 - const url = '/service/bankStatement/queryBankStatement';  
8960 - function request(  
8961 - option: PostServiceBankStatementQueryBankStatementOption,  
8962 - ): Promise<PostServiceBankStatementQueryBankStatementResponseSuccess> {  
8963 - return requester(request.url, {  
8964 - method: request.method,  
8965 - ...option,  
8966 - }) as unknown as Promise<PostServiceBankStatementQueryBankStatementResponseSuccess>;  
8967 - } 8821 +export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => {
  8822 + const method = 'post';
  8823 + const url = '/order/import/importWeightAndVolume';
  8824 + function request(
  8825 + option: PostOrderImportImportWeightAndVolumeOption,
  8826 + ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> {
  8827 + return requester(request.url, {
  8828 + method: request.method,
  8829 + ...option,
  8830 + }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>;
  8831 + }
8968 8832
8969 - /** http method */  
8970 - request.method = method;  
8971 - /** request url */  
8972 - request.url = url;  
8973 - return request;  
8974 - })(); 8833 + /** http method */
  8834 + request.method = method;
  8835 + /** request url */
  8836 + request.url = url;
  8837 + return request;
  8838 +})();
  8839 +
  8840 +/** @description request parameter type for postPrepaidAudit */
  8841 +export interface PostPrepaidAuditOption {
  8842 + /**
  8843 + * @description
  8844 + * request
  8845 + */
  8846 + body: {
  8847 + /**
  8848 + @description
  8849 + request */
  8850 + request: SalesRechargePrepaymentAuditRequest;
  8851 + };
  8852 +}
8975 8853
8976 -/** @description response type for postServiceConstAfterInvoicingInvoiceRecordStatus */  
8977 -export interface PostServiceConstAfterInvoicingInvoiceRecordStatusResponse { 8854 +/** @description response type for postPrepaidAudit */
  8855 +export interface PostPrepaidAuditResponse {
8978 /** 8856 /**
8979 * @description 8857 * @description
8980 * OK 8858 * OK
@@ -9002,34 +8880,49 @@ export interface PostServiceConstAfterInvoicingInvoiceRecordStatusResponse { @@ -9002,34 +8880,49 @@ export interface PostServiceConstAfterInvoicingInvoiceRecordStatusResponse {
9002 404: any; 8880 404: any;
9003 } 8881 }
9004 8882
9005 -export type PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess =  
9006 - PostServiceConstAfterInvoicingInvoiceRecordStatusResponse[200]; 8883 +export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200];
9007 /** 8884 /**
9008 * @description 8885 * @description
9009 - * 开票后的开票记录状态  
9010 - * @tags front-const-controller 8886 + * 财务审核
  8887 + * @tags prepaid-controller
9011 * @produces * 8888 * @produces *
9012 * @consumes application/json 8889 * @consumes application/json
9013 */ 8890 */
9014 -export const postServiceConstAfterInvoicingInvoiceRecordStatus =  
9015 - /* #__PURE__ */ (() => {  
9016 - const method = 'post';  
9017 - const url = '/service/const/afterInvoicingInvoiceRecordStatus';  
9018 - function request(): Promise<PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess> {  
9019 - return requester(request.url, {  
9020 - method: request.method,  
9021 - }) as unknown as Promise<PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess>;  
9022 - } 8891 +export const postPrepaidAudit = /* #__PURE__ */ (() => {
  8892 + const method = 'post';
  8893 + const url = '/prepaid/audit';
  8894 + function request(
  8895 + option: PostPrepaidAuditOption,
  8896 + ): Promise<PostPrepaidAuditResponseSuccess> {
  8897 + return requester(request.url, {
  8898 + method: request.method,
  8899 + ...option,
  8900 + }) as unknown as Promise<PostPrepaidAuditResponseSuccess>;
  8901 + }
9023 8902
9024 - /** http method */  
9025 - request.method = method;  
9026 - /** request url */  
9027 - request.url = url;  
9028 - return request;  
9029 - })(); 8903 + /** http method */
  8904 + request.method = method;
  8905 + /** request url */
  8906 + request.url = url;
  8907 + return request;
  8908 +})();
  8909 +
  8910 +/** @description request parameter type for postPrepaidCreate */
  8911 +export interface PostPrepaidCreateOption {
  8912 + /**
  8913 + * @description
  8914 + * request
  8915 + */
  8916 + body: {
  8917 + /**
  8918 + @description
  8919 + request */
  8920 + request: SalesRechargePrepaymentCreateRequest;
  8921 + };
  8922 +}
9030 8923
9031 -/** @description response type for postServiceConstAfterInvoicingStatus */  
9032 -export interface PostServiceConstAfterInvoicingStatusResponse { 8924 +/** @description response type for postPrepaidCreate */
  8925 +export interface PostPrepaidCreateResponse {
9033 /** 8926 /**
9034 * @description 8927 * @description
9035 * OK 8928 * OK
@@ -9057,22 +8950,24 @@ export interface PostServiceConstAfterInvoicingStatusResponse { @@ -9057,22 +8950,24 @@ export interface PostServiceConstAfterInvoicingStatusResponse {
9057 404: any; 8950 404: any;
9058 } 8951 }
9059 8952
9060 -export type PostServiceConstAfterInvoicingStatusResponseSuccess =  
9061 - PostServiceConstAfterInvoicingStatusResponse[200]; 8953 +export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200];
9062 /** 8954 /**
9063 * @description 8955 * @description
9064 - * 申请开票后状态  
9065 - * @tags front-const-controller 8956 + * 新增预存
  8957 + * @tags prepaid-controller
9066 * @produces * 8958 * @produces *
9067 * @consumes application/json 8959 * @consumes application/json
9068 */ 8960 */
9069 -export const postServiceConstAfterInvoicingStatus = /* #__PURE__ */ (() => { 8961 +export const postPrepaidCreate = /* #__PURE__ */ (() => {
9070 const method = 'post'; 8962 const method = 'post';
9071 - const url = '/service/const/afterInvoicingStatus';  
9072 - function request(): Promise<PostServiceConstAfterInvoicingStatusResponseSuccess> { 8963 + const url = '/prepaid/create';
  8964 + function request(
  8965 + option: PostPrepaidCreateOption,
  8966 + ): Promise<PostPrepaidCreateResponseSuccess> {
9073 return requester(request.url, { 8967 return requester(request.url, {
9074 method: request.method, 8968 method: request.method,
9075 - }) as unknown as Promise<PostServiceConstAfterInvoicingStatusResponseSuccess>; 8969 + ...option,
  8970 + }) as unknown as Promise<PostPrepaidCreateResponseSuccess>;
9076 } 8971 }
9077 8972
9078 /** http method */ 8973 /** http method */
@@ -9082,8 +8977,22 @@ export const postServiceConstAfterInvoicingStatus = /* #__PURE__ */ (() =&gt; { @@ -9082,8 +8977,22 @@ export const postServiceConstAfterInvoicingStatus = /* #__PURE__ */ (() =&gt; {
9082 return request; 8977 return request;
9083 })(); 8978 })();
9084 8979
9085 -/** @description response type for postServiceConstBeforeInvoicingInvoiceRecordStatus */  
9086 -export interface PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse { 8980 +/** @description request parameter type for postPrepaidDelete */
  8981 +export interface PostPrepaidDeleteOption {
  8982 + /**
  8983 + * @description
  8984 + * request
  8985 + */
  8986 + body: {
  8987 + /**
  8988 + @description
  8989 + request */
  8990 + request: SalesRechargePrepaymentDeleteRequest;
  8991 + };
  8992 +}
  8993 +
  8994 +/** @description response type for postPrepaidDelete */
  8995 +export interface PostPrepaidDeleteResponse {
9087 /** 8996 /**
9088 * @description 8997 * @description
9089 * OK 8998 * OK
@@ -9111,34 +9020,49 @@ export interface PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse { @@ -9111,34 +9020,49 @@ export interface PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse {
9111 404: any; 9020 404: any;
9112 } 9021 }
9113 9022
9114 -export type PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess =  
9115 - PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse[200]; 9023 +export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200];
9116 /** 9024 /**
9117 * @description 9025 * @description
9118 - * 开票前的开票记录状态  
9119 - * @tags front-const-controller 9026 + * 删除预存
  9027 + * @tags prepaid-controller
9120 * @produces * 9028 * @produces *
9121 * @consumes application/json 9029 * @consumes application/json
9122 */ 9030 */
9123 -export const postServiceConstBeforeInvoicingInvoiceRecordStatus =  
9124 - /* #__PURE__ */ (() => {  
9125 - const method = 'post';  
9126 - const url = '/service/const/beforeInvoicingInvoiceRecordStatus';  
9127 - function request(): Promise<PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess> {  
9128 - return requester(request.url, {  
9129 - method: request.method,  
9130 - }) as unknown as Promise<PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess>;  
9131 - } 9031 +export const postPrepaidDelete = /* #__PURE__ */ (() => {
  9032 + const method = 'post';
  9033 + const url = '/prepaid/delete';
  9034 + function request(
  9035 + option: PostPrepaidDeleteOption,
  9036 + ): Promise<PostPrepaidDeleteResponseSuccess> {
  9037 + return requester(request.url, {
  9038 + method: request.method,
  9039 + ...option,
  9040 + }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>;
  9041 + }
  9042 +
  9043 + /** http method */
  9044 + request.method = method;
  9045 + /** request url */
  9046 + request.url = url;
  9047 + return request;
  9048 +})();
9132 9049
9133 - /** http method */  
9134 - request.method = method;  
9135 - /** request url */  
9136 - request.url = url;  
9137 - return request;  
9138 - })(); 9050 +/** @description request parameter type for postPrepaidList */
  9051 +export interface PostPrepaidListOption {
  9052 + /**
  9053 + * @description
  9054 + * request
  9055 + */
  9056 + body: {
  9057 + /**
  9058 + @description
  9059 + request */
  9060 + request: SalesRechargePrepaymentRequest;
  9061 + };
  9062 +}
9139 9063
9140 -/** @description response type for postServiceConstCanApplyAfterInvoicingStatus */  
9141 -export interface PostServiceConstCanApplyAfterInvoicingStatusResponse { 9064 +/** @description response type for postPrepaidList */
  9065 +export interface PostPrepaidListResponse {
9142 /** 9066 /**
9143 * @description 9067 * @description
9144 * OK 9068 * OK
@@ -9166,34 +9090,49 @@ export interface PostServiceConstCanApplyAfterInvoicingStatusResponse { @@ -9166,34 +9090,49 @@ export interface PostServiceConstCanApplyAfterInvoicingStatusResponse {
9166 404: any; 9090 404: any;
9167 } 9091 }
9168 9092
9169 -export type PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess =  
9170 - PostServiceConstCanApplyAfterInvoicingStatusResponse[200]; 9093 +export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200];
9171 /** 9094 /**
9172 * @description 9095 * @description
9173 - * 开具类型  
9174 - * @tags front-const-controller 9096 + * 查询列表
  9097 + * @tags prepaid-controller
9175 * @produces * 9098 * @produces *
9176 * @consumes application/json 9099 * @consumes application/json
9177 */ 9100 */
9178 -export const postServiceConstCanApplyAfterInvoicingStatus =  
9179 - /* #__PURE__ */ (() => {  
9180 - const method = 'post';  
9181 - const url = '/service/const/canApplyAfterInvoicingStatus';  
9182 - function request(): Promise<PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess> {  
9183 - return requester(request.url, {  
9184 - method: request.method,  
9185 - }) as unknown as Promise<PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess>;  
9186 - } 9101 +export const postPrepaidList = /* #__PURE__ */ (() => {
  9102 + const method = 'post';
  9103 + const url = '/prepaid/list';
  9104 + function request(
  9105 + option: PostPrepaidListOption,
  9106 + ): Promise<PostPrepaidListResponseSuccess> {
  9107 + return requester(request.url, {
  9108 + method: request.method,
  9109 + ...option,
  9110 + }) as unknown as Promise<PostPrepaidListResponseSuccess>;
  9111 + }
9187 9112
9188 - /** http method */  
9189 - request.method = method;  
9190 - /** request url */  
9191 - request.url = url;  
9192 - return request;  
9193 - })(); 9113 + /** http method */
  9114 + request.method = method;
  9115 + /** request url */
  9116 + request.url = url;
  9117 + return request;
  9118 +})();
  9119 +
  9120 +/** @description request parameter type for postPrepaidPhoneAvailableList */
  9121 +export interface PostPrepaidPhoneAvailableListOption {
  9122 + /**
  9123 + * @description
  9124 + * request
  9125 + */
  9126 + body: {
  9127 + /**
  9128 + @description
  9129 + request */
  9130 + request: SalesRechargePrepaymentAuditRequest;
  9131 + };
  9132 +}
9194 9133
9195 -/** @description response type for postServiceConstGetPayeeEnum */  
9196 -export interface PostServiceConstGetPayeeEnumResponse { 9134 +/** @description response type for postPrepaidPhoneAvailableList */
  9135 +export interface PostPrepaidPhoneAvailableListResponse {
9197 /** 9136 /**
9198 * @description 9137 * @description
9199 * OK 9138 * OK
@@ -9221,22 +9160,25 @@ export interface PostServiceConstGetPayeeEnumResponse { @@ -9221,22 +9160,25 @@ export interface PostServiceConstGetPayeeEnumResponse {
9221 404: any; 9160 404: any;
9222 } 9161 }
9223 9162
9224 -export type PostServiceConstGetPayeeEnumResponseSuccess =  
9225 - PostServiceConstGetPayeeEnumResponse[200]; 9163 +export type PostPrepaidPhoneAvailableListResponseSuccess =
  9164 + PostPrepaidPhoneAvailableListResponse[200];
9226 /** 9165 /**
9227 * @description 9166 * @description
9228 - * 获取收款方  
9229 - * @tags front-const-controller 9167 + * 财务审核
  9168 + * @tags prepaid-controller
9230 * @produces * 9169 * @produces *
9231 * @consumes application/json 9170 * @consumes application/json
9232 */ 9171 */
9233 -export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() => { 9172 +export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => {
9234 const method = 'post'; 9173 const method = 'post';
9235 - const url = '/service/const/getPayeeEnum';  
9236 - function request(): Promise<PostServiceConstGetPayeeEnumResponseSuccess> { 9174 + const url = '/prepaid/phone/available/list';
  9175 + function request(
  9176 + option: PostPrepaidPhoneAvailableListOption,
  9177 + ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> {
9237 return requester(request.url, { 9178 return requester(request.url, {
9238 method: request.method, 9179 method: request.method,
9239 - }) as unknown as Promise<PostServiceConstGetPayeeEnumResponseSuccess>; 9180 + ...option,
  9181 + }) as unknown as Promise<PostPrepaidPhoneAvailableListResponseSuccess>;
9240 } 9182 }
9241 9183
9242 /** http method */ 9184 /** http method */
@@ -9246,8 +9188,22 @@ export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() =&gt; { @@ -9246,8 +9188,22 @@ export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() =&gt; {
9246 return request; 9188 return request;
9247 })(); 9189 })();
9248 9190
9249 -/** @description response type for postServiceConstInvoiceType */  
9250 -export interface PostServiceConstInvoiceTypeResponse { 9191 +/** @description request parameter type for postPrepaidUpdate */
  9192 +export interface PostPrepaidUpdateOption {
  9193 + /**
  9194 + * @description
  9195 + * request
  9196 + */
  9197 + body: {
  9198 + /**
  9199 + @description
  9200 + request */
  9201 + request: SalesRechargePrepaymentUpdateRequest;
  9202 + };
  9203 +}
  9204 +
  9205 +/** @description response type for postPrepaidUpdate */
  9206 +export interface PostPrepaidUpdateResponse {
9251 /** 9207 /**
9252 * @description 9208 * @description
9253 * OK 9209 * OK
@@ -9275,22 +9231,24 @@ export interface PostServiceConstInvoiceTypeResponse { @@ -9275,22 +9231,24 @@ export interface PostServiceConstInvoiceTypeResponse {
9275 404: any; 9231 404: any;
9276 } 9232 }
9277 9233
9278 -export type PostServiceConstInvoiceTypeResponseSuccess =  
9279 - PostServiceConstInvoiceTypeResponse[200]; 9234 +export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200];
9280 /** 9235 /**
9281 * @description 9236 * @description
9282 - * 发票类型  
9283 - * @tags front-const-controller 9237 + * 修改预存
  9238 + * @tags prepaid-controller
9284 * @produces * 9239 * @produces *
9285 * @consumes application/json 9240 * @consumes application/json
9286 */ 9241 */
9287 -export const postServiceConstInvoiceType = /* #__PURE__ */ (() => { 9242 +export const postPrepaidUpdate = /* #__PURE__ */ (() => {
9288 const method = 'post'; 9243 const method = 'post';
9289 - const url = '/service/const/invoiceType';  
9290 - function request(): Promise<PostServiceConstInvoiceTypeResponseSuccess> { 9244 + const url = '/prepaid/update';
  9245 + function request(
  9246 + option: PostPrepaidUpdateOption,
  9247 + ): Promise<PostPrepaidUpdateResponseSuccess> {
9291 return requester(request.url, { 9248 return requester(request.url, {
9292 method: request.method, 9249 method: request.method,
9293 - }) as unknown as Promise<PostServiceConstInvoiceTypeResponseSuccess>; 9250 + ...option,
  9251 + }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>;
9294 } 9252 }
9295 9253
9296 /** http method */ 9254 /** http method */
@@ -9300,8 +9258,22 @@ export const postServiceConstInvoiceType = /* #__PURE__ */ (() =&gt; { @@ -9300,8 +9258,22 @@ export const postServiceConstInvoiceType = /* #__PURE__ */ (() =&gt; {
9300 return request; 9258 return request;
9301 })(); 9259 })();
9302 9260
9303 -/** @description response type for postServiceConstInvoicingType */  
9304 -export interface PostServiceConstInvoicingTypeResponse { 9261 +/** @description request parameter type for postResearchGroupMemberRequestsAdd */
  9262 +export interface PostResearchGroupMemberRequestsAddOption {
  9263 + /**
  9264 + * @description
  9265 + * request
  9266 + */
  9267 + body: {
  9268 + /**
  9269 + @description
  9270 + request */
  9271 + request: ResearchGroupMemberRequestAddRequest;
  9272 + };
  9273 +}
  9274 +
  9275 +/** @description response type for postResearchGroupMemberRequestsAdd */
  9276 +export interface PostResearchGroupMemberRequestsAddResponse {
9305 /** 9277 /**
9306 * @description 9278 * @description
9307 * OK 9279 * OK
@@ -9329,22 +9301,25 @@ export interface PostServiceConstInvoicingTypeResponse { @@ -9329,22 +9301,25 @@ export interface PostServiceConstInvoicingTypeResponse {
9329 404: any; 9301 404: any;
9330 } 9302 }
9331 9303
9332 -export type PostServiceConstInvoicingTypeResponseSuccess =  
9333 - PostServiceConstInvoicingTypeResponse[200]; 9304 +export type PostResearchGroupMemberRequestsAddResponseSuccess =
  9305 + PostResearchGroupMemberRequestsAddResponse[200];
9334 /** 9306 /**
9335 * @description 9307 * @description
9336 - * 开具类型  
9337 - * @tags front-const-controller 9308 + * 新增申请信息
  9309 + * @tags research-group-member-requests-controller
9338 * @produces * 9310 * @produces *
9339 * @consumes application/json 9311 * @consumes application/json
9340 */ 9312 */
9341 -export const postServiceConstInvoicingType = /* #__PURE__ */ (() => { 9313 +export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => {
9342 const method = 'post'; 9314 const method = 'post';
9343 - const url = '/service/const/invoicingType';  
9344 - function request(): Promise<PostServiceConstInvoicingTypeResponseSuccess> { 9315 + const url = '/research/group/member/requests/add';
  9316 + function request(
  9317 + option: PostResearchGroupMemberRequestsAddOption,
  9318 + ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> {
9345 return requester(request.url, { 9319 return requester(request.url, {
9346 method: request.method, 9320 method: request.method,
9347 - }) as unknown as Promise<PostServiceConstInvoicingTypeResponseSuccess>; 9321 + ...option,
  9322 + }) as unknown as Promise<PostResearchGroupMemberRequestsAddResponseSuccess>;
9348 } 9323 }
9349 9324
9350 /** http method */ 9325 /** http method */
@@ -9354,22 +9329,22 @@ export const postServiceConstInvoicingType = /* #__PURE__ */ (() =&gt; { @@ -9354,22 +9329,22 @@ export const postServiceConstInvoicingType = /* #__PURE__ */ (() =&gt; {
9354 return request; 9329 return request;
9355 })(); 9330 })();
9356 9331
9357 -/** @description request parameter type for postServiceConstListInvoiceDetailNames */  
9358 -export interface PostServiceConstListInvoiceDetailNamesOption { 9332 +/** @description request parameter type for postResearchGroupMemberRequestsDelete */
  9333 +export interface PostResearchGroupMemberRequestsDeleteOption {
9359 /** 9334 /**
9360 * @description 9335 * @description
9361 - * queryInvoiceProjectDto 9336 + * request
9362 */ 9337 */
9363 body: { 9338 body: {
9364 /** 9339 /**
9365 @description 9340 @description
9366 - queryInvoiceProjectDto */  
9367 - queryInvoiceProjectDto: QueryInvoiceProjectDto; 9341 + request */
  9342 + request: ResearchGroupMemberRequestDeleteRequest;
9368 }; 9343 };
9369 } 9344 }
9370 9345
9371 -/** @description response type for postServiceConstListInvoiceDetailNames */  
9372 -export interface PostServiceConstListInvoiceDetailNamesResponse { 9346 +/** @description response type for postResearchGroupMemberRequestsDelete */
  9347 +export interface PostResearchGroupMemberRequestsDeleteResponse {
9373 /** 9348 /**
9374 * @description 9349 * @description
9375 * OK 9350 * OK
@@ -9397,25 +9372,25 @@ export interface PostServiceConstListInvoiceDetailNamesResponse { @@ -9397,25 +9372,25 @@ export interface PostServiceConstListInvoiceDetailNamesResponse {
9397 404: any; 9372 404: any;
9398 } 9373 }
9399 9374
9400 -export type PostServiceConstListInvoiceDetailNamesResponseSuccess =  
9401 - PostServiceConstListInvoiceDetailNamesResponse[200]; 9375 +export type PostResearchGroupMemberRequestsDeleteResponseSuccess =
  9376 + PostResearchGroupMemberRequestsDeleteResponse[200];
9402 /** 9377 /**
9403 * @description 9378 * @description
9404 - * 根据公司名获取收款方  
9405 - * @tags front-const-controller 9379 + * 删除申请信息
  9380 + * @tags research-group-member-requests-controller
9406 * @produces * 9381 * @produces *
9407 * @consumes application/json 9382 * @consumes application/json
9408 */ 9383 */
9409 -export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() => { 9384 +export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => {
9410 const method = 'post'; 9385 const method = 'post';
9411 - const url = '/service/const/listInvoiceDetailNames'; 9386 + const url = '/research/group/member/requests/delete';
9412 function request( 9387 function request(
9413 - option: PostServiceConstListInvoiceDetailNamesOption,  
9414 - ): Promise<PostServiceConstListInvoiceDetailNamesResponseSuccess> { 9388 + option: PostResearchGroupMemberRequestsDeleteOption,
  9389 + ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> {
9415 return requester(request.url, { 9390 return requester(request.url, {
9416 method: request.method, 9391 method: request.method,
9417 ...option, 9392 ...option,
9418 - }) as unknown as Promise<PostServiceConstListInvoiceDetailNamesResponseSuccess>; 9393 + }) as unknown as Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess>;
9419 } 9394 }
9420 9395
9421 /** http method */ 9396 /** http method */
@@ -9425,8 +9400,22 @@ export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() =&gt; { @@ -9425,8 +9400,22 @@ export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() =&gt; {
9425 return request; 9400 return request;
9426 })(); 9401 })();
9427 9402
9428 -/** @description response type for postServiceConstNotCanModifyInvoiceRecordStatus */  
9429 -export interface PostServiceConstNotCanModifyInvoiceRecordStatusResponse { 9403 +/** @description request parameter type for postResearchGroupMemberRequestsDetail */
  9404 +export interface PostResearchGroupMemberRequestsDetailOption {
  9405 + /**
  9406 + * @description
  9407 + * request
  9408 + */
  9409 + body: {
  9410 + /**
  9411 + @description
  9412 + request */
  9413 + request: ResearchGroupMemberRequestDetailRequest;
  9414 + };
  9415 +}
  9416 +
  9417 +/** @description response type for postResearchGroupMemberRequestsDetail */
  9418 +export interface PostResearchGroupMemberRequestsDetailResponse {
9430 /** 9419 /**
9431 * @description 9420 * @description
9432 * OK 9421 * OK
@@ -9454,62 +9443,60 @@ export interface PostServiceConstNotCanModifyInvoiceRecordStatusResponse { @@ -9454,62 +9443,60 @@ export interface PostServiceConstNotCanModifyInvoiceRecordStatusResponse {
9454 404: any; 9443 404: any;
9455 } 9444 }
9456 9445
9457 -export type PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess =  
9458 - PostServiceConstNotCanModifyInvoiceRecordStatusResponse[200]; 9446 +export type PostResearchGroupMemberRequestsDetailResponseSuccess =
  9447 + PostResearchGroupMemberRequestsDetailResponse[200];
9459 /** 9448 /**
9460 * @description 9449 * @description
9461 - * 不能修改的开票记录状态  
9462 - * @tags front-const-controller 9450 + * 查询申请信息
  9451 + * @tags research-group-member-requests-controller
9463 * @produces * 9452 * @produces *
9464 * @consumes application/json 9453 * @consumes application/json
9465 */ 9454 */
9466 -export const postServiceConstNotCanModifyInvoiceRecordStatus =  
9467 - /* #__PURE__ */ (() => {  
9468 - const method = 'post';  
9469 - const url = '/service/const/notCanModifyInvoiceRecordStatus';  
9470 - function request(): Promise<PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess> {  
9471 - return requester(request.url, {  
9472 - method: request.method,  
9473 - }) as unknown as Promise<PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess>;  
9474 - } 9455 +export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => {
  9456 + const method = 'post';
  9457 + const url = '/research/group/member/requests/detail';
  9458 + function request(
  9459 + option: PostResearchGroupMemberRequestsDetailOption,
  9460 + ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> {
  9461 + return requester(request.url, {
  9462 + method: request.method,
  9463 + ...option,
  9464 + }) as unknown as Promise<PostResearchGroupMemberRequestsDetailResponseSuccess>;
  9465 + }
9475 9466
9476 - /** http method */  
9477 - request.method = method;  
9478 - /** request url */  
9479 - request.url = url;  
9480 - return request;  
9481 - })(); 9467 + /** http method */
  9468 + request.method = method;
  9469 + /** request url */
  9470 + request.url = url;
  9471 + return request;
  9472 +})();
9482 9473
9483 -/** @description request parameter type for getServiceInvoiceListInvoiceProject */  
9484 -export interface GetServiceInvoiceListInvoiceProjectOption {  
9485 - /** @format int32 */  
9486 - query?: {  
9487 - /**  
9488 - @format int32 */  
9489 - current?: number;  
9490 - /**  
9491 - @format int32 */  
9492 - end?: number;  
9493 - nameLike?: string;  
9494 - /**  
9495 - @format int32 */  
9496 - pageSize?: number;  
9497 - /**  
9498 - @format int32 */  
9499 - start?: number; 9474 +/** @description request parameter type for postResearchGroupMemberRequestsEdit */
  9475 +export interface PostResearchGroupMemberRequestsEditOption {
  9476 + /**
  9477 + * @description
  9478 + * request
  9479 + */
  9480 + body: {
9500 /** 9481 /**
9501 - @format int32 */  
9502 - total?: number; 9482 + @description
  9483 + request */
  9484 + request: ResearchGroupMemberRequestEditRequest;
9503 }; 9485 };
9504 } 9486 }
9505 9487
9506 -/** @description response type for getServiceInvoiceListInvoiceProject */  
9507 -export interface GetServiceInvoiceListInvoiceProjectResponse { 9488 +/** @description response type for postResearchGroupMemberRequestsEdit */
  9489 +export interface PostResearchGroupMemberRequestsEditResponse {
9508 /** 9490 /**
9509 * @description 9491 * @description
9510 * OK 9492 * OK
9511 */ 9493 */
9512 - 200: any; 9494 + 200: ServerResult;
  9495 + /**
  9496 + * @description
  9497 + * Created
  9498 + */
  9499 + 201: any;
9513 /** 9500 /**
9514 * @description 9501 * @description
9515 * Unauthorized 9502 * Unauthorized
@@ -9527,24 +9514,25 @@ export interface GetServiceInvoiceListInvoiceProjectResponse { @@ -9527,24 +9514,25 @@ export interface GetServiceInvoiceListInvoiceProjectResponse {
9527 404: any; 9514 404: any;
9528 } 9515 }
9529 9516
9530 -export type GetServiceInvoiceListInvoiceProjectResponseSuccess =  
9531 - GetServiceInvoiceListInvoiceProjectResponse[200]; 9517 +export type PostResearchGroupMemberRequestsEditResponseSuccess =
  9518 + PostResearchGroupMemberRequestsEditResponse[200];
9532 /** 9519 /**
9533 * @description 9520 * @description
9534 - * invoiceProjectList  
9535 - * @tags 发票 9521 + * 编辑申请信息
  9522 + * @tags research-group-member-requests-controller
9536 * @produces * 9523 * @produces *
  9524 + * @consumes application/json
9537 */ 9525 */
9538 -export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() => {  
9539 - const method = 'get';  
9540 - const url = '/service/invoice/ListInvoiceProject'; 9526 +export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => {
  9527 + const method = 'post';
  9528 + const url = '/research/group/member/requests/edit';
9541 function request( 9529 function request(
9542 - option?: GetServiceInvoiceListInvoiceProjectOption,  
9543 - ): Promise<GetServiceInvoiceListInvoiceProjectResponseSuccess> { 9530 + option: PostResearchGroupMemberRequestsEditOption,
  9531 + ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> {
9544 return requester(request.url, { 9532 return requester(request.url, {
9545 method: request.method, 9533 method: request.method,
9546 ...option, 9534 ...option,
9547 - }) as unknown as Promise<GetServiceInvoiceListInvoiceProjectResponseSuccess>; 9535 + }) as unknown as Promise<PostResearchGroupMemberRequestsEditResponseSuccess>;
9548 } 9536 }
9549 9537
9550 /** http method */ 9538 /** http method */
@@ -9554,22 +9542,22 @@ export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() =&gt; { @@ -9554,22 +9542,22 @@ export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() =&gt; {
9554 return request; 9542 return request;
9555 })(); 9543 })();
9556 9544
9557 -/** @description request parameter type for postServiceInvoiceAddInvoice */  
9558 -export interface PostServiceInvoiceAddInvoiceOption { 9545 +/** @description request parameter type for postResearchGroupMemberRequestsList */
  9546 +export interface PostResearchGroupMemberRequestsListOption {
9559 /** 9547 /**
9560 * @description 9548 * @description
9561 - * dto 9549 + * request
9562 */ 9550 */
9563 body: { 9551 body: {
9564 /** 9552 /**
9565 @description 9553 @description
9566 - dto */  
9567 - dto: InvoiceDto; 9554 + request */
  9555 + request: ResearchGroupMemberRequestsRequest;
9568 }; 9556 };
9569 } 9557 }
9570 9558
9571 -/** @description response type for postServiceInvoiceAddInvoice */  
9572 -export interface PostServiceInvoiceAddInvoiceResponse { 9559 +/** @description response type for postResearchGroupMemberRequestsList */
  9560 +export interface PostResearchGroupMemberRequestsListResponse {
9573 /** 9561 /**
9574 * @description 9562 * @description
9575 * OK 9563 * OK
@@ -9597,25 +9585,25 @@ export interface PostServiceInvoiceAddInvoiceResponse { @@ -9597,25 +9585,25 @@ export interface PostServiceInvoiceAddInvoiceResponse {
9597 404: any; 9585 404: any;
9598 } 9586 }
9599 9587
9600 -export type PostServiceInvoiceAddInvoiceResponseSuccess =  
9601 - PostServiceInvoiceAddInvoiceResponse[200]; 9588 +export type PostResearchGroupMemberRequestsListResponseSuccess =
  9589 + PostResearchGroupMemberRequestsListResponse[200];
9602 /** 9590 /**
9603 * @description 9591 * @description
9604 - * 添加发票  
9605 - * @tags 发票 9592 + * 申请列表
  9593 + * @tags research-group-member-requests-controller
9606 * @produces * 9594 * @produces *
9607 * @consumes application/json 9595 * @consumes application/json
9608 */ 9596 */
9609 -export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => { 9597 +export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => {
9610 const method = 'post'; 9598 const method = 'post';
9611 - const url = '/service/invoice/addInvoice'; 9599 + const url = '/research/group/member/requests/list';
9612 function request( 9600 function request(
9613 - option: PostServiceInvoiceAddInvoiceOption,  
9614 - ): Promise<PostServiceInvoiceAddInvoiceResponseSuccess> { 9601 + option: PostResearchGroupMemberRequestsListOption,
  9602 + ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> {
9615 return requester(request.url, { 9603 return requester(request.url, {
9616 method: request.method, 9604 method: request.method,
9617 ...option, 9605 ...option,
9618 - }) as unknown as Promise<PostServiceInvoiceAddInvoiceResponseSuccess>; 9606 + }) as unknown as Promise<PostResearchGroupMemberRequestsListResponseSuccess>;
9619 } 9607 }
9620 9608
9621 /** http method */ 9609 /** http method */
@@ -9625,22 +9613,22 @@ export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() =&gt; { @@ -9625,22 +9613,22 @@ export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() =&gt; {
9625 return request; 9613 return request;
9626 })(); 9614 })();
9627 9615
9628 -/** @description request parameter type for postServiceInvoiceApplyInvoice */  
9629 -export interface PostServiceInvoiceApplyInvoiceOption { 9616 +/** @description request parameter type for postResearchGroupsAdd */
  9617 +export interface PostResearchGroupsAddOption {
9630 /** 9618 /**
9631 * @description 9619 * @description
9632 - * dto 9620 + * request
9633 */ 9621 */
9634 body: { 9622 body: {
9635 /** 9623 /**
9636 @description 9624 @description
9637 - dto */  
9638 - dto: ApplyInvoiceDto; 9625 + request */
  9626 + request: ResearchGroupAddRequest;
9639 }; 9627 };
9640 } 9628 }
9641 9629
9642 -/** @description response type for postServiceInvoiceApplyInvoice */  
9643 -export interface PostServiceInvoiceApplyInvoiceResponse { 9630 +/** @description response type for postResearchGroupsAdd */
  9631 +export interface PostResearchGroupsAddResponse {
9644 /** 9632 /**
9645 * @description 9633 * @description
9646 * OK 9634 * OK
@@ -9668,25 +9656,25 @@ export interface PostServiceInvoiceApplyInvoiceResponse { @@ -9668,25 +9656,25 @@ export interface PostServiceInvoiceApplyInvoiceResponse {
9668 404: any; 9656 404: any;
9669 } 9657 }
9670 9658
9671 -export type PostServiceInvoiceApplyInvoiceResponseSuccess =  
9672 - PostServiceInvoiceApplyInvoiceResponse[200]; 9659 +export type PostResearchGroupsAddResponseSuccess =
  9660 + PostResearchGroupsAddResponse[200];
9673 /** 9661 /**
9674 * @description 9662 * @description
9675 - * 申请开票  
9676 - * @tags 发票 9663 + * 新增课题组信息
  9664 + * @tags research-groups-controller
9677 * @produces * 9665 * @produces *
9678 * @consumes application/json 9666 * @consumes application/json
9679 */ 9667 */
9680 -export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() => { 9668 +export const postResearchGroupsAdd = /* #__PURE__ */ (() => {
9681 const method = 'post'; 9669 const method = 'post';
9682 - const url = '/service/invoice/applyInvoice'; 9670 + const url = '/research/groups/add';
9683 function request( 9671 function request(
9684 - option: PostServiceInvoiceApplyInvoiceOption,  
9685 - ): Promise<PostServiceInvoiceApplyInvoiceResponseSuccess> { 9672 + option: PostResearchGroupsAddOption,
  9673 + ): Promise<PostResearchGroupsAddResponseSuccess> {
9686 return requester(request.url, { 9674 return requester(request.url, {
9687 method: request.method, 9675 method: request.method,
9688 ...option, 9676 ...option,
9689 - }) as unknown as Promise<PostServiceInvoiceApplyInvoiceResponseSuccess>; 9677 + }) as unknown as Promise<PostResearchGroupsAddResponseSuccess>;
9690 } 9678 }
9691 9679
9692 /** http method */ 9680 /** http method */
@@ -9696,22 +9684,22 @@ export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() =&gt; { @@ -9696,22 +9684,22 @@ export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() =&gt; {
9696 return request; 9684 return request;
9697 })(); 9685 })();
9698 9686
9699 -/** @description request parameter type for postServiceInvoiceCancelApply */  
9700 -export interface PostServiceInvoiceCancelApplyOption { 9687 +/** @description request parameter type for postResearchGroupsDelete */
  9688 +export interface PostResearchGroupsDeleteOption {
9701 /** 9689 /**
9702 * @description 9690 * @description
9703 - * dto 9691 + * request
9704 */ 9692 */
9705 body: { 9693 body: {
9706 /** 9694 /**
9707 @description 9695 @description
9708 - dto */  
9709 - dto: Dto; 9696 + request */
  9697 + request: ResearchGroupDeleteRequest;
9710 }; 9698 };
9711 } 9699 }
9712 9700
9713 -/** @description response type for postServiceInvoiceCancelApply */  
9714 -export interface PostServiceInvoiceCancelApplyResponse { 9701 +/** @description response type for postResearchGroupsDelete */
  9702 +export interface PostResearchGroupsDeleteResponse {
9715 /** 9703 /**
9716 * @description 9704 * @description
9717 * OK 9705 * OK
@@ -9739,25 +9727,25 @@ export interface PostServiceInvoiceCancelApplyResponse { @@ -9739,25 +9727,25 @@ export interface PostServiceInvoiceCancelApplyResponse {
9739 404: any; 9727 404: any;
9740 } 9728 }
9741 9729
9742 -export type PostServiceInvoiceCancelApplyResponseSuccess =  
9743 - PostServiceInvoiceCancelApplyResponse[200]; 9730 +export type PostResearchGroupsDeleteResponseSuccess =
  9731 + PostResearchGroupsDeleteResponse[200];
9744 /** 9732 /**
9745 * @description 9733 * @description
9746 - * 取消申请  
9747 - * @tags 发票 9734 + * 删除课题组信息
  9735 + * @tags research-groups-controller
9748 * @produces * 9736 * @produces *
9749 * @consumes application/json 9737 * @consumes application/json
9750 */ 9738 */
9751 -export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() => { 9739 +export const postResearchGroupsDelete = /* #__PURE__ */ (() => {
9752 const method = 'post'; 9740 const method = 'post';
9753 - const url = '/service/invoice/cancelApply'; 9741 + const url = '/research/groups/delete';
9754 function request( 9742 function request(
9755 - option: PostServiceInvoiceCancelApplyOption,  
9756 - ): Promise<PostServiceInvoiceCancelApplyResponseSuccess> { 9743 + option: PostResearchGroupsDeleteOption,
  9744 + ): Promise<PostResearchGroupsDeleteResponseSuccess> {
9757 return requester(request.url, { 9745 return requester(request.url, {
9758 method: request.method, 9746 method: request.method,
9759 ...option, 9747 ...option,
9760 - }) as unknown as Promise<PostServiceInvoiceCancelApplyResponseSuccess>; 9748 + }) as unknown as Promise<PostResearchGroupsDeleteResponseSuccess>;
9761 } 9749 }
9762 9750
9763 /** http method */ 9751 /** http method */
@@ -9767,22 +9755,22 @@ export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() =&gt; { @@ -9767,22 +9755,22 @@ export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() =&gt; {
9767 return request; 9755 return request;
9768 })(); 9756 })();
9769 9757
9770 -/** @description request parameter type for postServiceInvoiceCancelInvoiceAndBankStatement */  
9771 -export interface PostServiceInvoiceCancelInvoiceAndBankStatementOption { 9758 +/** @description request parameter type for postResearchGroupsDetail */
  9759 +export interface PostResearchGroupsDetailOption {
9772 /** 9760 /**
9773 * @description 9761 * @description
9774 - * dto 9762 + * request
9775 */ 9763 */
9776 body: { 9764 body: {
9777 /** 9765 /**
9778 @description 9766 @description
9779 - dto */  
9780 - dto: CancelInvoiceAndBankStatementDto; 9767 + request */
  9768 + request: ResearchGroupDetailRequest;
9781 }; 9769 };
9782 } 9770 }
9783 9771
9784 -/** @description response type for postServiceInvoiceCancelInvoiceAndBankStatement */  
9785 -export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse { 9772 +/** @description response type for postResearchGroupsDetail */
  9773 +export interface PostResearchGroupsDetailResponse {
9786 /** 9774 /**
9787 * @description 9775 * @description
9788 * OK 9776 * OK
@@ -9810,56 +9798,41 @@ export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse { @@ -9810,56 +9798,41 @@ export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse {
9810 404: any; 9798 404: any;
9811 } 9799 }
9812 9800
9813 -export type PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess =  
9814 - PostServiceInvoiceCancelInvoiceAndBankStatementResponse[200]; 9801 +export type PostResearchGroupsDetailResponseSuccess =
  9802 + PostResearchGroupsDetailResponse[200];
9815 /** 9803 /**
9816 * @description 9804 * @description
9817 - * 取消发票与银行流水的关联  
9818 - * @tags 发票 9805 + * 查询课题组信息
  9806 + * @tags research-groups-controller
9819 * @produces * 9807 * @produces *
9820 * @consumes application/json 9808 * @consumes application/json
9821 */ 9809 */
9822 -export const postServiceInvoiceCancelInvoiceAndBankStatement =  
9823 - /* #__PURE__ */ (() => {  
9824 - const method = 'post';  
9825 - const url = '/service/invoice/cancelInvoiceAndBankStatement';  
9826 - function request(  
9827 - option: PostServiceInvoiceCancelInvoiceAndBankStatementOption,  
9828 - ): Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess> {  
9829 - return requester(request.url, {  
9830 - method: request.method,  
9831 - ...option,  
9832 - }) as unknown as Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess>;  
9833 - }  
9834 -  
9835 - /** http method */  
9836 - request.method = method;  
9837 - /** request url */  
9838 - request.url = url;  
9839 - return request;  
9840 - })(); 9810 +export const postResearchGroupsDetail = /* #__PURE__ */ (() => {
  9811 + const method = 'post';
  9812 + const url = '/research/groups/detail';
  9813 + function request(
  9814 + option: PostResearchGroupsDetailOption,
  9815 + ): Promise<PostResearchGroupsDetailResponseSuccess> {
  9816 + return requester(request.url, {
  9817 + method: request.method,
  9818 + ...option,
  9819 + }) as unknown as Promise<PostResearchGroupsDetailResponseSuccess>;
  9820 + }
9841 9821
9842 -/** @description request parameter type for postServiceInvoiceDealInvoicingResult */  
9843 -export interface PostServiceInvoiceDealInvoicingResultOption {  
9844 - /**  
9845 - * @description  
9846 - * dto  
9847 - */  
9848 - body: {  
9849 - /**  
9850 - @description  
9851 - dto */  
9852 - dto: Dto;  
9853 - };  
9854 -} 9822 + /** http method */
  9823 + request.method = method;
  9824 + /** request url */
  9825 + request.url = url;
  9826 + return request;
  9827 +})();
9855 9828
9856 -/** @description response type for postServiceInvoiceDealInvoicingResult */  
9857 -export interface PostServiceInvoiceDealInvoicingResultResponse { 9829 +/** @description response type for postResearchGroupsDownloadImportTemplate */
  9830 +export interface PostResearchGroupsDownloadImportTemplateResponse {
9858 /** 9831 /**
9859 * @description 9832 * @description
9860 * OK 9833 * OK
9861 */ 9834 */
9862 - 200: ServerResult; 9835 + 200: any;
9863 /** 9836 /**
9864 * @description 9837 * @description
9865 * Created 9838 * Created
@@ -9882,25 +9855,22 @@ export interface PostServiceInvoiceDealInvoicingResultResponse { @@ -9882,25 +9855,22 @@ export interface PostServiceInvoiceDealInvoicingResultResponse {
9882 404: any; 9855 404: any;
9883 } 9856 }
9884 9857
9885 -export type PostServiceInvoiceDealInvoicingResultResponseSuccess =  
9886 - PostServiceInvoiceDealInvoicingResultResponse[200]; 9858 +export type PostResearchGroupsDownloadImportTemplateResponseSuccess =
  9859 + PostResearchGroupsDownloadImportTemplateResponse[200];
9887 /** 9860 /**
9888 * @description 9861 * @description
9889 - * 拉取开票结果  
9890 - * @tags 发票 9862 + * 课题组导入模板下载
  9863 + * @tags research-groups-controller
9891 * @produces * 9864 * @produces *
9892 * @consumes application/json 9865 * @consumes application/json
9893 */ 9866 */
9894 -export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() => { 9867 +export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => {
9895 const method = 'post'; 9868 const method = 'post';
9896 - const url = '/service/invoice/dealInvoicingResult';  
9897 - function request(  
9898 - option: PostServiceInvoiceDealInvoicingResultOption,  
9899 - ): Promise<PostServiceInvoiceDealInvoicingResultResponseSuccess> { 9869 + const url = '/research/groups/download/importTemplate';
  9870 + function request(): Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess> {
9900 return requester(request.url, { 9871 return requester(request.url, {
9901 method: request.method, 9872 method: request.method,
9902 - ...option,  
9903 - }) as unknown as Promise<PostServiceInvoiceDealInvoicingResultResponseSuccess>; 9873 + }) as unknown as Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess>;
9904 } 9874 }
9905 9875
9906 /** http method */ 9876 /** http method */
@@ -9910,22 +9880,22 @@ export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() =&gt; { @@ -9910,22 +9880,22 @@ export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() =&gt; {
9910 return request; 9880 return request;
9911 })(); 9881 })();
9912 9882
9913 -/** @description request parameter type for postServiceInvoiceDeleteInvoice */  
9914 -export interface PostServiceInvoiceDeleteInvoiceOption { 9883 +/** @description request parameter type for postResearchGroupsEdit */
  9884 +export interface PostResearchGroupsEditOption {
9915 /** 9885 /**
9916 * @description 9886 * @description
9917 - * dto 9887 + * request
9918 */ 9888 */
9919 body: { 9889 body: {
9920 /** 9890 /**
9921 @description 9891 @description
9922 - dto */  
9923 - dto: Dto; 9892 + request */
  9893 + request: ResearchGroupEditRequest;
9924 }; 9894 };
9925 } 9895 }
9926 9896
9927 -/** @description response type for postServiceInvoiceDeleteInvoice */  
9928 -export interface PostServiceInvoiceDeleteInvoiceResponse { 9897 +/** @description response type for postResearchGroupsEdit */
  9898 +export interface PostResearchGroupsEditResponse {
9929 /** 9899 /**
9930 * @description 9900 * @description
9931 * OK 9901 * OK
@@ -9953,25 +9923,25 @@ export interface PostServiceInvoiceDeleteInvoiceResponse { @@ -9953,25 +9923,25 @@ export interface PostServiceInvoiceDeleteInvoiceResponse {
9953 404: any; 9923 404: any;
9954 } 9924 }
9955 9925
9956 -export type PostServiceInvoiceDeleteInvoiceResponseSuccess =  
9957 - PostServiceInvoiceDeleteInvoiceResponse[200]; 9926 +export type PostResearchGroupsEditResponseSuccess =
  9927 + PostResearchGroupsEditResponse[200];
9958 /** 9928 /**
9959 * @description 9929 * @description
9960 - * 删除发票  
9961 - * @tags 发票 9930 + * 编辑课题组信息
  9931 + * @tags research-groups-controller
9962 * @produces * 9932 * @produces *
9963 * @consumes application/json 9933 * @consumes application/json
9964 */ 9934 */
9965 -export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => { 9935 +export const postResearchGroupsEdit = /* #__PURE__ */ (() => {
9966 const method = 'post'; 9936 const method = 'post';
9967 - const url = '/service/invoice/deleteInvoice'; 9937 + const url = '/research/groups/edit';
9968 function request( 9938 function request(
9969 - option: PostServiceInvoiceDeleteInvoiceOption,  
9970 - ): Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess> { 9939 + option: PostResearchGroupsEditOption,
  9940 + ): Promise<PostResearchGroupsEditResponseSuccess> {
9971 return requester(request.url, { 9941 return requester(request.url, {
9972 method: request.method, 9942 method: request.method,
9973 ...option, 9943 ...option,
9974 - }) as unknown as Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess>; 9944 + }) as unknown as Promise<PostResearchGroupsEditResponseSuccess>;
9975 } 9945 }
9976 9946
9977 /** http method */ 9947 /** http method */
@@ -9981,24 +9951,22 @@ export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() =&gt; { @@ -9981,24 +9951,22 @@ export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() =&gt; {
9981 return request; 9951 return request;
9982 })(); 9952 })();
9983 9953
9984 -/** @description request parameter type for postServiceInvoiceDownloadInvoice */  
9985 -export interface PostServiceInvoiceDownloadInvoiceOption { 9954 +/** @description request parameter type for postResearchGroupsImport */
  9955 +export interface PostResearchGroupsImportOption {
9986 /** 9956 /**
9987 * @description 9957 * @description
9988 - * recodId  
9989 - * @format int64 9958 + * file
9990 */ 9959 */
9991 - query?: { 9960 + formData: {
9992 /** 9961 /**
9993 @description 9962 @description
9994 - recodId  
9995 - @format int64 */  
9996 - recodId?: number; 9963 + file */
  9964 + file: File;
9997 }; 9965 };
9998 } 9966 }
9999 9967
10000 -/** @description response type for postServiceInvoiceDownloadInvoice */  
10001 -export interface PostServiceInvoiceDownloadInvoiceResponse { 9968 +/** @description response type for postResearchGroupsImport */
  9969 +export interface PostResearchGroupsImportResponse {
10002 /** 9970 /**
10003 * @description 9971 * @description
10004 * OK 9972 * OK
@@ -10026,25 +9994,25 @@ export interface PostServiceInvoiceDownloadInvoiceResponse { @@ -10026,25 +9994,25 @@ export interface PostServiceInvoiceDownloadInvoiceResponse {
10026 404: any; 9994 404: any;
10027 } 9995 }
10028 9996
10029 -export type PostServiceInvoiceDownloadInvoiceResponseSuccess =  
10030 - PostServiceInvoiceDownloadInvoiceResponse[200]; 9997 +export type PostResearchGroupsImportResponseSuccess =
  9998 + PostResearchGroupsImportResponse[200];
10031 /** 9999 /**
10032 * @description 10000 * @description
10033 - * 下载开票  
10034 - * @tags 发票 10001 + * 课题组信息导入
  10002 + * @tags research-groups-controller
10035 * @produces * 10003 * @produces *
10036 - * @consumes application/json 10004 + * @consumes multipart/form-data
10037 */ 10005 */
10038 -export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() => { 10006 +export const postResearchGroupsImport = /* #__PURE__ */ (() => {
10039 const method = 'post'; 10007 const method = 'post';
10040 - const url = '/service/invoice/downloadInvoice'; 10008 + const url = '/research/groups/import';
10041 function request( 10009 function request(
10042 - option?: PostServiceInvoiceDownloadInvoiceOption,  
10043 - ): Promise<PostServiceInvoiceDownloadInvoiceResponseSuccess> { 10010 + option: PostResearchGroupsImportOption,
  10011 + ): Promise<PostResearchGroupsImportResponseSuccess> {
10044 return requester(request.url, { 10012 return requester(request.url, {
10045 method: request.method, 10013 method: request.method,
10046 ...option, 10014 ...option,
10047 - }) as unknown as Promise<PostServiceInvoiceDownloadInvoiceResponseSuccess>; 10015 + }) as unknown as Promise<PostResearchGroupsImportResponseSuccess>;
10048 } 10016 }
10049 10017
10050 /** http method */ 10018 /** http method */
@@ -10054,13 +10022,32 @@ export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() =&gt; { @@ -10054,13 +10022,32 @@ export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() =&gt; {
10054 return request; 10022 return request;
10055 })(); 10023 })();
10056 10024
10057 -/** @description response type for getServiceInvoiceExportInvoiceDetailsTemplate */  
10058 -export interface GetServiceInvoiceExportInvoiceDetailsTemplateResponse { 10025 +/** @description request parameter type for postResearchGroupsList */
  10026 +export interface PostResearchGroupsListOption {
  10027 + /**
  10028 + * @description
  10029 + * request
  10030 + */
  10031 + body: {
  10032 + /**
  10033 + @description
  10034 + request */
  10035 + request: ResearchGroupListRequest;
  10036 + };
  10037 +}
  10038 +
  10039 +/** @description response type for postResearchGroupsList */
  10040 +export interface PostResearchGroupsListResponse {
10059 /** 10041 /**
10060 * @description 10042 * @description
10061 * OK 10043 * OK
10062 */ 10044 */
10063 - 200: any; 10045 + 200: ServerResult;
  10046 + /**
  10047 + * @description
  10048 + * Created
  10049 + */
  10050 + 201: any;
10064 /** 10051 /**
10065 * @description 10052 * @description
10066 * Unauthorized 10053 * Unauthorized
@@ -10078,33 +10065,36 @@ export interface GetServiceInvoiceExportInvoiceDetailsTemplateResponse { @@ -10078,33 +10065,36 @@ export interface GetServiceInvoiceExportInvoiceDetailsTemplateResponse {
10078 404: any; 10065 404: any;
10079 } 10066 }
10080 10067
10081 -export type GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess =  
10082 - GetServiceInvoiceExportInvoiceDetailsTemplateResponse[200]; 10068 +export type PostResearchGroupsListResponseSuccess =
  10069 + PostResearchGroupsListResponse[200];
10083 /** 10070 /**
10084 * @description 10071 * @description
10085 - * 导出发票明细模板  
10086 - * @tags 发票 10072 + * 课题组列表
  10073 + * @tags research-groups-controller
10087 * @produces * 10074 * @produces *
  10075 + * @consumes application/json
10088 */ 10076 */
10089 -export const getServiceInvoiceExportInvoiceDetailsTemplate =  
10090 - /* #__PURE__ */ (() => {  
10091 - const method = 'get';  
10092 - const url = '/service/invoice/exportInvoiceDetailsTemplate';  
10093 - function request(): Promise<GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess> {  
10094 - return requester(request.url, {  
10095 - method: request.method,  
10096 - }) as unknown as Promise<GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess>;  
10097 - } 10077 +export const postResearchGroupsList = /* #__PURE__ */ (() => {
  10078 + const method = 'post';
  10079 + const url = '/research/groups/list';
  10080 + function request(
  10081 + option: PostResearchGroupsListOption,
  10082 + ): Promise<PostResearchGroupsListResponseSuccess> {
  10083 + return requester(request.url, {
  10084 + method: request.method,
  10085 + ...option,
  10086 + }) as unknown as Promise<PostResearchGroupsListResponseSuccess>;
  10087 + }
10098 10088
10099 - /** http method */  
10100 - request.method = method;  
10101 - /** request url */  
10102 - request.url = url;  
10103 - return request;  
10104 - })(); 10089 + /** http method */
  10090 + request.method = method;
  10091 + /** request url */
  10092 + request.url = url;
  10093 + return request;
  10094 +})();
10105 10095
10106 -/** @description request parameter type for postServiceInvoiceExportInvoiceRecords */  
10107 -export interface PostServiceInvoiceExportInvoiceRecordsOption { 10096 +/** @description request parameter type for postServiceBankStatementDeleteBankStatement */
  10097 +export interface PostServiceBankStatementDeleteBankStatementOption {
10108 /** 10098 /**
10109 * @description 10099 * @description
10110 * dto 10100 * dto
@@ -10113,17 +10103,17 @@ export interface PostServiceInvoiceExportInvoiceRecordsOption { @@ -10113,17 +10103,17 @@ export interface PostServiceInvoiceExportInvoiceRecordsOption {
10113 /** 10103 /**
10114 @description 10104 @description
10115 dto */ 10105 dto */
10116 - dto: QueryInvoiceRecordDto; 10106 + dto: Dto;
10117 }; 10107 };
10118 } 10108 }
10119 10109
10120 -/** @description response type for postServiceInvoiceExportInvoiceRecords */  
10121 -export interface PostServiceInvoiceExportInvoiceRecordsResponse { 10110 +/** @description response type for postServiceBankStatementDeleteBankStatement */
  10111 +export interface PostServiceBankStatementDeleteBankStatementResponse {
10122 /** 10112 /**
10123 * @description 10113 * @description
10124 * OK 10114 * OK
10125 */ 10115 */
10126 - 200: any; 10116 + 200: ServerResult;
10127 /** 10117 /**
10128 * @description 10118 * @description
10129 * Created 10119 * Created
@@ -10146,36 +10136,37 @@ export interface PostServiceInvoiceExportInvoiceRecordsResponse { @@ -10146,36 +10136,37 @@ export interface PostServiceInvoiceExportInvoiceRecordsResponse {
10146 404: any; 10136 404: any;
10147 } 10137 }
10148 10138
10149 -export type PostServiceInvoiceExportInvoiceRecordsResponseSuccess =  
10150 - PostServiceInvoiceExportInvoiceRecordsResponse[200]; 10139 +export type PostServiceBankStatementDeleteBankStatementResponseSuccess =
  10140 + PostServiceBankStatementDeleteBankStatementResponse[200];
10151 /** 10141 /**
10152 * @description 10142 * @description
10153 - * exportInvoiceRecords  
10154 - * @tags 发票 10143 + * 删除银行流水
  10144 + * @tags 银行流水
10155 * @produces * 10145 * @produces *
10156 * @consumes application/json 10146 * @consumes application/json
10157 */ 10147 */
10158 -export const postServiceInvoiceExportInvoiceRecords = /* #__PURE__ */ (() => {  
10159 - const method = 'post';  
10160 - const url = '/service/invoice/exportInvoiceRecords';  
10161 - function request(  
10162 - option: PostServiceInvoiceExportInvoiceRecordsOption,  
10163 - ): Promise<PostServiceInvoiceExportInvoiceRecordsResponseSuccess> {  
10164 - return requester(request.url, {  
10165 - method: request.method,  
10166 - ...option,  
10167 - }) as unknown as Promise<PostServiceInvoiceExportInvoiceRecordsResponseSuccess>;  
10168 - } 10148 +export const postServiceBankStatementDeleteBankStatement =
  10149 + /* #__PURE__ */ (() => {
  10150 + const method = 'post';
  10151 + const url = '/service/bankStatement/deleteBankStatement';
  10152 + function request(
  10153 + option: PostServiceBankStatementDeleteBankStatementOption,
  10154 + ): Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess> {
  10155 + return requester(request.url, {
  10156 + method: request.method,
  10157 + ...option,
  10158 + }) as unknown as Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess>;
  10159 + }
10169 10160
10170 - /** http method */  
10171 - request.method = method;  
10172 - /** request url */  
10173 - request.url = url;  
10174 - return request;  
10175 -})(); 10161 + /** http method */
  10162 + request.method = method;
  10163 + /** request url */
  10164 + request.url = url;
  10165 + return request;
  10166 + })();
10176 10167
10177 -/** @description request parameter type for postServiceInvoiceFindInvoice */  
10178 -export interface PostServiceInvoiceFindInvoiceOption { 10168 +/** @description request parameter type for postServiceBankStatementEditBankStatement */
  10169 +export interface PostServiceBankStatementEditBankStatementOption {
10179 /** 10170 /**
10180 * @description 10171 * @description
10181 * dto 10172 * dto
@@ -10188,8 +10179,8 @@ export interface PostServiceInvoiceFindInvoiceOption { @@ -10188,8 +10179,8 @@ export interface PostServiceInvoiceFindInvoiceOption {
10188 }; 10179 };
10189 } 10180 }
10190 10181
10191 -/** @description response type for postServiceInvoiceFindInvoice */  
10192 -export interface PostServiceInvoiceFindInvoiceResponse { 10182 +/** @description response type for postServiceBankStatementEditBankStatement */
  10183 +export interface PostServiceBankStatementEditBankStatementResponse {
10193 /** 10184 /**
10194 * @description 10185 * @description
10195 * OK 10186 * OK
@@ -10217,57 +10208,42 @@ export interface PostServiceInvoiceFindInvoiceResponse { @@ -10217,57 +10208,42 @@ export interface PostServiceInvoiceFindInvoiceResponse {
10217 404: any; 10208 404: any;
10218 } 10209 }
10219 10210
10220 -export type PostServiceInvoiceFindInvoiceResponseSuccess =  
10221 - PostServiceInvoiceFindInvoiceResponse[200]; 10211 +export type PostServiceBankStatementEditBankStatementResponseSuccess =
  10212 + PostServiceBankStatementEditBankStatementResponse[200];
10222 /** 10213 /**
10223 * @description 10214 * @description
10224 - * 不分页查询发票  
10225 - * @tags 发票 10215 + * 编辑银行流水
  10216 + * @tags 银行流水
10226 * @produces * 10217 * @produces *
10227 * @consumes application/json 10218 * @consumes application/json
10228 */ 10219 */
10229 -export const postServiceInvoiceFindInvoice = /* #__PURE__ */ (() => {  
10230 - const method = 'post';  
10231 - const url = '/service/invoice/findInvoice';  
10232 - function request(  
10233 - option: PostServiceInvoiceFindInvoiceOption,  
10234 - ): Promise<PostServiceInvoiceFindInvoiceResponseSuccess> {  
10235 - return requester(request.url, {  
10236 - method: request.method,  
10237 - ...option,  
10238 - }) as unknown as Promise<PostServiceInvoiceFindInvoiceResponseSuccess>;  
10239 - }  
10240 -  
10241 - /** http method */  
10242 - request.method = method;  
10243 - /** request url */  
10244 - request.url = url;  
10245 - return request;  
10246 -})(); 10220 +export const postServiceBankStatementEditBankStatement =
  10221 + /* #__PURE__ */ (() => {
  10222 + const method = 'post';
  10223 + const url = '/service/bankStatement/editBankStatement';
  10224 + function request(
  10225 + option: PostServiceBankStatementEditBankStatementOption,
  10226 + ): Promise<PostServiceBankStatementEditBankStatementResponseSuccess> {
  10227 + return requester(request.url, {
  10228 + method: request.method,
  10229 + ...option,
  10230 + }) as unknown as Promise<PostServiceBankStatementEditBankStatementResponseSuccess>;
  10231 + }
10247 10232
10248 -/** @description request parameter type for postServiceInvoiceGetInvoiceRecord */  
10249 -export interface PostServiceInvoiceGetInvoiceRecordOption {  
10250 - /**  
10251 - * @description  
10252 - * id  
10253 - * @format int64  
10254 - */  
10255 - query?: {  
10256 - /**  
10257 - @description  
10258 - id  
10259 - @format int64 */  
10260 - id?: number;  
10261 - };  
10262 -} 10233 + /** http method */
  10234 + request.method = method;
  10235 + /** request url */
  10236 + request.url = url;
  10237 + return request;
  10238 + })();
10263 10239
10264 -/** @description response type for postServiceInvoiceGetInvoiceRecord */  
10265 -export interface PostServiceInvoiceGetInvoiceRecordResponse { 10240 +/** @description response type for postServiceBankStatementExportTemplate */
  10241 +export interface PostServiceBankStatementExportTemplateResponse {
10266 /** 10242 /**
10267 * @description 10243 * @description
10268 * OK 10244 * OK
10269 */ 10245 */
10270 - 200: ServerResult; 10246 + 200: any;
10271 /** 10247 /**
10272 * @description 10248 * @description
10273 * Created 10249 * Created
@@ -10290,25 +10266,22 @@ export interface PostServiceInvoiceGetInvoiceRecordResponse { @@ -10290,25 +10266,22 @@ export interface PostServiceInvoiceGetInvoiceRecordResponse {
10290 404: any; 10266 404: any;
10291 } 10267 }
10292 10268
10293 -export type PostServiceInvoiceGetInvoiceRecordResponseSuccess =  
10294 - PostServiceInvoiceGetInvoiceRecordResponse[200]; 10269 +export type PostServiceBankStatementExportTemplateResponseSuccess =
  10270 + PostServiceBankStatementExportTemplateResponse[200];
10295 /** 10271 /**
10296 * @description 10272 * @description
10297 - * 获取开票记录  
10298 - * @tags 发票 10273 + * 下载银行流水模板
  10274 + * @tags 银行流水
10299 * @produces * 10275 * @produces *
10300 * @consumes application/json 10276 * @consumes application/json
10301 */ 10277 */
10302 -export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() => { 10278 +export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() => {
10303 const method = 'post'; 10279 const method = 'post';
10304 - const url = '/service/invoice/getInvoiceRecord';  
10305 - function request(  
10306 - option?: PostServiceInvoiceGetInvoiceRecordOption,  
10307 - ): Promise<PostServiceInvoiceGetInvoiceRecordResponseSuccess> { 10280 + const url = '/service/bankStatement/exportTemplate';
  10281 + function request(): Promise<PostServiceBankStatementExportTemplateResponseSuccess> {
10308 return requester(request.url, { 10282 return requester(request.url, {
10309 method: request.method, 10283 method: request.method,
10310 - ...option,  
10311 - }) as unknown as Promise<PostServiceInvoiceGetInvoiceRecordResponseSuccess>; 10284 + }) as unknown as Promise<PostServiceBankStatementExportTemplateResponseSuccess>;
10312 } 10285 }
10313 10286
10314 /** http method */ 10287 /** http method */
@@ -10318,38 +10291,22 @@ export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() =&gt; { @@ -10318,38 +10291,22 @@ export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() =&gt; {
10318 return request; 10291 return request;
10319 })(); 10292 })();
10320 10293
10321 -/** @description request parameter type for postServiceInvoiceImportInvoiceDetails */  
10322 -export interface PostServiceInvoiceImportInvoiceDetailsOption { 10294 +/** @description request parameter type for postServiceBankStatementImportBankStatementForm */
  10295 +export interface PostServiceBankStatementImportBankStatementFormOption {
10323 /** 10296 /**
10324 * @description 10297 * @description
10325 - * detailsExcel 10298 + * file
10326 */ 10299 */
10327 formData: { 10300 formData: {
10328 /** 10301 /**
10329 @description 10302 @description
10330 - detailsExcel */  
10331 - detailsExcel: File;  
10332 - };  
10333 -}  
10334 -  
10335 -/** @description request parameter type for postServiceInvoiceImportInvoiceDetails */  
10336 -export interface PostServiceInvoiceImportInvoiceDetailsOption {  
10337 - /**  
10338 - * @description  
10339 - * invoiceRecordId  
10340 - * @format int64  
10341 - */  
10342 - query: {  
10343 - /**  
10344 - @description  
10345 - invoiceRecordId  
10346 - @format int64 */  
10347 - invoiceRecordId: number; 10303 + file */
  10304 + file: File;
10348 }; 10305 };
10349 } 10306 }
10350 10307
10351 -/** @description response type for postServiceInvoiceImportInvoiceDetails */  
10352 -export interface PostServiceInvoiceImportInvoiceDetailsResponse { 10308 +/** @description response type for postServiceBankStatementImportBankStatementForm */
  10309 +export interface PostServiceBankStatementImportBankStatementFormResponse {
10353 /** 10310 /**
10354 * @description 10311 * @description
10355 * OK 10312 * OK
@@ -10377,36 +10334,37 @@ export interface PostServiceInvoiceImportInvoiceDetailsResponse { @@ -10377,36 +10334,37 @@ export interface PostServiceInvoiceImportInvoiceDetailsResponse {
10377 404: any; 10334 404: any;
10378 } 10335 }
10379 10336
10380 -export type PostServiceInvoiceImportInvoiceDetailsResponseSuccess =  
10381 - PostServiceInvoiceImportInvoiceDetailsResponse[200]; 10337 +export type PostServiceBankStatementImportBankStatementFormResponseSuccess =
  10338 + PostServiceBankStatementImportBankStatementFormResponse[200];
10382 /** 10339 /**
10383 * @description 10340 * @description
10384 - * 导入发票明细  
10385 - * @tags 发票 10341 + * 导入银行流水表格
  10342 + * @tags 银行流水
10386 * @produces * 10343 * @produces *
10387 * @consumes multipart/form-data 10344 * @consumes multipart/form-data
10388 */ 10345 */
10389 -export const postServiceInvoiceImportInvoiceDetails = /* #__PURE__ */ (() => {  
10390 - const method = 'post';  
10391 - const url = '/service/invoice/importInvoiceDetails';  
10392 - function request(  
10393 - option: PostServiceInvoiceImportInvoiceDetailsOption,  
10394 - ): Promise<PostServiceInvoiceImportInvoiceDetailsResponseSuccess> {  
10395 - return requester(request.url, {  
10396 - method: request.method,  
10397 - ...option,  
10398 - }) as unknown as Promise<PostServiceInvoiceImportInvoiceDetailsResponseSuccess>;  
10399 - } 10346 +export const postServiceBankStatementImportBankStatementForm =
  10347 + /* #__PURE__ */ (() => {
  10348 + const method = 'post';
  10349 + const url = '/service/bankStatement/importBankStatementForm';
  10350 + function request(
  10351 + option: PostServiceBankStatementImportBankStatementFormOption,
  10352 + ): Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess> {
  10353 + return requester(request.url, {
  10354 + method: request.method,
  10355 + ...option,
  10356 + }) as unknown as Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess>;
  10357 + }
10400 10358
10401 - /** http method */  
10402 - request.method = method;  
10403 - /** request url */  
10404 - request.url = url;  
10405 - return request;  
10406 -})(); 10359 + /** http method */
  10360 + request.method = method;
  10361 + /** request url */
  10362 + request.url = url;
  10363 + return request;
  10364 + })();
10407 10365
10408 -/** @description request parameter type for postServiceInvoiceInvoiceWriteOff */  
10409 -export interface PostServiceInvoiceInvoiceWriteOffOption { 10366 +/** @description request parameter type for postServiceBankStatementQueryBankStatement */
  10367 +export interface PostServiceBankStatementQueryBankStatementOption {
10410 /** 10368 /**
10411 * @description 10369 * @description
10412 * dto 10370 * dto
@@ -10415,12 +10373,12 @@ export interface PostServiceInvoiceInvoiceWriteOffOption { @@ -10415,12 +10373,12 @@ export interface PostServiceInvoiceInvoiceWriteOffOption {
10415 /** 10373 /**
10416 @description 10374 @description
10417 dto */ 10375 dto */
10418 - dto: Dto; 10376 + dto: QueryBankStatementDto;
10419 }; 10377 };
10420 } 10378 }
10421 10379
10422 -/** @description response type for postServiceInvoiceInvoiceWriteOff */  
10423 -export interface PostServiceInvoiceInvoiceWriteOffResponse { 10380 +/** @description response type for postServiceBankStatementQueryBankStatement */
  10381 +export interface PostServiceBankStatementQueryBankStatementResponse {
10424 /** 10382 /**
10425 * @description 10383 * @description
10426 * OK 10384 * OK
@@ -10448,36 +10406,37 @@ export interface PostServiceInvoiceInvoiceWriteOffResponse { @@ -10448,36 +10406,37 @@ export interface PostServiceInvoiceInvoiceWriteOffResponse {
10448 404: any; 10406 404: any;
10449 } 10407 }
10450 10408
10451 -export type PostServiceInvoiceInvoiceWriteOffResponseSuccess =  
10452 - PostServiceInvoiceInvoiceWriteOffResponse[200]; 10409 +export type PostServiceBankStatementQueryBankStatementResponseSuccess =
  10410 + PostServiceBankStatementQueryBankStatementResponse[200];
10453 /** 10411 /**
10454 * @description 10412 * @description
10455 - * 发票核销  
10456 - * @tags 发票 10413 + * 查询银行流水
  10414 + * @tags 银行流水
10457 * @produces * 10415 * @produces *
10458 * @consumes application/json 10416 * @consumes application/json
10459 */ 10417 */
10460 -export const postServiceInvoiceInvoiceWriteOff = /* #__PURE__ */ (() => {  
10461 - const method = 'post';  
10462 - const url = '/service/invoice/invoiceWriteOff';  
10463 - function request(  
10464 - option: PostServiceInvoiceInvoiceWriteOffOption,  
10465 - ): Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess> {  
10466 - return requester(request.url, {  
10467 - method: request.method,  
10468 - ...option,  
10469 - }) as unknown as Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess>;  
10470 - } 10418 +export const postServiceBankStatementQueryBankStatement =
  10419 + /* #__PURE__ */ (() => {
  10420 + const method = 'post';
  10421 + const url = '/service/bankStatement/queryBankStatement';
  10422 + function request(
  10423 + option: PostServiceBankStatementQueryBankStatementOption,
  10424 + ): Promise<PostServiceBankStatementQueryBankStatementResponseSuccess> {
  10425 + return requester(request.url, {
  10426 + method: request.method,
  10427 + ...option,
  10428 + }) as unknown as Promise<PostServiceBankStatementQueryBankStatementResponseSuccess>;
  10429 + }
10471 10430
10472 - /** http method */  
10473 - request.method = method;  
10474 - /** request url */  
10475 - request.url = url;  
10476 - return request;  
10477 -})(); 10431 + /** http method */
  10432 + request.method = method;
  10433 + /** request url */
  10434 + request.url = url;
  10435 + return request;
  10436 + })();
10478 10437
10479 -/** @description request parameter type for postServiceInvoiceInvoicing */  
10480 -export interface PostServiceInvoiceInvoicingOption { 10438 +/** @description request parameter type for postServiceInvoiceAddInvoice */
  10439 +export interface PostServiceInvoiceAddInvoiceOption {
10481 /** 10440 /**
10482 * @description 10441 * @description
10483 * dto 10442 * dto
@@ -10486,12 +10445,12 @@ export interface PostServiceInvoiceInvoicingOption { @@ -10486,12 +10445,12 @@ export interface PostServiceInvoiceInvoicingOption {
10486 /** 10445 /**
10487 @description 10446 @description
10488 dto */ 10447 dto */
10489 - dto: Dto; 10448 + dto: InvoiceDto;
10490 }; 10449 };
10491 } 10450 }
10492 10451
10493 -/** @description response type for postServiceInvoiceInvoicing */  
10494 -export interface PostServiceInvoiceInvoicingResponse { 10452 +/** @description response type for postServiceInvoiceAddInvoice */
  10453 +export interface PostServiceInvoiceAddInvoiceResponse {
10495 /** 10454 /**
10496 * @description 10455 * @description
10497 * OK 10456 * OK
@@ -10519,25 +10478,25 @@ export interface PostServiceInvoiceInvoicingResponse { @@ -10519,25 +10478,25 @@ export interface PostServiceInvoiceInvoicingResponse {
10519 404: any; 10478 404: any;
10520 } 10479 }
10521 10480
10522 -export type PostServiceInvoiceInvoicingResponseSuccess =  
10523 - PostServiceInvoiceInvoicingResponse[200]; 10481 +export type PostServiceInvoiceAddInvoiceResponseSuccess =
  10482 + PostServiceInvoiceAddInvoiceResponse[200];
10524 /** 10483 /**
10525 * @description 10484 * @description
10526 - * 10485 + * 添加发
10527 * @tags 发票 10486 * @tags 发票
10528 * @produces * 10487 * @produces *
10529 * @consumes application/json 10488 * @consumes application/json
10530 */ 10489 */
10531 -export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() => { 10490 +export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => {
10532 const method = 'post'; 10491 const method = 'post';
10533 - const url = '/service/invoice/invoicing'; 10492 + const url = '/service/invoice/addInvoice';
10534 function request( 10493 function request(
10535 - option: PostServiceInvoiceInvoicingOption,  
10536 - ): Promise<PostServiceInvoiceInvoicingResponseSuccess> { 10494 + option: PostServiceInvoiceAddInvoiceOption,
  10495 + ): Promise<PostServiceInvoiceAddInvoiceResponseSuccess> {
10537 return requester(request.url, { 10496 return requester(request.url, {
10538 method: request.method, 10497 method: request.method,
10539 ...option, 10498 ...option,
10540 - }) as unknown as Promise<PostServiceInvoiceInvoicingResponseSuccess>; 10499 + }) as unknown as Promise<PostServiceInvoiceAddInvoiceResponseSuccess>;
10541 } 10500 }
10542 10501
10543 /** http method */ 10502 /** http method */
@@ -10547,8 +10506,8 @@ export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() =&gt; { @@ -10547,8 +10506,8 @@ export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() =&gt; {
10547 return request; 10506 return request;
10548 })(); 10507 })();
10549 10508
10550 -/** @description request parameter type for postServiceInvoiceModifyRecord */  
10551 -export interface PostServiceInvoiceModifyRecordOption { 10509 +/** @description request parameter type for postServiceInvoiceCancelInvoiceAndBankStatement */
  10510 +export interface PostServiceInvoiceCancelInvoiceAndBankStatementOption {
10552 /** 10511 /**
10553 * @description 10512 * @description
10554 * dto 10513 * dto
@@ -10557,12 +10516,12 @@ export interface PostServiceInvoiceModifyRecordOption { @@ -10557,12 +10516,12 @@ export interface PostServiceInvoiceModifyRecordOption {
10557 /** 10516 /**
10558 @description 10517 @description
10559 dto */ 10518 dto */
10560 - dto: InvoiceRecordDto; 10519 + dto: CancelInvoiceAndBankStatementDto;
10561 }; 10520 };
10562 } 10521 }
10563 10522
10564 -/** @description response type for postServiceInvoiceModifyRecord */  
10565 -export interface PostServiceInvoiceModifyRecordResponse { 10523 +/** @description response type for postServiceInvoiceCancelInvoiceAndBankStatement */
  10524 +export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse {
10566 /** 10525 /**
10567 * @description 10526 * @description
10568 * OK 10527 * OK
@@ -10590,36 +10549,37 @@ export interface PostServiceInvoiceModifyRecordResponse { @@ -10590,36 +10549,37 @@ export interface PostServiceInvoiceModifyRecordResponse {
10590 404: any; 10549 404: any;
10591 } 10550 }
10592 10551
10593 -export type PostServiceInvoiceModifyRecordResponseSuccess =  
10594 - PostServiceInvoiceModifyRecordResponse[200]; 10552 +export type PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess =
  10553 + PostServiceInvoiceCancelInvoiceAndBankStatementResponse[200];
10595 /** 10554 /**
10596 * @description 10555 * @description
10597 - * 修改开票记录 10556 + * 取消发票与银行流水的关联
10598 * @tags 发票 10557 * @tags 发票
10599 * @produces * 10558 * @produces *
10600 * @consumes application/json 10559 * @consumes application/json
10601 */ 10560 */
10602 -export const postServiceInvoiceModifyRecord = /* #__PURE__ */ (() => {  
10603 - const method = 'post';  
10604 - const url = '/service/invoice/modifyRecord';  
10605 - function request(  
10606 - option: PostServiceInvoiceModifyRecordOption,  
10607 - ): Promise<PostServiceInvoiceModifyRecordResponseSuccess> {  
10608 - return requester(request.url, {  
10609 - method: request.method,  
10610 - ...option,  
10611 - }) as unknown as Promise<PostServiceInvoiceModifyRecordResponseSuccess>;  
10612 - } 10561 +export const postServiceInvoiceCancelInvoiceAndBankStatement =
  10562 + /* #__PURE__ */ (() => {
  10563 + const method = 'post';
  10564 + const url = '/service/invoice/cancelInvoiceAndBankStatement';
  10565 + function request(
  10566 + option: PostServiceInvoiceCancelInvoiceAndBankStatementOption,
  10567 + ): Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess> {
  10568 + return requester(request.url, {
  10569 + method: request.method,
  10570 + ...option,
  10571 + }) as unknown as Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess>;
  10572 + }
10613 10573
10614 - /** http method */  
10615 - request.method = method;  
10616 - /** request url */  
10617 - request.url = url;  
10618 - return request;  
10619 -})(); 10574 + /** http method */
  10575 + request.method = method;
  10576 + /** request url */
  10577 + request.url = url;
  10578 + return request;
  10579 + })();
10620 10580
10621 -/** @description request parameter type for postServiceInvoiceQueryInvoice */  
10622 -export interface PostServiceInvoiceQueryInvoiceOption { 10581 +/** @description request parameter type for postServiceInvoiceDeleteInvoice */
  10582 +export interface PostServiceInvoiceDeleteInvoiceOption {
10623 /** 10583 /**
10624 * @description 10584 * @description
10625 * dto 10585 * dto
@@ -10632,8 +10592,8 @@ export interface PostServiceInvoiceQueryInvoiceOption { @@ -10632,8 +10592,8 @@ export interface PostServiceInvoiceQueryInvoiceOption {
10632 }; 10592 };
10633 } 10593 }
10634 10594
10635 -/** @description response type for postServiceInvoiceQueryInvoice */  
10636 -export interface PostServiceInvoiceQueryInvoiceResponse { 10595 +/** @description response type for postServiceInvoiceDeleteInvoice */
  10596 +export interface PostServiceInvoiceDeleteInvoiceResponse {
10637 /** 10597 /**
10638 * @description 10598 * @description
10639 * OK 10599 * OK
@@ -10661,25 +10621,25 @@ export interface PostServiceInvoiceQueryInvoiceResponse { @@ -10661,25 +10621,25 @@ export interface PostServiceInvoiceQueryInvoiceResponse {
10661 404: any; 10621 404: any;
10662 } 10622 }
10663 10623
10664 -export type PostServiceInvoiceQueryInvoiceResponseSuccess =  
10665 - PostServiceInvoiceQueryInvoiceResponse[200]; 10624 +export type PostServiceInvoiceDeleteInvoiceResponseSuccess =
  10625 + PostServiceInvoiceDeleteInvoiceResponse[200];
10666 /** 10626 /**
10667 * @description 10627 * @description
10668 - * 发票页查询 10628 + * 删除发票
10669 * @tags 发票 10629 * @tags 发票
10670 * @produces * 10630 * @produces *
10671 * @consumes application/json 10631 * @consumes application/json
10672 */ 10632 */
10673 -export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => { 10633 +export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => {
10674 const method = 'post'; 10634 const method = 'post';
10675 - const url = '/service/invoice/queryInvoice'; 10635 + const url = '/service/invoice/deleteInvoice';
10676 function request( 10636 function request(
10677 - option: PostServiceInvoiceQueryInvoiceOption,  
10678 - ): Promise<PostServiceInvoiceQueryInvoiceResponseSuccess> { 10637 + option: PostServiceInvoiceDeleteInvoiceOption,
  10638 + ): Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess> {
10679 return requester(request.url, { 10639 return requester(request.url, {
10680 method: request.method, 10640 method: request.method,
10681 ...option, 10641 ...option,
10682 - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceResponseSuccess>; 10642 + }) as unknown as Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess>;
10683 } 10643 }
10684 10644
10685 /** http method */ 10645 /** http method */
@@ -10689,8 +10649,8 @@ export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() =&gt; { @@ -10689,8 +10649,8 @@ export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() =&gt; {
10689 return request; 10649 return request;
10690 })(); 10650 })();
10691 10651
10692 -/** @description request parameter type for postServiceInvoiceQueryInvoiceDetail */  
10693 -export interface PostServiceInvoiceQueryInvoiceDetailOption { 10652 +/** @description request parameter type for postServiceInvoiceFindInvoice */
  10653 +export interface PostServiceInvoiceFindInvoiceOption {
10694 /** 10654 /**
10695 * @description 10655 * @description
10696 * dto 10656 * dto
@@ -10699,12 +10659,12 @@ export interface PostServiceInvoiceQueryInvoiceDetailOption { @@ -10699,12 +10659,12 @@ export interface PostServiceInvoiceQueryInvoiceDetailOption {
10699 /** 10659 /**
10700 @description 10660 @description
10701 dto */ 10661 dto */
10702 - dto: QueryInvoiceDetailDto; 10662 + dto: Dto;
10703 }; 10663 };
10704 } 10664 }
10705 10665
10706 -/** @description response type for postServiceInvoiceQueryInvoiceDetail */  
10707 -export interface PostServiceInvoiceQueryInvoiceDetailResponse { 10666 +/** @description response type for postServiceInvoiceFindInvoice */
  10667 +export interface PostServiceInvoiceFindInvoiceResponse {
10708 /** 10668 /**
10709 * @description 10669 * @description
10710 * OK 10670 * OK
@@ -10732,25 +10692,25 @@ export interface PostServiceInvoiceQueryInvoiceDetailResponse { @@ -10732,25 +10692,25 @@ export interface PostServiceInvoiceQueryInvoiceDetailResponse {
10732 404: any; 10692 404: any;
10733 } 10693 }
10734 10694
10735 -export type PostServiceInvoiceQueryInvoiceDetailResponseSuccess =  
10736 - PostServiceInvoiceQueryInvoiceDetailResponse[200]; 10695 +export type PostServiceInvoiceFindInvoiceResponseSuccess =
  10696 + PostServiceInvoiceFindInvoiceResponse[200];
10737 /** 10697 /**
10738 * @description 10698 * @description
10739 - * 查看发票详情 10699 + * 不分页查询发票
10740 * @tags 发票 10700 * @tags 发票
10741 * @produces * 10701 * @produces *
10742 * @consumes application/json 10702 * @consumes application/json
10743 */ 10703 */
10744 -export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => { 10704 +export const postServiceInvoiceFindInvoice = /* #__PURE__ */ (() => {
10745 const method = 'post'; 10705 const method = 'post';
10746 - const url = '/service/invoice/queryInvoiceDetail'; 10706 + const url = '/service/invoice/findInvoice';
10747 function request( 10707 function request(
10748 - option: PostServiceInvoiceQueryInvoiceDetailOption,  
10749 - ): Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess> { 10708 + option: PostServiceInvoiceFindInvoiceOption,
  10709 + ): Promise<PostServiceInvoiceFindInvoiceResponseSuccess> {
10750 return requester(request.url, { 10710 return requester(request.url, {
10751 method: request.method, 10711 method: request.method,
10752 ...option, 10712 ...option,
10753 - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess>; 10713 + }) as unknown as Promise<PostServiceInvoiceFindInvoiceResponseSuccess>;
10754 } 10714 }
10755 10715
10756 /** http method */ 10716 /** http method */
@@ -10760,8 +10720,8 @@ export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() =&gt; { @@ -10760,8 +10720,8 @@ export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() =&gt; {
10760 return request; 10720 return request;
10761 })(); 10721 })();
10762 10722
10763 -/** @description request parameter type for postServiceInvoiceQueryInvoiceRecordList */  
10764 -export interface PostServiceInvoiceQueryInvoiceRecordListOption { 10723 +/** @description request parameter type for postServiceInvoiceInvoiceWriteOff */
  10724 +export interface PostServiceInvoiceInvoiceWriteOffOption {
10765 /** 10725 /**
10766 * @description 10726 * @description
10767 * dto 10727 * dto
@@ -10770,12 +10730,12 @@ export interface PostServiceInvoiceQueryInvoiceRecordListOption { @@ -10770,12 +10730,12 @@ export interface PostServiceInvoiceQueryInvoiceRecordListOption {
10770 /** 10730 /**
10771 @description 10731 @description
10772 dto */ 10732 dto */
10773 - dto: QueryInvoiceRecordDto; 10733 + dto: Dto;
10774 }; 10734 };
10775 } 10735 }
10776 10736
10777 -/** @description response type for postServiceInvoiceQueryInvoiceRecordList */  
10778 -export interface PostServiceInvoiceQueryInvoiceRecordListResponse { 10737 +/** @description response type for postServiceInvoiceInvoiceWriteOff */
  10738 +export interface PostServiceInvoiceInvoiceWriteOffResponse {
10779 /** 10739 /**
10780 * @description 10740 * @description
10781 * OK 10741 * OK
@@ -10803,25 +10763,25 @@ export interface PostServiceInvoiceQueryInvoiceRecordListResponse { @@ -10803,25 +10763,25 @@ export interface PostServiceInvoiceQueryInvoiceRecordListResponse {
10803 404: any; 10763 404: any;
10804 } 10764 }
10805 10765
10806 -export type PostServiceInvoiceQueryInvoiceRecordListResponseSuccess =  
10807 - PostServiceInvoiceQueryInvoiceRecordListResponse[200]; 10766 +export type PostServiceInvoiceInvoiceWriteOffResponseSuccess =
  10767 + PostServiceInvoiceInvoiceWriteOffResponse[200];
10808 /** 10768 /**
10809 * @description 10769 * @description
10810 - * 获取开票记录列表 10770 + * 发票核销
10811 * @tags 发票 10771 * @tags 发票
10812 * @produces * 10772 * @produces *
10813 * @consumes application/json 10773 * @consumes application/json
10814 */ 10774 */
10815 -export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() => { 10775 +export const postServiceInvoiceInvoiceWriteOff = /* #__PURE__ */ (() => {
10816 const method = 'post'; 10776 const method = 'post';
10817 - const url = '/service/invoice/queryInvoiceRecordList'; 10777 + const url = '/service/invoice/invoiceWriteOff';
10818 function request( 10778 function request(
10819 - option: PostServiceInvoiceQueryInvoiceRecordListOption,  
10820 - ): Promise<PostServiceInvoiceQueryInvoiceRecordListResponseSuccess> { 10779 + option: PostServiceInvoiceInvoiceWriteOffOption,
  10780 + ): Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess> {
10821 return requester(request.url, { 10781 return requester(request.url, {
10822 method: request.method, 10782 method: request.method,
10823 ...option, 10783 ...option,
10824 - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceRecordListResponseSuccess>; 10784 + }) as unknown as Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess>;
10825 } 10785 }
10826 10786
10827 /** http method */ 10787 /** http method */
@@ -10831,57 +10791,8 @@ export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() =&gt; { @@ -10831,57 +10791,8 @@ export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() =&gt; {
10831 return request; 10791 return request;
10832 })(); 10792 })();
10833 10793
10834 -/** @description response type for getServiceInvoiceQueryReadyInvoiceRecordList */  
10835 -export interface GetServiceInvoiceQueryReadyInvoiceRecordListResponse {  
10836 - /**  
10837 - * @description  
10838 - * OK  
10839 - */  
10840 - 200: ServerResult;  
10841 - /**  
10842 - * @description  
10843 - * Unauthorized  
10844 - */  
10845 - 401: any;  
10846 - /**  
10847 - * @description  
10848 - * Forbidden  
10849 - */  
10850 - 403: any;  
10851 - /**  
10852 - * @description  
10853 - * Not Found  
10854 - */  
10855 - 404: any;  
10856 -}  
10857 -  
10858 -export type GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess =  
10859 - GetServiceInvoiceQueryReadyInvoiceRecordListResponse[200];  
10860 -/**  
10861 - * @description  
10862 - * 获取要开票记录列表  
10863 - * @tags 发票  
10864 - * @produces *  
10865 - */  
10866 -export const getServiceInvoiceQueryReadyInvoiceRecordList =  
10867 - /* #__PURE__ */ (() => {  
10868 - const method = 'get';  
10869 - const url = '/service/invoice/queryReadyInvoiceRecordList';  
10870 - function request(): Promise<GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess> {  
10871 - return requester(request.url, {  
10872 - method: request.method,  
10873 - }) as unknown as Promise<GetServiceInvoiceQueryReadyInvoiceRecordListResponseSuccess>;  
10874 - }  
10875 -  
10876 - /** http method */  
10877 - request.method = method;  
10878 - /** request url */  
10879 - request.url = url;  
10880 - return request;  
10881 - })();  
10882 -  
10883 -/** @description request parameter type for postServiceInvoiceReissue */  
10884 -export interface PostServiceInvoiceReissueOption { 10794 +/** @description request parameter type for postServiceInvoiceQueryInvoice */
  10795 +export interface PostServiceInvoiceQueryInvoiceOption {
10885 /** 10796 /**
10886 * @description 10797 * @description
10887 * dto 10798 * dto
@@ -10890,12 +10801,12 @@ export interface PostServiceInvoiceReissueOption { @@ -10890,12 +10801,12 @@ export interface PostServiceInvoiceReissueOption {
10890 /** 10801 /**
10891 @description 10802 @description
10892 dto */ 10803 dto */
10893 - dto: ReissueInvoiceDto; 10804 + dto: Dto;
10894 }; 10805 };
10895 } 10806 }
10896 10807
10897 -/** @description response type for postServiceInvoiceReissue */  
10898 -export interface PostServiceInvoiceReissueResponse { 10808 +/** @description response type for postServiceInvoiceQueryInvoice */
  10809 +export interface PostServiceInvoiceQueryInvoiceResponse {
10899 /** 10810 /**
10900 * @description 10811 * @description
10901 * OK 10812 * OK
@@ -10923,25 +10834,25 @@ export interface PostServiceInvoiceReissueResponse { @@ -10923,25 +10834,25 @@ export interface PostServiceInvoiceReissueResponse {
10923 404: any; 10834 404: any;
10924 } 10835 }
10925 10836
10926 -export type PostServiceInvoiceReissueResponseSuccess =  
10927 - PostServiceInvoiceReissueResponse[200]; 10837 +export type PostServiceInvoiceQueryInvoiceResponseSuccess =
  10838 + PostServiceInvoiceQueryInvoiceResponse[200];
10928 /** 10839 /**
10929 * @description 10840 * @description
10930 - * 重新开票 10841 + * 发票页查询
10931 * @tags 发票 10842 * @tags 发票
10932 * @produces * 10843 * @produces *
10933 * @consumes application/json 10844 * @consumes application/json
10934 */ 10845 */
10935 -export const postServiceInvoiceReissue = /* #__PURE__ */ (() => { 10846 +export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => {
10936 const method = 'post'; 10847 const method = 'post';
10937 - const url = '/service/invoice/reissue'; 10848 + const url = '/service/invoice/queryInvoice';
10938 function request( 10849 function request(
10939 - option: PostServiceInvoiceReissueOption,  
10940 - ): Promise<PostServiceInvoiceReissueResponseSuccess> { 10850 + option: PostServiceInvoiceQueryInvoiceOption,
  10851 + ): Promise<PostServiceInvoiceQueryInvoiceResponseSuccess> {
10941 return requester(request.url, { 10852 return requester(request.url, {
10942 method: request.method, 10853 method: request.method,
10943 ...option, 10854 ...option,
10944 - }) as unknown as Promise<PostServiceInvoiceReissueResponseSuccess>; 10855 + }) as unknown as Promise<PostServiceInvoiceQueryInvoiceResponseSuccess>;
10945 } 10856 }
10946 10857
10947 /** http method */ 10858 /** http method */
@@ -10951,8 +10862,8 @@ export const postServiceInvoiceReissue = /* #__PURE__ */ (() =&gt; { @@ -10951,8 +10862,8 @@ export const postServiceInvoiceReissue = /* #__PURE__ */ (() =&gt; {
10951 return request; 10862 return request;
10952 })(); 10863 })();
10953 10864
10954 -/** @description request parameter type for postServiceInvoiceReissueAudit */  
10955 -export interface PostServiceInvoiceReissueAuditOption { 10865 +/** @description request parameter type for postServiceInvoiceQueryInvoiceDetail */
  10866 +export interface PostServiceInvoiceQueryInvoiceDetailOption {
10956 /** 10867 /**
10957 * @description 10868 * @description
10958 * dto 10869 * dto
@@ -10961,12 +10872,12 @@ export interface PostServiceInvoiceReissueAuditOption { @@ -10961,12 +10872,12 @@ export interface PostServiceInvoiceReissueAuditOption {
10961 /** 10872 /**
10962 @description 10873 @description
10963 dto */ 10874 dto */
10964 - dto: AuditDto; 10875 + dto: QueryInvoiceDetailDto;
10965 }; 10876 };
10966 } 10877 }
10967 10878
10968 -/** @description response type for postServiceInvoiceReissueAudit */  
10969 -export interface PostServiceInvoiceReissueAuditResponse { 10879 +/** @description response type for postServiceInvoiceQueryInvoiceDetail */
  10880 +export interface PostServiceInvoiceQueryInvoiceDetailResponse {
10970 /** 10881 /**
10971 * @description 10882 * @description
10972 * OK 10883 * OK
@@ -10994,25 +10905,25 @@ export interface PostServiceInvoiceReissueAuditResponse { @@ -10994,25 +10905,25 @@ export interface PostServiceInvoiceReissueAuditResponse {
10994 404: any; 10905 404: any;
10995 } 10906 }
10996 10907
10997 -export type PostServiceInvoiceReissueAuditResponseSuccess =  
10998 - PostServiceInvoiceReissueAuditResponse[200]; 10908 +export type PostServiceInvoiceQueryInvoiceDetailResponseSuccess =
  10909 + PostServiceInvoiceQueryInvoiceDetailResponse[200];
10999 /** 10910 /**
11000 * @description 10911 * @description
11001 - * 重新开票审核 10912 + * 查看发票详情
11002 * @tags 发票 10913 * @tags 发票
11003 * @produces * 10914 * @produces *
11004 * @consumes application/json 10915 * @consumes application/json
11005 */ 10916 */
11006 -export const postServiceInvoiceReissueAudit = /* #__PURE__ */ (() => { 10917 +export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => {
11007 const method = 'post'; 10918 const method = 'post';
11008 - const url = '/service/invoice/reissueAudit'; 10919 + const url = '/service/invoice/queryInvoiceDetail';
11009 function request( 10920 function request(
11010 - option: PostServiceInvoiceReissueAuditOption,  
11011 - ): Promise<PostServiceInvoiceReissueAuditResponseSuccess> { 10921 + option: PostServiceInvoiceQueryInvoiceDetailOption,
  10922 + ): Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess> {
11012 return requester(request.url, { 10923 return requester(request.url, {
11013 method: request.method, 10924 method: request.method,
11014 ...option, 10925 ...option,
11015 - }) as unknown as Promise<PostServiceInvoiceReissueAuditResponseSuccess>; 10926 + }) as unknown as Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess>;
11016 } 10927 }
11017 10928
11018 /** http method */ 10929 /** http method */
@@ -11022,8 +10933,8 @@ export const postServiceInvoiceReissueAudit = /* #__PURE__ */ (() =&gt; { @@ -11022,8 +10933,8 @@ export const postServiceInvoiceReissueAudit = /* #__PURE__ */ (() =&gt; {
11022 return request; 10933 return request;
11023 })(); 10934 })();
11024 10935
11025 -/** @description request parameter type for postServiceInvoiceUrgentInvoicing */  
11026 -export interface PostServiceInvoiceUrgentInvoicingOption { 10936 +/** @description request parameter type for postServiceInvoiceReissue */
  10937 +export interface PostServiceInvoiceReissueOption {
11027 /** 10938 /**
11028 * @description 10939 * @description
11029 * dto 10940 * dto
@@ -11032,12 +10943,12 @@ export interface PostServiceInvoiceUrgentInvoicingOption { @@ -11032,12 +10943,12 @@ export interface PostServiceInvoiceUrgentInvoicingOption {
11032 /** 10943 /**
11033 @description 10944 @description
11034 dto */ 10945 dto */
11035 - dto: AuditDto; 10946 + dto: ReissueInvoiceDto;
11036 }; 10947 };
11037 } 10948 }
11038 10949
11039 -/** @description response type for postServiceInvoiceUrgentInvoicing */  
11040 -export interface PostServiceInvoiceUrgentInvoicingResponse { 10950 +/** @description response type for postServiceInvoiceReissue */
  10951 +export interface PostServiceInvoiceReissueResponse {
11041 /** 10952 /**
11042 * @description 10953 * @description
11043 * OK 10954 * OK
@@ -11065,25 +10976,25 @@ export interface PostServiceInvoiceUrgentInvoicingResponse { @@ -11065,25 +10976,25 @@ export interface PostServiceInvoiceUrgentInvoicingResponse {
11065 404: any; 10976 404: any;
11066 } 10977 }
11067 10978
11068 -export type PostServiceInvoiceUrgentInvoicingResponseSuccess =  
11069 - PostServiceInvoiceUrgentInvoicingResponse[200]; 10979 +export type PostServiceInvoiceReissueResponseSuccess =
  10980 + PostServiceInvoiceReissueResponse[200];
11070 /** 10981 /**
11071 * @description 10982 * @description
11072 - * 加急开票审核 10983 + * 重新开票
11073 * @tags 发票 10984 * @tags 发票
11074 * @produces * 10985 * @produces *
11075 * @consumes application/json 10986 * @consumes application/json
11076 */ 10987 */
11077 -export const postServiceInvoiceUrgentInvoicing = /* #__PURE__ */ (() => { 10988 +export const postServiceInvoiceReissue = /* #__PURE__ */ (() => {
11078 const method = 'post'; 10989 const method = 'post';
11079 - const url = '/service/invoice/urgentInvoicing'; 10990 + const url = '/service/invoice/reissue';
11080 function request( 10991 function request(
11081 - option: PostServiceInvoiceUrgentInvoicingOption,  
11082 - ): Promise<PostServiceInvoiceUrgentInvoicingResponseSuccess> { 10992 + option: PostServiceInvoiceReissueOption,
  10993 + ): Promise<PostServiceInvoiceReissueResponseSuccess> {
11083 return requester(request.url, { 10994 return requester(request.url, {
11084 method: request.method, 10995 method: request.method,
11085 ...option, 10996 ...option,
11086 - }) as unknown as Promise<PostServiceInvoiceUrgentInvoicingResponseSuccess>; 10997 + }) as unknown as Promise<PostServiceInvoiceReissueResponseSuccess>;
11087 } 10998 }
11088 10999
11089 /** http method */ 11000 /** http method */