Commit bfbc08e7dc56a1cb0e4c7cd573872709198d2b01
1 parent
96904e65
feat: update
Showing
4 changed files
with
1186 additions
and
2136 deletions
.umirc.ts
@@ -84,7 +84,7 @@ export default defineConfig({ | @@ -84,7 +84,7 @@ export default defineConfig({ | ||
84 | path: '/zoning', | 84 | path: '/zoning', |
85 | component: './ZoNing', | 85 | component: './ZoNing', |
86 | icon: 'BookOutlined', | 86 | icon: 'BookOutlined', |
87 | - access: 'canReadAdminAndSales', | 87 | + access: 'canReadAdmin', |
88 | }, | 88 | }, |
89 | { | 89 | { |
90 | name: '打印', | 90 | name: '打印', |
src/pages/Order/index.tsx
@@ -3205,10 +3205,11 @@ const OrderPage = () => { | @@ -3205,10 +3205,11 @@ const OrderPage = () => { | ||
3205 | orderStatus !== 'UNAUDITED' && | 3205 | orderStatus !== 'UNAUDITED' && |
3206 | orderStatus !== 'AUDIT_FAILED' && | 3206 | orderStatus !== 'AUDIT_FAILED' && |
3207 | orderStatus !== 'LEADER_PROCESS' && | 3207 | orderStatus !== 'LEADER_PROCESS' && |
3208 | - orderStatus !== 'SALES_CONFIRM' | 3208 | + orderStatus !== 'SALES_CONFIRM' && |
3209 | + orderStatus !== 'CREDIT_CONFIRM' | ||
3209 | ) { | 3210 | ) { |
3210 | message.error( | 3211 | message.error( |
3211 | - '请选择【未审核、审核失败、销售待确认】的订单进行编辑', | 3212 | + '请选择【未审核、审核失败、销售待确认、赊账待审核】的订单进行编辑', |
3212 | ); | 3213 | ); |
3213 | return; | 3214 | return; |
3214 | } | 3215 | } |
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 | ||
@@ -1177,391 +1030,18 @@ export interface InvoiceDto { | @@ -1177,391 +1030,18 @@ export interface InvoiceDto { | ||
1177 | status?: string; | 1030 | status?: string; |
1178 | } | 1031 | } |
1179 | 1032 | ||
1180 | -export interface InvoiceRecordDto { | ||
1181 | - applyInvoicingNotes?: string; | ||
1182 | - /** | ||
1183 | - * @description | ||
1184 | - * 开票备注 | ||
1185 | - */ | ||
1186 | - comment?: string; | 1033 | +export interface InvoiceRecordQueryRequest { |
1034 | + /** @format date */ | ||
1035 | + createTimeGe?: string; | ||
1036 | + /** @format date */ | ||
1037 | + createTimeLe?: string; | ||
1038 | + /** @format int32 */ | ||
1039 | + pageNumber?: number; | ||
1040 | + /** @format int32 */ | ||
1041 | + pageSize?: number; | ||
1187 | /** | 1042 | /** |
1188 | * @description | 1043 | * @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 | 1044 | + * 用户id |
1565 | */ | 1045 | */ |
1566 | uid?: string; | 1046 | uid?: string; |
1567 | } | 1047 | } |
@@ -1581,14 +1061,6 @@ export interface ItemSaItem { | @@ -1581,14 +1061,6 @@ export interface ItemSaItem { | ||
1581 | 1061 | ||
1582 | export interface MainOrderqueryRequest { | 1062 | export interface MainOrderqueryRequest { |
1583 | afterInvoicingStatusIsNull?: boolean; | 1063 | afterInvoicingStatusIsNull?: boolean; |
1584 | - /** @format date */ | ||
1585 | - createDateGe?: string; | ||
1586 | - /** @format date */ | ||
1587 | - createDateLe?: string; | ||
1588 | - /** @format date-time */ | ||
1589 | - createTimeGe?: string; | ||
1590 | - /** @format date-time */ | ||
1591 | - createTimeLe?: string; | ||
1592 | orderStatusNotIn?: Array<string>; | 1064 | orderStatusNotIn?: Array<string>; |
1593 | /** @format int32 */ | 1065 | /** @format int32 */ |
1594 | pageNumber?: number; | 1066 | pageNumber?: number; |
@@ -1730,10 +1202,14 @@ export interface MeasureUnitListResRow { | @@ -1730,10 +1202,14 @@ export interface MeasureUnitListResRow { | ||
1730 | export interface MessageQueryDTO { | 1202 | export interface MessageQueryDTO { |
1731 | /** @format int32 */ | 1203 | /** @format int32 */ |
1732 | current?: number; | 1204 | current?: number; |
1205 | + /** @format int32 */ | ||
1206 | + end?: number; | ||
1733 | isReaded?: string; | 1207 | isReaded?: string; |
1734 | /** @format int32 */ | 1208 | /** @format int32 */ |
1735 | pageSize?: number; | 1209 | pageSize?: number; |
1736 | /** @format int32 */ | 1210 | /** @format int32 */ |
1211 | + start?: number; | ||
1212 | + /** @format int32 */ | ||
1737 | total?: number; | 1213 | total?: number; |
1738 | username?: string; | 1214 | username?: string; |
1739 | } | 1215 | } |
@@ -1769,6 +1245,8 @@ export interface OrderAuditLogQueryVO { | @@ -1769,6 +1245,8 @@ export interface OrderAuditLogQueryVO { | ||
1769 | applyId?: number; | 1245 | applyId?: number; |
1770 | /** @format int32 */ | 1246 | /** @format int32 */ |
1771 | current?: number; | 1247 | current?: number; |
1248 | + /** @format int32 */ | ||
1249 | + end?: number; | ||
1772 | /** @format int64 */ | 1250 | /** @format int64 */ |
1773 | id?: number; | 1251 | id?: number; |
1774 | ids?: Array<number>; | 1252 | ids?: Array<number>; |
@@ -1778,6 +1256,8 @@ export interface OrderAuditLogQueryVO { | @@ -1778,6 +1256,8 @@ export interface OrderAuditLogQueryVO { | ||
1778 | /** @format int32 */ | 1256 | /** @format int32 */ |
1779 | pageSize?: number; | 1257 | pageSize?: number; |
1780 | /** @format int32 */ | 1258 | /** @format int32 */ |
1259 | + start?: number; | ||
1260 | + /** @format int32 */ | ||
1781 | total?: number; | 1261 | total?: number; |
1782 | } | 1262 | } |
1783 | 1263 | ||
@@ -1812,6 +1292,8 @@ export interface OrderBaseInfoQueryVO { | @@ -1812,6 +1292,8 @@ export interface OrderBaseInfoQueryVO { | ||
1812 | customerCode?: string; | 1292 | customerCode?: string; |
1813 | customerPo?: string; | 1293 | customerPo?: string; |
1814 | customerStyle?: string; | 1294 | customerStyle?: string; |
1295 | + /** @format int32 */ | ||
1296 | + end?: number; | ||
1815 | /** @format int64 */ | 1297 | /** @format int64 */ |
1816 | id?: number; | 1298 | id?: number; |
1817 | ids?: Array<number>; | 1299 | ids?: Array<number>; |
@@ -1833,6 +1315,8 @@ export interface OrderBaseInfoQueryVO { | @@ -1833,6 +1315,8 @@ export interface OrderBaseInfoQueryVO { | ||
1833 | productionDepartmentConsignTime?: string; | 1315 | productionDepartmentConsignTime?: string; |
1834 | projectNo?: string; | 1316 | projectNo?: string; |
1835 | /** @format int32 */ | 1317 | /** @format int32 */ |
1318 | + start?: number; | ||
1319 | + /** @format int32 */ | ||
1836 | total?: number; | 1320 | total?: number; |
1837 | } | 1321 | } |
1838 | 1322 | ||
@@ -1893,6 +1377,8 @@ export interface OrderFieldLockApplyQueryVO { | @@ -1893,6 +1377,8 @@ export interface OrderFieldLockApplyQueryVO { | ||
1893 | auditUserId?: number; | 1377 | auditUserId?: number; |
1894 | /** @format int32 */ | 1378 | /** @format int32 */ |
1895 | current?: number; | 1379 | current?: number; |
1380 | + /** @format int32 */ | ||
1381 | + end?: number; | ||
1896 | fields?: string; | 1382 | fields?: string; |
1897 | /** @format int64 */ | 1383 | /** @format int64 */ |
1898 | id?: number; | 1384 | id?: number; |
@@ -1902,6 +1388,8 @@ export interface OrderFieldLockApplyQueryVO { | @@ -1902,6 +1388,8 @@ export interface OrderFieldLockApplyQueryVO { | ||
1902 | /** @format int32 */ | 1388 | /** @format int32 */ |
1903 | pageSize?: number; | 1389 | pageSize?: number; |
1904 | /** @format int32 */ | 1390 | /** @format int32 */ |
1391 | + start?: number; | ||
1392 | + /** @format int32 */ | ||
1905 | status?: number; | 1393 | status?: number; |
1906 | statusList?: Array<number>; | 1394 | statusList?: Array<number>; |
1907 | /** @format int32 */ | 1395 | /** @format int32 */ |
@@ -1950,6 +1438,8 @@ export interface OrderInspectionStageVO { | @@ -1950,6 +1438,8 @@ export interface OrderInspectionStageVO { | ||
1950 | export interface OrderOptLogQueryVO { | 1438 | export interface OrderOptLogQueryVO { |
1951 | /** @format int32 */ | 1439 | /** @format int32 */ |
1952 | current?: number; | 1440 | current?: number; |
1441 | + /** @format int32 */ | ||
1442 | + end?: number; | ||
1953 | /** @format int64 */ | 1443 | /** @format int64 */ |
1954 | id?: number; | 1444 | id?: number; |
1955 | ids?: Array<number>; | 1445 | ids?: Array<number>; |
@@ -1958,6 +1448,8 @@ export interface OrderOptLogQueryVO { | @@ -1958,6 +1448,8 @@ export interface OrderOptLogQueryVO { | ||
1958 | /** @format int32 */ | 1448 | /** @format int32 */ |
1959 | pageSize?: number; | 1449 | pageSize?: number; |
1960 | /** @format int32 */ | 1450 | /** @format int32 */ |
1451 | + start?: number; | ||
1452 | + /** @format int32 */ | ||
1961 | total?: number; | 1453 | total?: number; |
1962 | } | 1454 | } |
1963 | 1455 | ||
@@ -2263,6 +1755,8 @@ export interface QueryBankStatementDto { | @@ -2263,6 +1755,8 @@ export interface QueryBankStatementDto { | ||
2263 | collectionDatetimeEnd?: string; | 1755 | collectionDatetimeEnd?: string; |
2264 | /** @format int32 */ | 1756 | /** @format int32 */ |
2265 | current?: number; | 1757 | current?: number; |
1758 | + /** @format int32 */ | ||
1759 | + end?: number; | ||
2266 | /** @format int64 */ | 1760 | /** @format int64 */ |
2267 | id?: number; | 1761 | id?: number; |
2268 | /** @format int32 */ | 1762 | /** @format int32 */ |
@@ -2284,6 +1778,8 @@ export interface QueryBankStatementDto { | @@ -2284,6 +1778,8 @@ export interface QueryBankStatementDto { | ||
2284 | remark?: string; | 1778 | remark?: string; |
2285 | remarkNote?: string; | 1779 | remarkNote?: string; |
2286 | serialNumber?: string; | 1780 | serialNumber?: string; |
1781 | + /** @format int32 */ | ||
1782 | + start?: number; | ||
2287 | status?: string; | 1783 | status?: string; |
2288 | /** @format int32 */ | 1784 | /** @format int32 */ |
2289 | total?: number; | 1785 | total?: number; |
@@ -2329,240 +1825,367 @@ export interface QueryInvoiceDetailDto { | @@ -2329,240 +1825,367 @@ export interface QueryInvoiceDetailDto { | ||
2329 | invoiceId?: number; | 1825 | invoiceId?: number; |
2330 | } | 1826 | } |
2331 | 1827 | ||
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; | 1828 | +export interface QueryMainOrderDto { |
1829 | + /** | ||
1830 | + * @description | ||
1831 | + * 收货人姓名 | ||
1832 | + */ | ||
1833 | + customerName?: string; | ||
2344 | } | 1834 | } |
2345 | 1835 | ||
2346 | -export interface QueryInvoiceRecordDto { | 1836 | +export interface QueryReportFormsDto { |
2347 | /** | 1837 | /** |
2348 | * @description | 1838 | * @description |
2349 | - * 联系人 | 1839 | + * 是否包含实验设备事业部 |
2350 | */ | 1840 | */ |
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; | 1841 | + includeExperimentalEquipment?: boolean; |
2360 | /** | 1842 | /** |
2361 | * @description | 1843 | * @description |
2362 | - * id | 1844 | + * 最大金额 |
1845 | + * @example | ||
1846 | + * 2343 | ||
1847 | + */ | ||
1848 | + maxAccount?: number; | ||
1849 | + /** | ||
1850 | + * @description | ||
1851 | + * 所属部门 | ||
1852 | + */ | ||
1853 | + productBelongBusiness?: string; | ||
1854 | + /** | ||
1855 | + * @description | ||
1856 | + * 销售代表 | ||
1857 | + */ | ||
1858 | + salesCode?: string; | ||
1859 | + /** | ||
1860 | + * @description | ||
1861 | + * 统计方式 | ||
1862 | + */ | ||
1863 | + statisticsMethod?: string; | ||
1864 | +} | ||
1865 | + | ||
1866 | +export interface ReissueInvoiceDto { | ||
1867 | + /** @format int64 */ | ||
1868 | + invoiceId?: number; | ||
1869 | + notes?: string; | ||
1870 | +} | ||
1871 | + | ||
1872 | +export interface ResearchGroupAccountAddRequest { | ||
1873 | + /** | ||
1874 | + * @description | ||
1875 | + * 关联的账号id | ||
1876 | + * @format int64 | ||
1877 | + */ | ||
1878 | + accountId?: number; | ||
1879 | + /** | ||
1880 | + * @description | ||
1881 | + * 关联的账号名称 | ||
1882 | + */ | ||
1883 | + accountName?: string; | ||
1884 | + /** | ||
1885 | + * @description | ||
1886 | + * 关联的账号手机号 | ||
1887 | + */ | ||
1888 | + accountPhone?: string; | ||
1889 | + /** | ||
1890 | + * @description | ||
1891 | + * 课题组id | ||
1892 | + * @format int64 | ||
1893 | + */ | ||
1894 | + groupId?: number; | ||
1895 | +} | ||
1896 | + | ||
1897 | +export interface ResearchGroupAccountEditRequest { | ||
1898 | + /** | ||
1899 | + * @description | ||
1900 | + * 关联的账号id | ||
1901 | + * @format int64 | ||
1902 | + */ | ||
1903 | + accountId?: number; | ||
1904 | + /** | ||
1905 | + * @description | ||
1906 | + * 关联的账号名称 | ||
1907 | + */ | ||
1908 | + accountName?: string; | ||
1909 | + /** | ||
1910 | + * @description | ||
1911 | + * 关联的账号手机号 | ||
1912 | + */ | ||
1913 | + accountPhone?: string; | ||
1914 | + /** | ||
1915 | + * @description | ||
1916 | + * 课题组id | ||
1917 | + * @format int64 | ||
1918 | + */ | ||
1919 | + groupId?: number; | ||
1920 | + /** | ||
1921 | + * @description | ||
1922 | + * 主键id | ||
1923 | + * @format int64 | ||
1924 | + */ | ||
1925 | + id?: number; | ||
1926 | +} | ||
1927 | + | ||
1928 | +export interface ResearchGroupAddRequest { | ||
1929 | + accounts?: Array<ResearchGroupAccountAddRequest>; | ||
1930 | + /** | ||
1931 | + * @description | ||
1932 | + * 课题组名称 | ||
1933 | + */ | ||
1934 | + group?: string; | ||
1935 | + /** | ||
1936 | + * @description | ||
1937 | + * 课题组负责人 | ||
1938 | + */ | ||
1939 | + leader?: string; | ||
1940 | + members?: Array<ResearchGroupMemberAddRequest>; | ||
1941 | +} | ||
1942 | + | ||
1943 | +export interface ResearchGroupDeleteRequest { | ||
1944 | + /** | ||
1945 | + * @description | ||
1946 | + * 主键id | ||
1947 | + */ | ||
1948 | + ids?: Array<number>; | ||
1949 | +} | ||
1950 | + | ||
1951 | +export interface ResearchGroupDetailRequest { | ||
1952 | + /** | ||
1953 | + * @description | ||
1954 | + * 主键id | ||
2363 | * @format int64 | 1955 | * @format int64 |
2364 | */ | 1956 | */ |
2365 | id?: number; | 1957 | id?: number; |
1958 | +} | ||
1959 | + | ||
1960 | +export interface ResearchGroupEditRequest { | ||
2366 | /** | 1961 | /** |
2367 | * @description | 1962 | * @description |
2368 | - * IdIn | 1963 | + * 课题组预存账号 |
2369 | */ | 1964 | */ |
2370 | - idIn?: Array<number>; | 1965 | + accounts?: Array<ResearchGroupAccountEditRequest>; |
2371 | /** | 1966 | /** |
2372 | * @description | 1967 | * @description |
2373 | - * 关联发票id | 1968 | + * 课题组名称 |
2374 | */ | 1969 | */ |
2375 | - invoiceId?: string; | 1970 | + group?: string; |
2376 | /** | 1971 | /** |
2377 | * @description | 1972 | * @description |
2378 | - * 发票号码 | 1973 | + * 主键id |
1974 | + * @format int64 | ||
2379 | */ | 1975 | */ |
2380 | - invoiceNumber?: string; | 1976 | + id?: number; |
2381 | /** | 1977 | /** |
2382 | * @description | 1978 | * @description |
2383 | - * 发票号码 | 1979 | + * 课题组负责人 |
2384 | */ | 1980 | */ |
2385 | - invoiceNumberLike?: string; | 1981 | + leader?: string; |
2386 | /** | 1982 | /** |
2387 | * @description | 1983 | * @description |
2388 | - * 开票时间 | ||
2389 | - * @format date-time | 1984 | + * 课题组成员集合 |
2390 | */ | 1985 | */ |
2391 | - invoicingTimeGe?: string; | 1986 | + members?: Array<ResearchGroupMemberEditRequest>; |
1987 | +} | ||
1988 | + | ||
1989 | +export interface ResearchGroupListRequest { | ||
2392 | /** | 1990 | /** |
2393 | * @description | 1991 | * @description |
2394 | - * 开票时间 | ||
2395 | - * @format date-time | 1992 | + * 预存账号手机号 |
2396 | */ | 1993 | */ |
2397 | - invoicingTimeLe?: string; | 1994 | + accountPhone?: string; |
1995 | + /** @format int32 */ | ||
1996 | + current?: number; | ||
1997 | + /** @format int32 */ | ||
1998 | + end?: number; | ||
2398 | /** | 1999 | /** |
2399 | * @description | 2000 | * @description |
2400 | - * 开票类型 | 2001 | + * 课题组名称 |
2401 | */ | 2002 | */ |
2402 | - invoicingType?: string; | 2003 | + groupName?: string; |
2403 | /** | 2004 | /** |
2404 | * @description | 2005 | * @description |
2405 | - * 是否加急 | 2006 | + * 课题组负责人 |
2406 | */ | 2007 | */ |
2407 | - isUrgent?: boolean; | 2008 | + leaderName?: string; |
2408 | /** | 2009 | /** |
2409 | * @description | 2010 | * @description |
2410 | - * 订单号 | ||
2411 | - * @format int64 | 2011 | + * 课题组成员名称 |
2412 | */ | 2012 | */ |
2413 | - mainOrderId?: number; | 2013 | + memberName?: string; |
2414 | /** | 2014 | /** |
2415 | * @description | 2015 | * @description |
2416 | - * 主订单idIn | 2016 | + * 课题组成员手机号 |
2417 | */ | 2017 | */ |
2418 | - mainOrderIdIn?: Array<number>; | 2018 | + memberPhone?: string; |
2019 | + /** @format int32 */ | ||
2020 | + pageSize?: number; | ||
2021 | + /** @format int32 */ | ||
2022 | + start?: number; | ||
2023 | + /** @format int32 */ | ||
2024 | + total?: number; | ||
2025 | +} | ||
2026 | + | ||
2027 | +export interface ResearchGroupMemberAddRequest { | ||
2419 | /** | 2028 | /** |
2420 | * @description | 2029 | * @description |
2421 | - * 订单号 | 2030 | + * 课题组ID |
2031 | + * @format int64 | ||
2422 | */ | 2032 | */ |
2423 | - mainOrderIdLike?: string; | 2033 | + groupId?: number; |
2424 | /** | 2034 | /** |
2425 | * @description | 2035 | * @description |
2426 | - * 是否需要构建发票明细 | 2036 | + * 成员名称 |
2427 | */ | 2037 | */ |
2428 | - needBuildDetails?: boolean; | 2038 | + memberName?: string; |
2429 | /** | 2039 | /** |
2430 | * @description | 2040 | * @description |
2431 | - * 是否需要构建发票明细 | 2041 | + * 成员手机号 |
2432 | */ | 2042 | */ |
2433 | - needBuildSubOrders?: boolean; | ||
2434 | - /** @format int32 */ | ||
2435 | - pageSize?: number; | 2043 | + memberPhone?: string; |
2044 | +} | ||
2045 | + | ||
2046 | +export interface ResearchGroupMemberEditRequest { | ||
2436 | /** | 2047 | /** |
2437 | * @description | 2048 | * @description |
2438 | - * 买方名称 | 2049 | + * 课题组ID |
2050 | + * @format int64 | ||
2439 | */ | 2051 | */ |
2440 | - partyANameLike?: string; | 2052 | + groupId?: number; |
2441 | /** | 2053 | /** |
2442 | * @description | 2054 | * @description |
2443 | - * 买方电话号码 | 2055 | + * 主键id |
2056 | + * @format int64 | ||
2444 | */ | 2057 | */ |
2445 | - partyAPhoneNumberLike?: string; | 2058 | + id?: number; |
2446 | /** | 2059 | /** |
2447 | * @description | 2060 | * @description |
2448 | - * 买方税号 | 2061 | + * 成员名称 |
2449 | */ | 2062 | */ |
2450 | - partyATaxid?: string; | 2063 | + memberName?: string; |
2451 | /** | 2064 | /** |
2452 | * @description | 2065 | * @description |
2453 | - * 买方税号 | 2066 | + * 成员手机号 |
2454 | */ | 2067 | */ |
2455 | - partyATaxidLike?: string; | ||
2456 | - partyB?: string; | 2068 | + memberPhone?: string; |
2069 | +} | ||
2070 | + | ||
2071 | +export interface ResearchGroupMemberRequestAddRequest { | ||
2457 | /** | 2072 | /** |
2458 | * @description | 2073 | * @description |
2459 | - * 卖方名称 | 2074 | + * 课题组ID |
2075 | + * @format int64 | ||
2460 | */ | 2076 | */ |
2461 | - partyBName?: string; | 2077 | + groupId?: number; |
2462 | /** | 2078 | /** |
2463 | * @description | 2079 | * @description |
2464 | - * 销售代表 | 2080 | + * 课题组名称 |
2465 | */ | 2081 | */ |
2466 | - salesCode?: string; | 2082 | + groupName?: string; |
2083 | + members?: Array<ResearchGroupMemberAddRequest>; | ||
2467 | /** | 2084 | /** |
2468 | * @description | 2085 | * @description |
2469 | - * 销售代表 | 2086 | + * 申请备注 |
2470 | */ | 2087 | */ |
2471 | - salesCodeLike?: string; | ||
2472 | - /** @format int32 */ | ||
2473 | - start?: number; | 2088 | + requestNotes?: string; |
2089 | +} | ||
2090 | + | ||
2091 | +export interface ResearchGroupMemberRequestDeleteRequest { | ||
2474 | /** | 2092 | /** |
2475 | * @description | 2093 | * @description |
2476 | - * 发票状态 | 2094 | + * 主键id |
2477 | */ | 2095 | */ |
2478 | - status?: string; | 2096 | + ids?: Array<number>; |
2097 | +} | ||
2098 | + | ||
2099 | +export interface ResearchGroupMemberRequestDetailRequest { | ||
2479 | /** | 2100 | /** |
2480 | * @description | 2101 | * @description |
2481 | - * 状态非空 | 2102 | + * 主键id |
2103 | + * @format int64 | ||
2482 | */ | 2104 | */ |
2483 | - statusIn?: Array<string>; | 2105 | + id?: number; |
2106 | +} | ||
2107 | + | ||
2108 | +export interface ResearchGroupMemberRequestEditRequest { | ||
2484 | /** | 2109 | /** |
2485 | * @description | 2110 | * @description |
2486 | - * 状态非空 | 2111 | + * 课题组ID |
2112 | + * @format int64 | ||
2487 | */ | 2113 | */ |
2488 | - statusIsNotNull?: boolean; | 2114 | + groupId?: number; |
2489 | /** | 2115 | /** |
2490 | * @description | 2116 | * @description |
2491 | - * 状态为空 | 2117 | + * 课题组名称 |
2492 | */ | 2118 | */ |
2493 | - statusIsNull?: boolean; | 2119 | + groupName?: string; |
2494 | /** | 2120 | /** |
2495 | * @description | 2121 | * @description |
2496 | - * 子订单 | 2122 | + * 主键id |
2497 | * @format int64 | 2123 | * @format int64 |
2498 | */ | 2124 | */ |
2499 | - subOrderId?: number; | 2125 | + id?: number; |
2500 | /** | 2126 | /** |
2501 | * @description | 2127 | * @description |
2502 | - * 子订单idIn | 2128 | + * 成员名称 |
2503 | */ | 2129 | */ |
2504 | - subOrderIdIn?: Array<number>; | 2130 | + memberName?: string; |
2505 | /** | 2131 | /** |
2506 | * @description | 2132 | * @description |
2507 | - * 子订单 | 2133 | + * 成员手机号 |
2508 | */ | 2134 | */ |
2509 | - subOrderIdLike?: string; | ||
2510 | - /** @format int32 */ | ||
2511 | - total?: number; | 2135 | + memberPhone?: string; |
2512 | /** | 2136 | /** |
2513 | * @description | 2137 | * @description |
2514 | - * 开票类型 | 2138 | + * 申请备注 |
2515 | */ | 2139 | */ |
2516 | - type?: string; | 2140 | + requestNotes?: string; |
2141 | +} | ||
2142 | + | ||
2143 | +export interface ResearchGroupMemberRequestsRequest { | ||
2517 | /** | 2144 | /** |
2518 | * @description | 2145 | * @description |
2519 | - * 用户id | 2146 | + * 审核备注 |
2520 | */ | 2147 | */ |
2521 | - uid?: string; | ||
2522 | -} | ||
2523 | - | ||
2524 | -export interface QueryMainOrderDto { | 2148 | + auditNotes?: string; |
2525 | /** | 2149 | /** |
2526 | * @description | 2150 | * @description |
2527 | - * 收货人姓名 | 2151 | + * 审核状态 |
2528 | */ | 2152 | */ |
2529 | - customerName?: string; | ||
2530 | -} | ||
2531 | - | ||
2532 | -export interface QueryReportFormsDto { | 2153 | + auditStatus?: string; |
2533 | /** | 2154 | /** |
2534 | * @description | 2155 | * @description |
2535 | - * 是否包含实验设备事业部 | 2156 | + * 创建人 |
2536 | */ | 2157 | */ |
2537 | - includeExperimentalEquipment?: boolean; | 2158 | + createByName?: string; |
2159 | + /** @format int32 */ | ||
2160 | + current?: number; | ||
2161 | + /** @format int32 */ | ||
2162 | + end?: number; | ||
2538 | /** | 2163 | /** |
2539 | * @description | 2164 | * @description |
2540 | - * 最大金额 | ||
2541 | - * @example | ||
2542 | - * 2343 | 2165 | + * 课题组名称 |
2543 | */ | 2166 | */ |
2544 | - maxAccount?: number; | 2167 | + groupName?: string; |
2545 | /** | 2168 | /** |
2546 | * @description | 2169 | * @description |
2547 | - * 所属部门 | 2170 | + * 成员名称 |
2548 | */ | 2171 | */ |
2549 | - productBelongBusiness?: string; | 2172 | + memberName?: string; |
2550 | /** | 2173 | /** |
2551 | * @description | 2174 | * @description |
2552 | - * 销售代表 | 2175 | + * 成员手机号 |
2553 | */ | 2176 | */ |
2554 | - salesCode?: string; | 2177 | + memberPhone?: string; |
2178 | + /** @format int32 */ | ||
2179 | + pageSize?: number; | ||
2555 | /** | 2180 | /** |
2556 | * @description | 2181 | * @description |
2557 | - * 统计方式 | 2182 | + * 申请备注 |
2558 | */ | 2183 | */ |
2559 | - statisticsMethod?: string; | ||
2560 | -} | ||
2561 | - | ||
2562 | -export interface ReissueInvoiceDto { | ||
2563 | - /** @format int64 */ | ||
2564 | - invoiceId?: number; | ||
2565 | - notes?: string; | 2184 | + requestNotes?: string; |
2185 | + /** @format int32 */ | ||
2186 | + start?: number; | ||
2187 | + /** @format int32 */ | ||
2188 | + total?: number; | ||
2566 | } | 2189 | } |
2567 | 2190 | ||
2568 | export interface ResetPwdVO { | 2191 | export interface ResetPwdVO { |
@@ -2604,134 +2227,14 @@ export interface ShippingWarehouseChangeDto { | @@ -2604,134 +2227,14 @@ export interface ShippingWarehouseChangeDto { | ||
2604 | shippingWarehouse?: string; | 2227 | shippingWarehouse?: string; |
2605 | } | 2228 | } |
2606 | 2229 | ||
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 { | 2230 | export interface SysLogQueryVO { |
2730 | address?: string; | 2231 | address?: string; |
2731 | browser?: string; | 2232 | browser?: string; |
2732 | /** @format int32 */ | 2233 | /** @format int32 */ |
2733 | current?: number; | 2234 | current?: number; |
2734 | description?: string; | 2235 | description?: string; |
2236 | + /** @format int32 */ | ||
2237 | + end?: number; | ||
2735 | exceptionDetail?: string; | 2238 | exceptionDetail?: string; |
2736 | /** @format int64 */ | 2239 | /** @format int64 */ |
2737 | id?: number; | 2240 | id?: number; |
@@ -2742,6 +2245,8 @@ export interface SysLogQueryVO { | @@ -2742,6 +2245,8 @@ export interface SysLogQueryVO { | ||
2742 | pageSize?: number; | 2245 | pageSize?: number; |
2743 | params?: string; | 2246 | params?: string; |
2744 | requestIp?: string; | 2247 | requestIp?: string; |
2248 | + /** @format int32 */ | ||
2249 | + start?: number; | ||
2745 | /** @format int64 */ | 2250 | /** @format int64 */ |
2746 | time?: number; | 2251 | time?: number; |
2747 | /** @format int32 */ | 2252 | /** @format int32 */ |
@@ -2905,8 +2410,12 @@ export interface UserCenterInfoRequest { | @@ -2905,8 +2410,12 @@ export interface UserCenterInfoRequest { | ||
2905 | /** @format int32 */ | 2410 | /** @format int32 */ |
2906 | current?: number; | 2411 | current?: number; |
2907 | /** @format int32 */ | 2412 | /** @format int32 */ |
2413 | + end?: number; | ||
2414 | + /** @format int32 */ | ||
2908 | pageSize?: number; | 2415 | pageSize?: number; |
2909 | /** @format int32 */ | 2416 | /** @format int32 */ |
2417 | + start?: number; | ||
2418 | + /** @format int32 */ | ||
2910 | total?: number; | 2419 | total?: number; |
2911 | /** | 2420 | /** |
2912 | * @description | 2421 | * @description |
@@ -2926,6 +2435,8 @@ export interface UserDetailRequest { | @@ -2926,6 +2435,8 @@ export interface UserDetailRequest { | ||
2926 | /** @format int32 */ | 2435 | /** @format int32 */ |
2927 | current?: number; | 2436 | current?: number; |
2928 | /** @format int32 */ | 2437 | /** @format int32 */ |
2438 | + end?: number; | ||
2439 | + /** @format int32 */ | ||
2929 | pageSize?: number; | 2440 | pageSize?: number; |
2930 | /** | 2441 | /** |
2931 | * @description | 2442 | * @description |
@@ -2933,6 +2444,8 @@ export interface UserDetailRequest { | @@ -2933,6 +2444,8 @@ export interface UserDetailRequest { | ||
2933 | */ | 2444 | */ |
2934 | phone?: string; | 2445 | phone?: string; |
2935 | /** @format int32 */ | 2446 | /** @format int32 */ |
2447 | + start?: number; | ||
2448 | + /** @format int32 */ | ||
2936 | total?: number; | 2449 | total?: number; |
2937 | /** | 2450 | /** |
2938 | * @description | 2451 | * @description |
@@ -2949,6 +2462,8 @@ export interface UserListRequest { | @@ -2949,6 +2462,8 @@ export interface UserListRequest { | ||
2949 | * 创建日期开始时间 | 2462 | * 创建日期开始时间 |
2950 | */ | 2463 | */ |
2951 | dateLimit?: string; | 2464 | dateLimit?: string; |
2465 | + /** @format int32 */ | ||
2466 | + end?: number; | ||
2952 | /** | 2467 | /** |
2953 | * @description | 2468 | * @description |
2954 | * 单位 | 2469 | * 单位 |
@@ -2973,10 +2488,23 @@ export interface UserListRequest { | @@ -2973,10 +2488,23 @@ export interface UserListRequest { | ||
2973 | phone?: string; | 2488 | phone?: string; |
2974 | /** | 2489 | /** |
2975 | * @description | 2490 | * @description |
2491 | + * phones | ||
2492 | + */ | ||
2493 | + phones?: Array<string>; | ||
2494 | + /** | ||
2495 | + * @description | ||
2496 | + * 内部订单系统课题组id | ||
2497 | + * @format int64 | ||
2498 | + */ | ||
2499 | + researchGroupId?: number; | ||
2500 | + /** | ||
2501 | + * @description | ||
2976 | * salesCode | 2502 | * salesCode |
2977 | */ | 2503 | */ |
2978 | salesCode?: string; | 2504 | salesCode?: string; |
2979 | /** @format int32 */ | 2505 | /** @format int32 */ |
2506 | + start?: number; | ||
2507 | + /** @format int32 */ | ||
2980 | total?: number; | 2508 | total?: number; |
2981 | /** | 2509 | /** |
2982 | * @description | 2510 | * @description |
@@ -2986,11 +2514,23 @@ export interface UserListRequest { | @@ -2986,11 +2514,23 @@ export interface UserListRequest { | ||
2986 | uid?: number; | 2514 | uid?: number; |
2987 | /** | 2515 | /** |
2988 | * @description | 2516 | * @description |
2517 | + * ids | ||
2518 | + */ | ||
2519 | + uids?: Array<number>; | ||
2520 | + /** | ||
2521 | + * @description | ||
2989 | * 用户名 | 2522 | * 用户名 |
2990 | */ | 2523 | */ |
2991 | username?: string; | 2524 | username?: string; |
2992 | } | 2525 | } |
2993 | 2526 | ||
2527 | +export interface UserNowMoneyCheckRequest { | ||
2528 | + phone?: string; | ||
2529 | + subPrice?: number; | ||
2530 | + /** @format int64 */ | ||
2531 | + uid?: number; | ||
2532 | +} | ||
2533 | + | ||
2994 | export interface View { | 2534 | export interface View { |
2995 | contentType?: string; | 2535 | contentType?: string; |
2996 | } | 2536 | } |
@@ -3039,44 +2579,6 @@ export interface TsgFile { | @@ -3039,44 +2579,6 @@ export interface TsgFile { | ||
3039 | writable?: boolean; | 2579 | writable?: boolean; |
3040 | } | 2580 | } |
3041 | 2581 | ||
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 { | 2582 | export interface SalesRechargePrepaymentAuditRequest { |
3081 | /** | 2583 | /** |
3082 | * @description | 2584 | * @description |
@@ -3093,6 +2595,11 @@ export interface SalesRechargePrepaymentAuditRequest { | @@ -3093,6 +2595,11 @@ export interface SalesRechargePrepaymentAuditRequest { | ||
3093 | * 是否通过 | 2595 | * 是否通过 |
3094 | */ | 2596 | */ |
3095 | pass?: boolean; | 2597 | pass?: boolean; |
2598 | + /** | ||
2599 | + * @description | ||
2600 | + * 手机号 | ||
2601 | + */ | ||
2602 | + phone?: string; | ||
3096 | } | 2603 | } |
3097 | 2604 | ||
3098 | export interface SalesRechargePrepaymentCreateRequest { | 2605 | export interface SalesRechargePrepaymentCreateRequest { |
@@ -3198,6 +2705,8 @@ export interface SalesRechargePrepaymentRequest { | @@ -3198,6 +2705,8 @@ export interface SalesRechargePrepaymentRequest { | ||
3198 | * @format int32 | 2705 | * @format int32 |
3199 | */ | 2706 | */ |
3200 | enableFlag?: number; | 2707 | enableFlag?: number; |
2708 | + /** @format int32 */ | ||
2709 | + end?: number; | ||
3201 | /** | 2710 | /** |
3202 | * @description | 2711 | * @description |
3203 | * id | 2712 | * id |
@@ -3242,6 +2751,8 @@ export interface SalesRechargePrepaymentRequest { | @@ -3242,6 +2751,8 @@ export interface SalesRechargePrepaymentRequest { | ||
3242 | * 销售代表 | 2751 | * 销售代表 |
3243 | */ | 2752 | */ |
3244 | salesCode?: string; | 2753 | salesCode?: string; |
2754 | + /** @format int32 */ | ||
2755 | + start?: number; | ||
3245 | /** | 2756 | /** |
3246 | * @description | 2757 | * @description |
3247 | * 状态 | 2758 | * 状态 |
@@ -3420,6 +2931,38 @@ export interface TsgURL { | @@ -3420,6 +2931,38 @@ export interface TsgURL { | ||
3420 | userInfo?: string; | 2931 | userInfo?: string; |
3421 | } | 2932 | } |
3422 | 2933 | ||
2934 | +/** | ||
2935 | + * @description | ||
2936 | + * 保存用户地址请求对象 | ||
2937 | + */ | ||
2938 | +export interface UserAddressSaveRequest { | ||
2939 | + /** | ||
2940 | + * @description | ||
2941 | + * 联系电话 | ||
2942 | + */ | ||
2943 | + customerContactNumber: string; | ||
2944 | + /** | ||
2945 | + * @description | ||
2946 | + * 客户姓名 | ||
2947 | + */ | ||
2948 | + customerName: string; | ||
2949 | + /** | ||
2950 | + * @description | ||
2951 | + * 收货地址 | ||
2952 | + */ | ||
2953 | + customerShippingAddress?: string; | ||
2954 | + /** | ||
2955 | + * @description | ||
2956 | + * 客户单位 | ||
2957 | + */ | ||
2958 | + institution?: string; | ||
2959 | + /** | ||
2960 | + * @description | ||
2961 | + * 课题组老师 | ||
2962 | + */ | ||
2963 | + institutionContactName?: string; | ||
2964 | +} | ||
2965 | + | ||
3423 | export interface UploadPaymentReceiptDTO { | 2966 | export interface UploadPaymentReceiptDTO { |
3424 | /** | 2967 | /** |
3425 | * @description | 2968 | * @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, |
@@ -46,7 +46,6 @@ import type { | @@ -46,7 +46,6 @@ import type { | ||
46 | Dto, | 46 | Dto, |
47 | InventoryMaterialStockReq, | 47 | InventoryMaterialStockReq, |
48 | InvoiceDto, | 48 | InvoiceDto, |
49 | - InvoiceRecordDto, | ||
50 | InvoiceRecordQueryRequest, | 49 | InvoiceRecordQueryRequest, |
51 | MainOrderqueryRequest, | 50 | MainOrderqueryRequest, |
52 | MaterialListReply, | 51 | MaterialListReply, |
@@ -81,11 +80,19 @@ import type { | @@ -81,11 +80,19 @@ import type { | ||
81 | QueryCustomerInformationDto, | 80 | QueryCustomerInformationDto, |
82 | QueryHistoryRecordDto, | 81 | QueryHistoryRecordDto, |
83 | QueryInvoiceDetailDto, | 82 | QueryInvoiceDetailDto, |
84 | - QueryInvoiceProjectDto, | ||
85 | - QueryInvoiceRecordDto, | ||
86 | QueryMainOrderDto, | 83 | QueryMainOrderDto, |
87 | QueryReportFormsDto, | 84 | QueryReportFormsDto, |
88 | ReissueInvoiceDto, | 85 | ReissueInvoiceDto, |
86 | + ResearchGroupAddRequest, | ||
87 | + ResearchGroupDeleteRequest, | ||
88 | + ResearchGroupDetailRequest, | ||
89 | + ResearchGroupEditRequest, | ||
90 | + ResearchGroupListRequest, | ||
91 | + ResearchGroupMemberRequestAddRequest, | ||
92 | + ResearchGroupMemberRequestDeleteRequest, | ||
93 | + ResearchGroupMemberRequestDetailRequest, | ||
94 | + ResearchGroupMemberRequestEditRequest, | ||
95 | + ResearchGroupMemberRequestsRequest, | ||
89 | ResetPwdVO, | 96 | ResetPwdVO, |
90 | SalOrderSaveDto, | 97 | SalOrderSaveDto, |
91 | SalesRechargePrepaymentAuditRequest, | 98 | SalesRechargePrepaymentAuditRequest, |
@@ -107,9 +114,11 @@ import type { | @@ -107,9 +114,11 @@ import type { | ||
107 | UpdatePwdVO, | 114 | UpdatePwdVO, |
108 | UploadPaymentReceiptDTO, | 115 | UploadPaymentReceiptDTO, |
109 | UserAddressListRequest, | 116 | UserAddressListRequest, |
117 | + UserAddressSaveRequest, | ||
110 | UserCenterInfoRequest, | 118 | UserCenterInfoRequest, |
111 | UserDetailRequest, | 119 | UserDetailRequest, |
112 | UserListRequest, | 120 | UserListRequest, |
121 | + UserNowMoneyCheckRequest, | ||
113 | } from './definition'; | 122 | } from './definition'; |
114 | 123 | ||
115 | /** @description request parameter type for postApiLocalStorageUpload */ | 124 | /** @description request parameter type for postApiLocalStorageUpload */ |
@@ -1472,6 +1481,78 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() => { | @@ -1472,6 +1481,78 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() => { | ||
1472 | return request; | 1481 | return request; |
1473 | })(); | 1482 | })(); |
1474 | 1483 | ||
1484 | +/** @description request parameter type for postCanrdApiUserInnerOrderSystemAddressSave */ | ||
1485 | +export interface PostCanrdApiUserInnerOrderSystemAddressSaveOption { | ||
1486 | + /** | ||
1487 | + * @description | ||
1488 | + * request | ||
1489 | + */ | ||
1490 | + body: { | ||
1491 | + /** | ||
1492 | + @description | ||
1493 | + request */ | ||
1494 | + request: UserAddressSaveRequest; | ||
1495 | + }; | ||
1496 | +} | ||
1497 | + | ||
1498 | +/** @description response type for postCanrdApiUserInnerOrderSystemAddressSave */ | ||
1499 | +export interface PostCanrdApiUserInnerOrderSystemAddressSaveResponse { | ||
1500 | + /** | ||
1501 | + * @description | ||
1502 | + * OK | ||
1503 | + */ | ||
1504 | + 200: ServerResult; | ||
1505 | + /** | ||
1506 | + * @description | ||
1507 | + * Created | ||
1508 | + */ | ||
1509 | + 201: any; | ||
1510 | + /** | ||
1511 | + * @description | ||
1512 | + * Unauthorized | ||
1513 | + */ | ||
1514 | + 401: any; | ||
1515 | + /** | ||
1516 | + * @description | ||
1517 | + * Forbidden | ||
1518 | + */ | ||
1519 | + 403: any; | ||
1520 | + /** | ||
1521 | + * @description | ||
1522 | + * Not Found | ||
1523 | + */ | ||
1524 | + 404: any; | ||
1525 | +} | ||
1526 | + | ||
1527 | +export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess = | ||
1528 | + PostCanrdApiUserInnerOrderSystemAddressSaveResponse[200]; | ||
1529 | +/** | ||
1530 | + * @description | ||
1531 | + * 查询地址信息 | ||
1532 | + * @tags canrd-mobile-api-controller | ||
1533 | + * @produces * | ||
1534 | + * @consumes application/json | ||
1535 | + */ | ||
1536 | +export const postCanrdApiUserInnerOrderSystemAddressSave = | ||
1537 | + /* #__PURE__ */ (() => { | ||
1538 | + const method = 'post'; | ||
1539 | + const url = '/canrd/api/user/innerOrderSystem/address/save'; | ||
1540 | + function request( | ||
1541 | + option: PostCanrdApiUserInnerOrderSystemAddressSaveOption, | ||
1542 | + ): Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess> { | ||
1543 | + return requester(request.url, { | ||
1544 | + method: request.method, | ||
1545 | + ...option, | ||
1546 | + }) as unknown as Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess>; | ||
1547 | + } | ||
1548 | + | ||
1549 | + /** http method */ | ||
1550 | + request.method = method; | ||
1551 | + /** request url */ | ||
1552 | + request.url = url; | ||
1553 | + return request; | ||
1554 | + })(); | ||
1555 | + | ||
1475 | /** @description request parameter type for postCanrdApiUserList */ | 1556 | /** @description request parameter type for postCanrdApiUserList */ |
1476 | export interface PostCanrdApiUserListOption { | 1557 | export interface PostCanrdApiUserListOption { |
1477 | /** | 1558 | /** |
@@ -1543,6 +1624,147 @@ export const postCanrdApiUserList = /* #__PURE__ */ (() => { | @@ -1543,6 +1624,147 @@ export const postCanrdApiUserList = /* #__PURE__ */ (() => { | ||
1543 | return request; | 1624 | return request; |
1544 | })(); | 1625 | })(); |
1545 | 1626 | ||
1627 | +/** @description request parameter type for postCanrdApiUserNowMoneyCheck */ | ||
1628 | +export interface PostCanrdApiUserNowMoneyCheckOption { | ||
1629 | + /** | ||
1630 | + * @description | ||
1631 | + * request | ||
1632 | + */ | ||
1633 | + body: { | ||
1634 | + /** | ||
1635 | + @description | ||
1636 | + request */ | ||
1637 | + request: UserNowMoneyCheckRequest; | ||
1638 | + }; | ||
1639 | +} | ||
1640 | + | ||
1641 | +/** @description response type for postCanrdApiUserNowMoneyCheck */ | ||
1642 | +export interface PostCanrdApiUserNowMoneyCheckResponse { | ||
1643 | + /** | ||
1644 | + * @description | ||
1645 | + * OK | ||
1646 | + */ | ||
1647 | + 200: ServerResult; | ||
1648 | + /** | ||
1649 | + * @description | ||
1650 | + * Created | ||
1651 | + */ | ||
1652 | + 201: any; | ||
1653 | + /** | ||
1654 | + * @description | ||
1655 | + * Unauthorized | ||
1656 | + */ | ||
1657 | + 401: any; | ||
1658 | + /** | ||
1659 | + * @description | ||
1660 | + * Forbidden | ||
1661 | + */ | ||
1662 | + 403: any; | ||
1663 | + /** | ||
1664 | + * @description | ||
1665 | + * Not Found | ||
1666 | + */ | ||
1667 | + 404: any; | ||
1668 | +} | ||
1669 | + | ||
1670 | +export type PostCanrdApiUserNowMoneyCheckResponseSuccess = | ||
1671 | + PostCanrdApiUserNowMoneyCheckResponse[200]; | ||
1672 | +/** | ||
1673 | + * @description | ||
1674 | + * 检查用户额度 | ||
1675 | + * @tags canrd-mobile-api-controller | ||
1676 | + * @produces * | ||
1677 | + * @consumes application/json | ||
1678 | + */ | ||
1679 | +export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => { | ||
1680 | + const method = 'post'; | ||
1681 | + const url = '/canrd/api/user/nowMoney/check'; | ||
1682 | + function request( | ||
1683 | + option: PostCanrdApiUserNowMoneyCheckOption, | ||
1684 | + ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> { | ||
1685 | + return requester(request.url, { | ||
1686 | + method: request.method, | ||
1687 | + ...option, | ||
1688 | + }) as unknown as Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess>; | ||
1689 | + } | ||
1690 | + | ||
1691 | + /** http method */ | ||
1692 | + request.method = method; | ||
1693 | + /** request url */ | ||
1694 | + request.url = url; | ||
1695 | + return request; | ||
1696 | +})(); | ||
1697 | + | ||
1698 | +/** @description request parameter type for postCommonAudit */ | ||
1699 | +export interface PostCommonAuditOption { | ||
1700 | + /** | ||
1701 | + * @description | ||
1702 | + * request | ||
1703 | + */ | ||
1704 | + body: { | ||
1705 | + /** | ||
1706 | + @description | ||
1707 | + request */ | ||
1708 | + request: CommonAuditRequest; | ||
1709 | + }; | ||
1710 | +} | ||
1711 | + | ||
1712 | +/** @description response type for postCommonAudit */ | ||
1713 | +export interface PostCommonAuditResponse { | ||
1714 | + /** | ||
1715 | + * @description | ||
1716 | + * OK | ||
1717 | + */ | ||
1718 | + 200: ServerResult; | ||
1719 | + /** | ||
1720 | + * @description | ||
1721 | + * Created | ||
1722 | + */ | ||
1723 | + 201: any; | ||
1724 | + /** | ||
1725 | + * @description | ||
1726 | + * Unauthorized | ||
1727 | + */ | ||
1728 | + 401: any; | ||
1729 | + /** | ||
1730 | + * @description | ||
1731 | + * Forbidden | ||
1732 | + */ | ||
1733 | + 403: any; | ||
1734 | + /** | ||
1735 | + * @description | ||
1736 | + * Not Found | ||
1737 | + */ | ||
1738 | + 404: any; | ||
1739 | +} | ||
1740 | + | ||
1741 | +export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200]; | ||
1742 | +/** | ||
1743 | + * @description | ||
1744 | + * audit | ||
1745 | + * @tags common-controller | ||
1746 | + * @produces * | ||
1747 | + * @consumes application/json | ||
1748 | + */ | ||
1749 | +export const postCommonAudit = /* #__PURE__ */ (() => { | ||
1750 | + const method = 'post'; | ||
1751 | + const url = '/common/audit'; | ||
1752 | + function request( | ||
1753 | + option: PostCommonAuditOption, | ||
1754 | + ): Promise<PostCommonAuditResponseSuccess> { | ||
1755 | + return requester(request.url, { | ||
1756 | + method: request.method, | ||
1757 | + ...option, | ||
1758 | + }) as unknown as Promise<PostCommonAuditResponseSuccess>; | ||
1759 | + } | ||
1760 | + | ||
1761 | + /** http method */ | ||
1762 | + request.method = method; | ||
1763 | + /** request url */ | ||
1764 | + request.url = url; | ||
1765 | + return request; | ||
1766 | +})(); | ||
1767 | + | ||
1546 | /** @description response type for getError */ | 1768 | /** @description response type for getError */ |
1547 | export interface GetErrorResponse { | 1769 | export interface GetErrorResponse { |
1548 | /** | 1770 | /** |
@@ -8139,77 +8361,6 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { | @@ -8139,77 +8361,6 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { | ||
8139 | return request; | 8361 | return request; |
8140 | })(); | 8362 | })(); |
8141 | 8363 | ||
8142 | -/** @description request parameter type for postOrderImportImportInvoiceProject */ | ||
8143 | -export interface PostOrderImportImportInvoiceProjectOption { | ||
8144 | - /** | ||
8145 | - * @description | ||
8146 | - * file | ||
8147 | - */ | ||
8148 | - formData: { | ||
8149 | - /** | ||
8150 | - @description | ||
8151 | - file */ | ||
8152 | - file: File; | ||
8153 | - }; | ||
8154 | -} | ||
8155 | - | ||
8156 | -/** @description response type for postOrderImportImportInvoiceProject */ | ||
8157 | -export interface PostOrderImportImportInvoiceProjectResponse { | ||
8158 | - /** | ||
8159 | - * @description | ||
8160 | - * OK | ||
8161 | - */ | ||
8162 | - 200: ServerResult; | ||
8163 | - /** | ||
8164 | - * @description | ||
8165 | - * Created | ||
8166 | - */ | ||
8167 | - 201: any; | ||
8168 | - /** | ||
8169 | - * @description | ||
8170 | - * Unauthorized | ||
8171 | - */ | ||
8172 | - 401: any; | ||
8173 | - /** | ||
8174 | - * @description | ||
8175 | - * Forbidden | ||
8176 | - */ | ||
8177 | - 403: any; | ||
8178 | - /** | ||
8179 | - * @description | ||
8180 | - * Not Found | ||
8181 | - */ | ||
8182 | - 404: any; | ||
8183 | -} | ||
8184 | - | ||
8185 | -export type PostOrderImportImportInvoiceProjectResponseSuccess = | ||
8186 | - PostOrderImportImportInvoiceProjectResponse[200]; | ||
8187 | -/** | ||
8188 | - * @description | ||
8189 | - * 导入发票项目 | ||
8190 | - * @tags 导入 | ||
8191 | - * @produces * | ||
8192 | - * @consumes multipart/form-data | ||
8193 | - */ | ||
8194 | -export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() => { | ||
8195 | - const method = 'post'; | ||
8196 | - const url = '/order/import/importInvoiceProject'; | ||
8197 | - function request( | ||
8198 | - option: PostOrderImportImportInvoiceProjectOption, | ||
8199 | - ): Promise<PostOrderImportImportInvoiceProjectResponseSuccess> { | ||
8200 | - return requester(request.url, { | ||
8201 | - method: request.method, | ||
8202 | - ...option, | ||
8203 | - }) as unknown as Promise<PostOrderImportImportInvoiceProjectResponseSuccess>; | ||
8204 | - } | ||
8205 | - | ||
8206 | - /** http method */ | ||
8207 | - request.method = method; | ||
8208 | - /** request url */ | ||
8209 | - request.url = url; | ||
8210 | - return request; | ||
8211 | -})(); | ||
8212 | - | ||
8213 | /** @description request parameter type for postOrderImportImportWeightAndVolume */ | 8364 | /** @description request parameter type for postOrderImportImportWeightAndVolume */ |
8214 | export interface PostOrderImportImportWeightAndVolumeOption { | 8365 | export interface PostOrderImportImportWeightAndVolumeOption { |
8215 | /** | 8366 | /** |
@@ -8561,8 +8712,8 @@ export const postPrepaidList = /* #__PURE__ */ (() => { | @@ -8561,8 +8712,8 @@ export const postPrepaidList = /* #__PURE__ */ (() => { | ||
8561 | return request; | 8712 | return request; |
8562 | })(); | 8713 | })(); |
8563 | 8714 | ||
8564 | -/** @description request parameter type for postPrepaidUpdate */ | ||
8565 | -export interface PostPrepaidUpdateOption { | 8715 | +/** @description request parameter type for postPrepaidPhoneAvailableList */ |
8716 | +export interface PostPrepaidPhoneAvailableListOption { | ||
8566 | /** | 8717 | /** |
8567 | * @description | 8718 | * @description |
8568 | * request | 8719 | * request |
@@ -8571,12 +8722,12 @@ export interface PostPrepaidUpdateOption { | @@ -8571,12 +8722,12 @@ export interface PostPrepaidUpdateOption { | ||
8571 | /** | 8722 | /** |
8572 | @description | 8723 | @description |
8573 | request */ | 8724 | request */ |
8574 | - request: SalesRechargePrepaymentUpdateRequest; | 8725 | + request: SalesRechargePrepaymentAuditRequest; |
8575 | }; | 8726 | }; |
8576 | } | 8727 | } |
8577 | 8728 | ||
8578 | -/** @description response type for postPrepaidUpdate */ | ||
8579 | -export interface PostPrepaidUpdateResponse { | 8729 | +/** @description response type for postPrepaidPhoneAvailableList */ |
8730 | +export interface PostPrepaidPhoneAvailableListResponse { | ||
8580 | /** | 8731 | /** |
8581 | * @description | 8732 | * @description |
8582 | * OK | 8733 | * OK |
@@ -8604,24 +8755,25 @@ export interface PostPrepaidUpdateResponse { | @@ -8604,24 +8755,25 @@ export interface PostPrepaidUpdateResponse { | ||
8604 | 404: any; | 8755 | 404: any; |
8605 | } | 8756 | } |
8606 | 8757 | ||
8607 | -export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; | 8758 | +export type PostPrepaidPhoneAvailableListResponseSuccess = |
8759 | + PostPrepaidPhoneAvailableListResponse[200]; | ||
8608 | /** | 8760 | /** |
8609 | * @description | 8761 | * @description |
8610 | - * 修改预存 | 8762 | + * 财务审核 |
8611 | * @tags prepaid-controller | 8763 | * @tags prepaid-controller |
8612 | * @produces * | 8764 | * @produces * |
8613 | * @consumes application/json | 8765 | * @consumes application/json |
8614 | */ | 8766 | */ |
8615 | -export const postPrepaidUpdate = /* #__PURE__ */ (() => { | 8767 | +export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => { |
8616 | const method = 'post'; | 8768 | const method = 'post'; |
8617 | - const url = '/prepaid/update'; | 8769 | + const url = '/prepaid/phone/available/list'; |
8618 | function request( | 8770 | function request( |
8619 | - option: PostPrepaidUpdateOption, | ||
8620 | - ): Promise<PostPrepaidUpdateResponseSuccess> { | 8771 | + option: PostPrepaidPhoneAvailableListOption, |
8772 | + ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> { | ||
8621 | return requester(request.url, { | 8773 | return requester(request.url, { |
8622 | method: request.method, | 8774 | method: request.method, |
8623 | ...option, | 8775 | ...option, |
8624 | - }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; | 8776 | + }) as unknown as Promise<PostPrepaidPhoneAvailableListResponseSuccess>; |
8625 | } | 8777 | } |
8626 | 8778 | ||
8627 | /** http method */ | 8779 | /** http method */ |
@@ -8631,569 +8783,22 @@ export const postPrepaidUpdate = /* #__PURE__ */ (() => { | @@ -8631,569 +8783,22 @@ export const postPrepaidUpdate = /* #__PURE__ */ (() => { | ||
8631 | return request; | 8783 | return request; |
8632 | })(); | 8784 | })(); |
8633 | 8785 | ||
8634 | -/** @description request parameter type for postServiceBankStatementDeleteBankStatement */ | ||
8635 | -export interface PostServiceBankStatementDeleteBankStatementOption { | 8786 | +/** @description request parameter type for postPrepaidUpdate */ |
8787 | +export interface PostPrepaidUpdateOption { | ||
8636 | /** | 8788 | /** |
8637 | * @description | 8789 | * @description |
8638 | - * dto | 8790 | + * request |
8639 | */ | 8791 | */ |
8640 | body: { | 8792 | body: { |
8641 | /** | 8793 | /** |
8642 | @description | 8794 | @description |
8643 | - dto */ | ||
8644 | - dto: Dto; | ||
8645 | - }; | ||
8646 | -} | ||
8647 | - | ||
8648 | -/** @description response type for postServiceBankStatementDeleteBankStatement */ | ||
8649 | -export interface PostServiceBankStatementDeleteBankStatementResponse { | ||
8650 | - /** | ||
8651 | - * @description | ||
8652 | - * OK | ||
8653 | - */ | ||
8654 | - 200: ServerResult; | ||
8655 | - /** | ||
8656 | - * @description | ||
8657 | - * Created | ||
8658 | - */ | ||
8659 | - 201: any; | ||
8660 | - /** | ||
8661 | - * @description | ||
8662 | - * Unauthorized | ||
8663 | - */ | ||
8664 | - 401: any; | ||
8665 | - /** | ||
8666 | - * @description | ||
8667 | - * Forbidden | ||
8668 | - */ | ||
8669 | - 403: any; | ||
8670 | - /** | ||
8671 | - * @description | ||
8672 | - * Not Found | ||
8673 | - */ | ||
8674 | - 404: any; | ||
8675 | -} | ||
8676 | - | ||
8677 | -export type PostServiceBankStatementDeleteBankStatementResponseSuccess = | ||
8678 | - PostServiceBankStatementDeleteBankStatementResponse[200]; | ||
8679 | -/** | ||
8680 | - * @description | ||
8681 | - * 删除银行流水 | ||
8682 | - * @tags 银行流水 | ||
8683 | - * @produces * | ||
8684 | - * @consumes application/json | ||
8685 | - */ | ||
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 | - } | ||
8698 | - | ||
8699 | - /** http method */ | ||
8700 | - request.method = method; | ||
8701 | - /** request url */ | ||
8702 | - request.url = url; | ||
8703 | - return request; | ||
8704 | - })(); | ||
8705 | - | ||
8706 | -/** @description request parameter type for postServiceBankStatementEditBankStatement */ | ||
8707 | -export interface PostServiceBankStatementEditBankStatementOption { | ||
8708 | - /** | ||
8709 | - * @description | ||
8710 | - * dto | ||
8711 | - */ | ||
8712 | - body: { | ||
8713 | - /** | ||
8714 | - @description | ||
8715 | - dto */ | ||
8716 | - dto: Dto; | ||
8717 | - }; | ||
8718 | -} | ||
8719 | - | ||
8720 | -/** @description response type for postServiceBankStatementEditBankStatement */ | ||
8721 | -export interface PostServiceBankStatementEditBankStatementResponse { | ||
8722 | - /** | ||
8723 | - * @description | ||
8724 | - * OK | ||
8725 | - */ | ||
8726 | - 200: ServerResult; | ||
8727 | - /** | ||
8728 | - * @description | ||
8729 | - * Created | ||
8730 | - */ | ||
8731 | - 201: any; | ||
8732 | - /** | ||
8733 | - * @description | ||
8734 | - * Unauthorized | ||
8735 | - */ | ||
8736 | - 401: any; | ||
8737 | - /** | ||
8738 | - * @description | ||
8739 | - * Forbidden | ||
8740 | - */ | ||
8741 | - 403: any; | ||
8742 | - /** | ||
8743 | - * @description | ||
8744 | - * Not Found | ||
8745 | - */ | ||
8746 | - 404: any; | ||
8747 | -} | ||
8748 | - | ||
8749 | -export type PostServiceBankStatementEditBankStatementResponseSuccess = | ||
8750 | - PostServiceBankStatementEditBankStatementResponse[200]; | ||
8751 | -/** | ||
8752 | - * @description | ||
8753 | - * 编辑银行流水 | ||
8754 | - * @tags 银行流水 | ||
8755 | - * @produces * | ||
8756 | - * @consumes application/json | ||
8757 | - */ | ||
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 | - } | ||
8770 | - | ||
8771 | - /** http method */ | ||
8772 | - request.method = method; | ||
8773 | - /** request url */ | ||
8774 | - request.url = url; | ||
8775 | - return request; | ||
8776 | - })(); | ||
8777 | - | ||
8778 | -/** @description response type for postServiceBankStatementExportTemplate */ | ||
8779 | -export interface PostServiceBankStatementExportTemplateResponse { | ||
8780 | - /** | ||
8781 | - * @description | ||
8782 | - * OK | ||
8783 | - */ | ||
8784 | - 200: any; | ||
8785 | - /** | ||
8786 | - * @description | ||
8787 | - * Created | ||
8788 | - */ | ||
8789 | - 201: any; | ||
8790 | - /** | ||
8791 | - * @description | ||
8792 | - * Unauthorized | ||
8793 | - */ | ||
8794 | - 401: any; | ||
8795 | - /** | ||
8796 | - * @description | ||
8797 | - * Forbidden | ||
8798 | - */ | ||
8799 | - 403: any; | ||
8800 | - /** | ||
8801 | - * @description | ||
8802 | - * Not Found | ||
8803 | - */ | ||
8804 | - 404: any; | ||
8805 | -} | ||
8806 | - | ||
8807 | -export type PostServiceBankStatementExportTemplateResponseSuccess = | ||
8808 | - PostServiceBankStatementExportTemplateResponse[200]; | ||
8809 | -/** | ||
8810 | - * @description | ||
8811 | - * 下载银行流水模板 | ||
8812 | - * @tags 银行流水 | ||
8813 | - * @produces * | ||
8814 | - * @consumes application/json | ||
8815 | - */ | ||
8816 | -export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() => { | ||
8817 | - const method = 'post'; | ||
8818 | - const url = '/service/bankStatement/exportTemplate'; | ||
8819 | - function request(): Promise<PostServiceBankStatementExportTemplateResponseSuccess> { | ||
8820 | - return requester(request.url, { | ||
8821 | - method: request.method, | ||
8822 | - }) as unknown as Promise<PostServiceBankStatementExportTemplateResponseSuccess>; | ||
8823 | - } | ||
8824 | - | ||
8825 | - /** http method */ | ||
8826 | - request.method = method; | ||
8827 | - /** request url */ | ||
8828 | - request.url = url; | ||
8829 | - return request; | ||
8830 | -})(); | ||
8831 | - | ||
8832 | -/** @description request parameter type for postServiceBankStatementImportBankStatementForm */ | ||
8833 | -export interface PostServiceBankStatementImportBankStatementFormOption { | ||
8834 | - /** | ||
8835 | - * @description | ||
8836 | - * file | ||
8837 | - */ | ||
8838 | - formData: { | ||
8839 | - /** | ||
8840 | - @description | ||
8841 | - file */ | ||
8842 | - file: File; | ||
8843 | - }; | ||
8844 | -} | ||
8845 | - | ||
8846 | -/** @description response type for postServiceBankStatementImportBankStatementForm */ | ||
8847 | -export interface PostServiceBankStatementImportBankStatementFormResponse { | ||
8848 | - /** | ||
8849 | - * @description | ||
8850 | - * OK | ||
8851 | - */ | ||
8852 | - 200: ServerResult; | ||
8853 | - /** | ||
8854 | - * @description | ||
8855 | - * Created | ||
8856 | - */ | ||
8857 | - 201: any; | ||
8858 | - /** | ||
8859 | - * @description | ||
8860 | - * Unauthorized | ||
8861 | - */ | ||
8862 | - 401: any; | ||
8863 | - /** | ||
8864 | - * @description | ||
8865 | - * Forbidden | ||
8866 | - */ | ||
8867 | - 403: any; | ||
8868 | - /** | ||
8869 | - * @description | ||
8870 | - * Not Found | ||
8871 | - */ | ||
8872 | - 404: any; | ||
8873 | -} | ||
8874 | - | ||
8875 | -export type PostServiceBankStatementImportBankStatementFormResponseSuccess = | ||
8876 | - PostServiceBankStatementImportBankStatementFormResponse[200]; | ||
8877 | -/** | ||
8878 | - * @description | ||
8879 | - * 导入银行流水表格 | ||
8880 | - * @tags 银行流水 | ||
8881 | - * @produces * | ||
8882 | - * @consumes multipart/form-data | ||
8883 | - */ | ||
8884 | -export const postServiceBankStatementImportBankStatementForm = | ||
8885 | - /* #__PURE__ */ (() => { | ||
8886 | - const method = 'post'; | ||
8887 | - const url = '/service/bankStatement/importBankStatementForm'; | ||
8888 | - function request( | ||
8889 | - option: PostServiceBankStatementImportBankStatementFormOption, | ||
8890 | - ): Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess> { | ||
8891 | - return requester(request.url, { | ||
8892 | - method: request.method, | ||
8893 | - ...option, | ||
8894 | - }) as unknown as Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess>; | ||
8895 | - } | ||
8896 | - | ||
8897 | - /** http method */ | ||
8898 | - request.method = method; | ||
8899 | - /** request url */ | ||
8900 | - request.url = url; | ||
8901 | - return request; | ||
8902 | - })(); | ||
8903 | - | ||
8904 | -/** @description request parameter type for postServiceBankStatementQueryBankStatement */ | ||
8905 | -export interface PostServiceBankStatementQueryBankStatementOption { | ||
8906 | - /** | ||
8907 | - * @description | ||
8908 | - * dto | ||
8909 | - */ | ||
8910 | - body: { | ||
8911 | - /** | ||
8912 | - @description | ||
8913 | - dto */ | ||
8914 | - dto: QueryBankStatementDto; | ||
8915 | - }; | ||
8916 | -} | ||
8917 | - | ||
8918 | -/** @description response type for postServiceBankStatementQueryBankStatement */ | ||
8919 | -export interface PostServiceBankStatementQueryBankStatementResponse { | ||
8920 | - /** | ||
8921 | - * @description | ||
8922 | - * OK | ||
8923 | - */ | ||
8924 | - 200: ServerResult; | ||
8925 | - /** | ||
8926 | - * @description | ||
8927 | - * Created | ||
8928 | - */ | ||
8929 | - 201: any; | ||
8930 | - /** | ||
8931 | - * @description | ||
8932 | - * Unauthorized | ||
8933 | - */ | ||
8934 | - 401: any; | ||
8935 | - /** | ||
8936 | - * @description | ||
8937 | - * Forbidden | ||
8938 | - */ | ||
8939 | - 403: any; | ||
8940 | - /** | ||
8941 | - * @description | ||
8942 | - * Not Found | ||
8943 | - */ | ||
8944 | - 404: any; | ||
8945 | -} | ||
8946 | - | ||
8947 | -export type PostServiceBankStatementQueryBankStatementResponseSuccess = | ||
8948 | - PostServiceBankStatementQueryBankStatementResponse[200]; | ||
8949 | -/** | ||
8950 | - * @description | ||
8951 | - * 查询银行流水 | ||
8952 | - * @tags 银行流水 | ||
8953 | - * @produces * | ||
8954 | - * @consumes application/json | ||
8955 | - */ | ||
8956 | -export const postServiceBankStatementQueryBankStatement = | ||
8957 | - /* #__PURE__ */ (() => { | ||
8958 | - const method = 'post'; | ||
8959 | - const url = '/service/bankStatement/queryBankStatement'; | ||
8960 | - function request( | ||
8961 | - option: PostServiceBankStatementQueryBankStatementOption, | ||
8962 | - ): Promise<PostServiceBankStatementQueryBankStatementResponseSuccess> { | ||
8963 | - return requester(request.url, { | ||
8964 | - method: request.method, | ||
8965 | - ...option, | ||
8966 | - }) as unknown as Promise<PostServiceBankStatementQueryBankStatementResponseSuccess>; | ||
8967 | - } | ||
8968 | - | ||
8969 | - /** http method */ | ||
8970 | - request.method = method; | ||
8971 | - /** request url */ | ||
8972 | - request.url = url; | ||
8973 | - return request; | ||
8974 | - })(); | ||
8975 | - | ||
8976 | -/** @description response type for postServiceConstAfterInvoicingInvoiceRecordStatus */ | ||
8977 | -export interface PostServiceConstAfterInvoicingInvoiceRecordStatusResponse { | ||
8978 | - /** | ||
8979 | - * @description | ||
8980 | - * OK | ||
8981 | - */ | ||
8982 | - 200: ServerResult; | ||
8983 | - /** | ||
8984 | - * @description | ||
8985 | - * Created | ||
8986 | - */ | ||
8987 | - 201: any; | ||
8988 | - /** | ||
8989 | - * @description | ||
8990 | - * Unauthorized | ||
8991 | - */ | ||
8992 | - 401: any; | ||
8993 | - /** | ||
8994 | - * @description | ||
8995 | - * Forbidden | ||
8996 | - */ | ||
8997 | - 403: any; | ||
8998 | - /** | ||
8999 | - * @description | ||
9000 | - * Not Found | ||
9001 | - */ | ||
9002 | - 404: any; | ||
9003 | -} | ||
9004 | - | ||
9005 | -export type PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess = | ||
9006 | - PostServiceConstAfterInvoicingInvoiceRecordStatusResponse[200]; | ||
9007 | -/** | ||
9008 | - * @description | ||
9009 | - * 开票后的开票记录状态 | ||
9010 | - * @tags front-const-controller | ||
9011 | - * @produces * | ||
9012 | - * @consumes application/json | ||
9013 | - */ | ||
9014 | -export const postServiceConstAfterInvoicingInvoiceRecordStatus = | ||
9015 | - /* #__PURE__ */ (() => { | ||
9016 | - const method = 'post'; | ||
9017 | - const url = '/service/const/afterInvoicingInvoiceRecordStatus'; | ||
9018 | - function request(): Promise<PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess> { | ||
9019 | - return requester(request.url, { | ||
9020 | - method: request.method, | ||
9021 | - }) as unknown as Promise<PostServiceConstAfterInvoicingInvoiceRecordStatusResponseSuccess>; | ||
9022 | - } | ||
9023 | - | ||
9024 | - /** http method */ | ||
9025 | - request.method = method; | ||
9026 | - /** request url */ | ||
9027 | - request.url = url; | ||
9028 | - return request; | ||
9029 | - })(); | ||
9030 | - | ||
9031 | -/** @description response type for postServiceConstAfterInvoicingStatus */ | ||
9032 | -export interface PostServiceConstAfterInvoicingStatusResponse { | ||
9033 | - /** | ||
9034 | - * @description | ||
9035 | - * OK | ||
9036 | - */ | ||
9037 | - 200: ServerResult; | ||
9038 | - /** | ||
9039 | - * @description | ||
9040 | - * Created | ||
9041 | - */ | ||
9042 | - 201: any; | ||
9043 | - /** | ||
9044 | - * @description | ||
9045 | - * Unauthorized | ||
9046 | - */ | ||
9047 | - 401: any; | ||
9048 | - /** | ||
9049 | - * @description | ||
9050 | - * Forbidden | ||
9051 | - */ | ||
9052 | - 403: any; | ||
9053 | - /** | ||
9054 | - * @description | ||
9055 | - * Not Found | ||
9056 | - */ | ||
9057 | - 404: any; | ||
9058 | -} | ||
9059 | - | ||
9060 | -export type PostServiceConstAfterInvoicingStatusResponseSuccess = | ||
9061 | - PostServiceConstAfterInvoicingStatusResponse[200]; | ||
9062 | -/** | ||
9063 | - * @description | ||
9064 | - * 申请开票后状态 | ||
9065 | - * @tags front-const-controller | ||
9066 | - * @produces * | ||
9067 | - * @consumes application/json | ||
9068 | - */ | ||
9069 | -export const postServiceConstAfterInvoicingStatus = /* #__PURE__ */ (() => { | ||
9070 | - const method = 'post'; | ||
9071 | - const url = '/service/const/afterInvoicingStatus'; | ||
9072 | - function request(): Promise<PostServiceConstAfterInvoicingStatusResponseSuccess> { | ||
9073 | - return requester(request.url, { | ||
9074 | - method: request.method, | ||
9075 | - }) as unknown as Promise<PostServiceConstAfterInvoicingStatusResponseSuccess>; | ||
9076 | - } | ||
9077 | - | ||
9078 | - /** http method */ | ||
9079 | - request.method = method; | ||
9080 | - /** request url */ | ||
9081 | - request.url = url; | ||
9082 | - return request; | ||
9083 | -})(); | ||
9084 | - | ||
9085 | -/** @description response type for postServiceConstBeforeInvoicingInvoiceRecordStatus */ | ||
9086 | -export interface PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse { | ||
9087 | - /** | ||
9088 | - * @description | ||
9089 | - * OK | ||
9090 | - */ | ||
9091 | - 200: ServerResult; | ||
9092 | - /** | ||
9093 | - * @description | ||
9094 | - * Created | ||
9095 | - */ | ||
9096 | - 201: any; | ||
9097 | - /** | ||
9098 | - * @description | ||
9099 | - * Unauthorized | ||
9100 | - */ | ||
9101 | - 401: any; | ||
9102 | - /** | ||
9103 | - * @description | ||
9104 | - * Forbidden | ||
9105 | - */ | ||
9106 | - 403: any; | ||
9107 | - /** | ||
9108 | - * @description | ||
9109 | - * Not Found | ||
9110 | - */ | ||
9111 | - 404: any; | ||
9112 | -} | ||
9113 | - | ||
9114 | -export type PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess = | ||
9115 | - PostServiceConstBeforeInvoicingInvoiceRecordStatusResponse[200]; | ||
9116 | -/** | ||
9117 | - * @description | ||
9118 | - * 开票前的开票记录状态 | ||
9119 | - * @tags front-const-controller | ||
9120 | - * @produces * | ||
9121 | - * @consumes application/json | ||
9122 | - */ | ||
9123 | -export const postServiceConstBeforeInvoicingInvoiceRecordStatus = | ||
9124 | - /* #__PURE__ */ (() => { | ||
9125 | - const method = 'post'; | ||
9126 | - const url = '/service/const/beforeInvoicingInvoiceRecordStatus'; | ||
9127 | - function request(): Promise<PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess> { | ||
9128 | - return requester(request.url, { | ||
9129 | - method: request.method, | ||
9130 | - }) as unknown as Promise<PostServiceConstBeforeInvoicingInvoiceRecordStatusResponseSuccess>; | ||
9131 | - } | ||
9132 | - | ||
9133 | - /** http method */ | ||
9134 | - request.method = method; | ||
9135 | - /** request url */ | ||
9136 | - request.url = url; | ||
9137 | - return request; | ||
9138 | - })(); | ||
9139 | - | ||
9140 | -/** @description response type for postServiceConstCanApplyAfterInvoicingStatus */ | ||
9141 | -export interface PostServiceConstCanApplyAfterInvoicingStatusResponse { | ||
9142 | - /** | ||
9143 | - * @description | ||
9144 | - * OK | ||
9145 | - */ | ||
9146 | - 200: ServerResult; | ||
9147 | - /** | ||
9148 | - * @description | ||
9149 | - * Created | ||
9150 | - */ | ||
9151 | - 201: any; | ||
9152 | - /** | ||
9153 | - * @description | ||
9154 | - * Unauthorized | ||
9155 | - */ | ||
9156 | - 401: any; | ||
9157 | - /** | ||
9158 | - * @description | ||
9159 | - * Forbidden | ||
9160 | - */ | ||
9161 | - 403: any; | ||
9162 | - /** | ||
9163 | - * @description | ||
9164 | - * Not Found | ||
9165 | - */ | ||
9166 | - 404: any; | 8795 | + request */ |
8796 | + request: SalesRechargePrepaymentUpdateRequest; | ||
8797 | + }; | ||
9167 | } | 8798 | } |
9168 | 8799 | ||
9169 | -export type PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess = | ||
9170 | - PostServiceConstCanApplyAfterInvoicingStatusResponse[200]; | ||
9171 | -/** | ||
9172 | - * @description | ||
9173 | - * 开具类型 | ||
9174 | - * @tags front-const-controller | ||
9175 | - * @produces * | ||
9176 | - * @consumes application/json | ||
9177 | - */ | ||
9178 | -export const postServiceConstCanApplyAfterInvoicingStatus = | ||
9179 | - /* #__PURE__ */ (() => { | ||
9180 | - const method = 'post'; | ||
9181 | - const url = '/service/const/canApplyAfterInvoicingStatus'; | ||
9182 | - function request(): Promise<PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess> { | ||
9183 | - return requester(request.url, { | ||
9184 | - method: request.method, | ||
9185 | - }) as unknown as Promise<PostServiceConstCanApplyAfterInvoicingStatusResponseSuccess>; | ||
9186 | - } | ||
9187 | - | ||
9188 | - /** http method */ | ||
9189 | - request.method = method; | ||
9190 | - /** request url */ | ||
9191 | - request.url = url; | ||
9192 | - return request; | ||
9193 | - })(); | ||
9194 | - | ||
9195 | -/** @description response type for postServiceConstGetPayeeEnum */ | ||
9196 | -export interface PostServiceConstGetPayeeEnumResponse { | 8800 | +/** @description response type for postPrepaidUpdate */ |
8801 | +export interface PostPrepaidUpdateResponse { | ||
9197 | /** | 8802 | /** |
9198 | * @description | 8803 | * @description |
9199 | * OK | 8804 | * OK |
@@ -9221,22 +8826,24 @@ export interface PostServiceConstGetPayeeEnumResponse { | @@ -9221,22 +8826,24 @@ export interface PostServiceConstGetPayeeEnumResponse { | ||
9221 | 404: any; | 8826 | 404: any; |
9222 | } | 8827 | } |
9223 | 8828 | ||
9224 | -export type PostServiceConstGetPayeeEnumResponseSuccess = | ||
9225 | - PostServiceConstGetPayeeEnumResponse[200]; | 8829 | +export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; |
9226 | /** | 8830 | /** |
9227 | * @description | 8831 | * @description |
9228 | - * 获取收款方 | ||
9229 | - * @tags front-const-controller | 8832 | + * 修改预存 |
8833 | + * @tags prepaid-controller | ||
9230 | * @produces * | 8834 | * @produces * |
9231 | * @consumes application/json | 8835 | * @consumes application/json |
9232 | */ | 8836 | */ |
9233 | -export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() => { | 8837 | +export const postPrepaidUpdate = /* #__PURE__ */ (() => { |
9234 | const method = 'post'; | 8838 | const method = 'post'; |
9235 | - const url = '/service/const/getPayeeEnum'; | ||
9236 | - function request(): Promise<PostServiceConstGetPayeeEnumResponseSuccess> { | 8839 | + const url = '/prepaid/update'; |
8840 | + function request( | ||
8841 | + option: PostPrepaidUpdateOption, | ||
8842 | + ): Promise<PostPrepaidUpdateResponseSuccess> { | ||
9237 | return requester(request.url, { | 8843 | return requester(request.url, { |
9238 | method: request.method, | 8844 | method: request.method, |
9239 | - }) as unknown as Promise<PostServiceConstGetPayeeEnumResponseSuccess>; | 8845 | + ...option, |
8846 | + }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; | ||
9240 | } | 8847 | } |
9241 | 8848 | ||
9242 | /** http method */ | 8849 | /** http method */ |
@@ -9246,8 +8853,22 @@ export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() => { | @@ -9246,8 +8853,22 @@ export const postServiceConstGetPayeeEnum = /* #__PURE__ */ (() => { | ||
9246 | return request; | 8853 | return request; |
9247 | })(); | 8854 | })(); |
9248 | 8855 | ||
9249 | -/** @description response type for postServiceConstInvoiceType */ | ||
9250 | -export interface PostServiceConstInvoiceTypeResponse { | 8856 | +/** @description request parameter type for postResearchGroupMemberRequestsAdd */ |
8857 | +export interface PostResearchGroupMemberRequestsAddOption { | ||
8858 | + /** | ||
8859 | + * @description | ||
8860 | + * request | ||
8861 | + */ | ||
8862 | + body: { | ||
8863 | + /** | ||
8864 | + @description | ||
8865 | + request */ | ||
8866 | + request: ResearchGroupMemberRequestAddRequest; | ||
8867 | + }; | ||
8868 | +} | ||
8869 | + | ||
8870 | +/** @description response type for postResearchGroupMemberRequestsAdd */ | ||
8871 | +export interface PostResearchGroupMemberRequestsAddResponse { | ||
9251 | /** | 8872 | /** |
9252 | * @description | 8873 | * @description |
9253 | * OK | 8874 | * OK |
@@ -9275,22 +8896,25 @@ export interface PostServiceConstInvoiceTypeResponse { | @@ -9275,22 +8896,25 @@ export interface PostServiceConstInvoiceTypeResponse { | ||
9275 | 404: any; | 8896 | 404: any; |
9276 | } | 8897 | } |
9277 | 8898 | ||
9278 | -export type PostServiceConstInvoiceTypeResponseSuccess = | ||
9279 | - PostServiceConstInvoiceTypeResponse[200]; | 8899 | +export type PostResearchGroupMemberRequestsAddResponseSuccess = |
8900 | + PostResearchGroupMemberRequestsAddResponse[200]; | ||
9280 | /** | 8901 | /** |
9281 | * @description | 8902 | * @description |
9282 | - * 发票类型 | ||
9283 | - * @tags front-const-controller | 8903 | + * 新增申请信息 |
8904 | + * @tags research-group-member-requests-controller | ||
9284 | * @produces * | 8905 | * @produces * |
9285 | * @consumes application/json | 8906 | * @consumes application/json |
9286 | */ | 8907 | */ |
9287 | -export const postServiceConstInvoiceType = /* #__PURE__ */ (() => { | 8908 | +export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => { |
9288 | const method = 'post'; | 8909 | const method = 'post'; |
9289 | - const url = '/service/const/invoiceType'; | ||
9290 | - function request(): Promise<PostServiceConstInvoiceTypeResponseSuccess> { | 8910 | + const url = '/research/group/member/requests/add'; |
8911 | + function request( | ||
8912 | + option: PostResearchGroupMemberRequestsAddOption, | ||
8913 | + ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> { | ||
9291 | return requester(request.url, { | 8914 | return requester(request.url, { |
9292 | method: request.method, | 8915 | method: request.method, |
9293 | - }) as unknown as Promise<PostServiceConstInvoiceTypeResponseSuccess>; | 8916 | + ...option, |
8917 | + }) as unknown as Promise<PostResearchGroupMemberRequestsAddResponseSuccess>; | ||
9294 | } | 8918 | } |
9295 | 8919 | ||
9296 | /** http method */ | 8920 | /** http method */ |
@@ -9300,8 +8924,22 @@ export const postServiceConstInvoiceType = /* #__PURE__ */ (() => { | @@ -9300,8 +8924,22 @@ export const postServiceConstInvoiceType = /* #__PURE__ */ (() => { | ||
9300 | return request; | 8924 | return request; |
9301 | })(); | 8925 | })(); |
9302 | 8926 | ||
9303 | -/** @description response type for postServiceConstInvoicingType */ | ||
9304 | -export interface PostServiceConstInvoicingTypeResponse { | 8927 | +/** @description request parameter type for postResearchGroupMemberRequestsDelete */ |
8928 | +export interface PostResearchGroupMemberRequestsDeleteOption { | ||
8929 | + /** | ||
8930 | + * @description | ||
8931 | + * request | ||
8932 | + */ | ||
8933 | + body: { | ||
8934 | + /** | ||
8935 | + @description | ||
8936 | + request */ | ||
8937 | + request: ResearchGroupMemberRequestDeleteRequest; | ||
8938 | + }; | ||
8939 | +} | ||
8940 | + | ||
8941 | +/** @description response type for postResearchGroupMemberRequestsDelete */ | ||
8942 | +export interface PostResearchGroupMemberRequestsDeleteResponse { | ||
9305 | /** | 8943 | /** |
9306 | * @description | 8944 | * @description |
9307 | * OK | 8945 | * OK |
@@ -9329,22 +8967,25 @@ export interface PostServiceConstInvoicingTypeResponse { | @@ -9329,22 +8967,25 @@ export interface PostServiceConstInvoicingTypeResponse { | ||
9329 | 404: any; | 8967 | 404: any; |
9330 | } | 8968 | } |
9331 | 8969 | ||
9332 | -export type PostServiceConstInvoicingTypeResponseSuccess = | ||
9333 | - PostServiceConstInvoicingTypeResponse[200]; | 8970 | +export type PostResearchGroupMemberRequestsDeleteResponseSuccess = |
8971 | + PostResearchGroupMemberRequestsDeleteResponse[200]; | ||
9334 | /** | 8972 | /** |
9335 | * @description | 8973 | * @description |
9336 | - * 开具类型 | ||
9337 | - * @tags front-const-controller | 8974 | + * 删除申请信息 |
8975 | + * @tags research-group-member-requests-controller | ||
9338 | * @produces * | 8976 | * @produces * |
9339 | * @consumes application/json | 8977 | * @consumes application/json |
9340 | */ | 8978 | */ |
9341 | -export const postServiceConstInvoicingType = /* #__PURE__ */ (() => { | 8979 | +export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => { |
9342 | const method = 'post'; | 8980 | const method = 'post'; |
9343 | - const url = '/service/const/invoicingType'; | ||
9344 | - function request(): Promise<PostServiceConstInvoicingTypeResponseSuccess> { | 8981 | + const url = '/research/group/member/requests/delete'; |
8982 | + function request( | ||
8983 | + option: PostResearchGroupMemberRequestsDeleteOption, | ||
8984 | + ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> { | ||
9345 | return requester(request.url, { | 8985 | return requester(request.url, { |
9346 | method: request.method, | 8986 | method: request.method, |
9347 | - }) as unknown as Promise<PostServiceConstInvoicingTypeResponseSuccess>; | 8987 | + ...option, |
8988 | + }) as unknown as Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess>; | ||
9348 | } | 8989 | } |
9349 | 8990 | ||
9350 | /** http method */ | 8991 | /** http method */ |
@@ -9354,22 +8995,22 @@ export const postServiceConstInvoicingType = /* #__PURE__ */ (() => { | @@ -9354,22 +8995,22 @@ export const postServiceConstInvoicingType = /* #__PURE__ */ (() => { | ||
9354 | return request; | 8995 | return request; |
9355 | })(); | 8996 | })(); |
9356 | 8997 | ||
9357 | -/** @description request parameter type for postServiceConstListInvoiceDetailNames */ | ||
9358 | -export interface PostServiceConstListInvoiceDetailNamesOption { | 8998 | +/** @description request parameter type for postResearchGroupMemberRequestsDetail */ |
8999 | +export interface PostResearchGroupMemberRequestsDetailOption { | ||
9359 | /** | 9000 | /** |
9360 | * @description | 9001 | * @description |
9361 | - * queryInvoiceProjectDto | 9002 | + * request |
9362 | */ | 9003 | */ |
9363 | body: { | 9004 | body: { |
9364 | /** | 9005 | /** |
9365 | @description | 9006 | @description |
9366 | - queryInvoiceProjectDto */ | ||
9367 | - queryInvoiceProjectDto: QueryInvoiceProjectDto; | 9007 | + request */ |
9008 | + request: ResearchGroupMemberRequestDetailRequest; | ||
9368 | }; | 9009 | }; |
9369 | } | 9010 | } |
9370 | 9011 | ||
9371 | -/** @description response type for postServiceConstListInvoiceDetailNames */ | ||
9372 | -export interface PostServiceConstListInvoiceDetailNamesResponse { | 9012 | +/** @description response type for postResearchGroupMemberRequestsDetail */ |
9013 | +export interface PostResearchGroupMemberRequestsDetailResponse { | ||
9373 | /** | 9014 | /** |
9374 | * @description | 9015 | * @description |
9375 | * OK | 9016 | * OK |
@@ -9397,25 +9038,25 @@ export interface PostServiceConstListInvoiceDetailNamesResponse { | @@ -9397,25 +9038,25 @@ export interface PostServiceConstListInvoiceDetailNamesResponse { | ||
9397 | 404: any; | 9038 | 404: any; |
9398 | } | 9039 | } |
9399 | 9040 | ||
9400 | -export type PostServiceConstListInvoiceDetailNamesResponseSuccess = | ||
9401 | - PostServiceConstListInvoiceDetailNamesResponse[200]; | 9041 | +export type PostResearchGroupMemberRequestsDetailResponseSuccess = |
9042 | + PostResearchGroupMemberRequestsDetailResponse[200]; | ||
9402 | /** | 9043 | /** |
9403 | * @description | 9044 | * @description |
9404 | - * 根据公司名获取收款方 | ||
9405 | - * @tags front-const-controller | 9045 | + * 查询申请信息 |
9046 | + * @tags research-group-member-requests-controller | ||
9406 | * @produces * | 9047 | * @produces * |
9407 | * @consumes application/json | 9048 | * @consumes application/json |
9408 | */ | 9049 | */ |
9409 | -export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() => { | 9050 | +export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => { |
9410 | const method = 'post'; | 9051 | const method = 'post'; |
9411 | - const url = '/service/const/listInvoiceDetailNames'; | 9052 | + const url = '/research/group/member/requests/detail'; |
9412 | function request( | 9053 | function request( |
9413 | - option: PostServiceConstListInvoiceDetailNamesOption, | ||
9414 | - ): Promise<PostServiceConstListInvoiceDetailNamesResponseSuccess> { | 9054 | + option: PostResearchGroupMemberRequestsDetailOption, |
9055 | + ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> { | ||
9415 | return requester(request.url, { | 9056 | return requester(request.url, { |
9416 | method: request.method, | 9057 | method: request.method, |
9417 | ...option, | 9058 | ...option, |
9418 | - }) as unknown as Promise<PostServiceConstListInvoiceDetailNamesResponseSuccess>; | 9059 | + }) as unknown as Promise<PostResearchGroupMemberRequestsDetailResponseSuccess>; |
9419 | } | 9060 | } |
9420 | 9061 | ||
9421 | /** http method */ | 9062 | /** http method */ |
@@ -9425,91 +9066,32 @@ export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() => { | @@ -9425,91 +9066,32 @@ export const postServiceConstListInvoiceDetailNames = /* #__PURE__ */ (() => { | ||
9425 | return request; | 9066 | return request; |
9426 | })(); | 9067 | })(); |
9427 | 9068 | ||
9428 | -/** @description response type for postServiceConstNotCanModifyInvoiceRecordStatus */ | ||
9429 | -export interface PostServiceConstNotCanModifyInvoiceRecordStatusResponse { | ||
9430 | - /** | ||
9431 | - * @description | ||
9432 | - * OK | ||
9433 | - */ | ||
9434 | - 200: ServerResult; | ||
9435 | - /** | ||
9436 | - * @description | ||
9437 | - * Created | ||
9438 | - */ | ||
9439 | - 201: any; | ||
9440 | - /** | ||
9441 | - * @description | ||
9442 | - * Unauthorized | ||
9443 | - */ | ||
9444 | - 401: any; | ||
9445 | - /** | ||
9446 | - * @description | ||
9447 | - * Forbidden | ||
9448 | - */ | ||
9449 | - 403: any; | 9069 | +/** @description request parameter type for postResearchGroupMemberRequestsEdit */ |
9070 | +export interface PostResearchGroupMemberRequestsEditOption { | ||
9450 | /** | 9071 | /** |
9451 | * @description | 9072 | * @description |
9452 | - * Not Found | 9073 | + * request |
9453 | */ | 9074 | */ |
9454 | - 404: any; | ||
9455 | -} | ||
9456 | - | ||
9457 | -export type PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess = | ||
9458 | - PostServiceConstNotCanModifyInvoiceRecordStatusResponse[200]; | ||
9459 | -/** | ||
9460 | - * @description | ||
9461 | - * 不能修改的开票记录状态 | ||
9462 | - * @tags front-const-controller | ||
9463 | - * @produces * | ||
9464 | - * @consumes application/json | ||
9465 | - */ | ||
9466 | -export const postServiceConstNotCanModifyInvoiceRecordStatus = | ||
9467 | - /* #__PURE__ */ (() => { | ||
9468 | - const method = 'post'; | ||
9469 | - const url = '/service/const/notCanModifyInvoiceRecordStatus'; | ||
9470 | - function request(): Promise<PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess> { | ||
9471 | - return requester(request.url, { | ||
9472 | - method: request.method, | ||
9473 | - }) as unknown as Promise<PostServiceConstNotCanModifyInvoiceRecordStatusResponseSuccess>; | ||
9474 | - } | ||
9475 | - | ||
9476 | - /** http method */ | ||
9477 | - request.method = method; | ||
9478 | - /** request url */ | ||
9479 | - request.url = url; | ||
9480 | - return request; | ||
9481 | - })(); | ||
9482 | - | ||
9483 | -/** @description request parameter type for getServiceInvoiceListInvoiceProject */ | ||
9484 | -export interface GetServiceInvoiceListInvoiceProjectOption { | ||
9485 | - /** @format int32 */ | ||
9486 | - query?: { | ||
9487 | - /** | ||
9488 | - @format int32 */ | ||
9489 | - current?: number; | ||
9490 | - /** | ||
9491 | - @format int32 */ | ||
9492 | - end?: number; | ||
9493 | - nameLike?: string; | ||
9494 | - /** | ||
9495 | - @format int32 */ | ||
9496 | - pageSize?: number; | ||
9497 | - /** | ||
9498 | - @format int32 */ | ||
9499 | - start?: number; | 9075 | + body: { |
9500 | /** | 9076 | /** |
9501 | - @format int32 */ | ||
9502 | - total?: number; | 9077 | + @description |
9078 | + request */ | ||
9079 | + request: ResearchGroupMemberRequestEditRequest; | ||
9503 | }; | 9080 | }; |
9504 | } | 9081 | } |
9505 | 9082 | ||
9506 | -/** @description response type for getServiceInvoiceListInvoiceProject */ | ||
9507 | -export interface GetServiceInvoiceListInvoiceProjectResponse { | 9083 | +/** @description response type for postResearchGroupMemberRequestsEdit */ |
9084 | +export interface PostResearchGroupMemberRequestsEditResponse { | ||
9508 | /** | 9085 | /** |
9509 | * @description | 9086 | * @description |
9510 | * OK | 9087 | * OK |
9511 | */ | 9088 | */ |
9512 | - 200: any; | 9089 | + 200: ServerResult; |
9090 | + /** | ||
9091 | + * @description | ||
9092 | + * Created | ||
9093 | + */ | ||
9094 | + 201: any; | ||
9513 | /** | 9095 | /** |
9514 | * @description | 9096 | * @description |
9515 | * Unauthorized | 9097 | * Unauthorized |
@@ -9527,24 +9109,25 @@ export interface GetServiceInvoiceListInvoiceProjectResponse { | @@ -9527,24 +9109,25 @@ export interface GetServiceInvoiceListInvoiceProjectResponse { | ||
9527 | 404: any; | 9109 | 404: any; |
9528 | } | 9110 | } |
9529 | 9111 | ||
9530 | -export type GetServiceInvoiceListInvoiceProjectResponseSuccess = | ||
9531 | - GetServiceInvoiceListInvoiceProjectResponse[200]; | 9112 | +export type PostResearchGroupMemberRequestsEditResponseSuccess = |
9113 | + PostResearchGroupMemberRequestsEditResponse[200]; | ||
9532 | /** | 9114 | /** |
9533 | * @description | 9115 | * @description |
9534 | - * invoiceProjectList | ||
9535 | - * @tags 发票 | 9116 | + * 编辑申请信息 |
9117 | + * @tags research-group-member-requests-controller | ||
9536 | * @produces * | 9118 | * @produces * |
9119 | + * @consumes application/json | ||
9537 | */ | 9120 | */ |
9538 | -export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() => { | ||
9539 | - const method = 'get'; | ||
9540 | - const url = '/service/invoice/ListInvoiceProject'; | 9121 | +export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => { |
9122 | + const method = 'post'; | ||
9123 | + const url = '/research/group/member/requests/edit'; | ||
9541 | function request( | 9124 | function request( |
9542 | - option?: GetServiceInvoiceListInvoiceProjectOption, | ||
9543 | - ): Promise<GetServiceInvoiceListInvoiceProjectResponseSuccess> { | 9125 | + option: PostResearchGroupMemberRequestsEditOption, |
9126 | + ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> { | ||
9544 | return requester(request.url, { | 9127 | return requester(request.url, { |
9545 | method: request.method, | 9128 | method: request.method, |
9546 | ...option, | 9129 | ...option, |
9547 | - }) as unknown as Promise<GetServiceInvoiceListInvoiceProjectResponseSuccess>; | 9130 | + }) as unknown as Promise<PostResearchGroupMemberRequestsEditResponseSuccess>; |
9548 | } | 9131 | } |
9549 | 9132 | ||
9550 | /** http method */ | 9133 | /** http method */ |
@@ -9554,22 +9137,22 @@ export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() => { | @@ -9554,22 +9137,22 @@ export const getServiceInvoiceListInvoiceProject = /* #__PURE__ */ (() => { | ||
9554 | return request; | 9137 | return request; |
9555 | })(); | 9138 | })(); |
9556 | 9139 | ||
9557 | -/** @description request parameter type for postServiceInvoiceAddInvoice */ | ||
9558 | -export interface PostServiceInvoiceAddInvoiceOption { | 9140 | +/** @description request parameter type for postResearchGroupMemberRequestsList */ |
9141 | +export interface PostResearchGroupMemberRequestsListOption { | ||
9559 | /** | 9142 | /** |
9560 | * @description | 9143 | * @description |
9561 | - * dto | 9144 | + * request |
9562 | */ | 9145 | */ |
9563 | body: { | 9146 | body: { |
9564 | /** | 9147 | /** |
9565 | @description | 9148 | @description |
9566 | - dto */ | ||
9567 | - dto: InvoiceDto; | 9149 | + request */ |
9150 | + request: ResearchGroupMemberRequestsRequest; | ||
9568 | }; | 9151 | }; |
9569 | } | 9152 | } |
9570 | 9153 | ||
9571 | -/** @description response type for postServiceInvoiceAddInvoice */ | ||
9572 | -export interface PostServiceInvoiceAddInvoiceResponse { | 9154 | +/** @description response type for postResearchGroupMemberRequestsList */ |
9155 | +export interface PostResearchGroupMemberRequestsListResponse { | ||
9573 | /** | 9156 | /** |
9574 | * @description | 9157 | * @description |
9575 | * OK | 9158 | * OK |
@@ -9597,25 +9180,25 @@ export interface PostServiceInvoiceAddInvoiceResponse { | @@ -9597,25 +9180,25 @@ export interface PostServiceInvoiceAddInvoiceResponse { | ||
9597 | 404: any; | 9180 | 404: any; |
9598 | } | 9181 | } |
9599 | 9182 | ||
9600 | -export type PostServiceInvoiceAddInvoiceResponseSuccess = | ||
9601 | - PostServiceInvoiceAddInvoiceResponse[200]; | 9183 | +export type PostResearchGroupMemberRequestsListResponseSuccess = |
9184 | + PostResearchGroupMemberRequestsListResponse[200]; | ||
9602 | /** | 9185 | /** |
9603 | * @description | 9186 | * @description |
9604 | - * 添加发票 | ||
9605 | - * @tags 发票 | 9187 | + * 申请列表 |
9188 | + * @tags research-group-member-requests-controller | ||
9606 | * @produces * | 9189 | * @produces * |
9607 | * @consumes application/json | 9190 | * @consumes application/json |
9608 | */ | 9191 | */ |
9609 | -export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => { | 9192 | +export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => { |
9610 | const method = 'post'; | 9193 | const method = 'post'; |
9611 | - const url = '/service/invoice/addInvoice'; | 9194 | + const url = '/research/group/member/requests/list'; |
9612 | function request( | 9195 | function request( |
9613 | - option: PostServiceInvoiceAddInvoiceOption, | ||
9614 | - ): Promise<PostServiceInvoiceAddInvoiceResponseSuccess> { | 9196 | + option: PostResearchGroupMemberRequestsListOption, |
9197 | + ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> { | ||
9615 | return requester(request.url, { | 9198 | return requester(request.url, { |
9616 | method: request.method, | 9199 | method: request.method, |
9617 | ...option, | 9200 | ...option, |
9618 | - }) as unknown as Promise<PostServiceInvoiceAddInvoiceResponseSuccess>; | 9201 | + }) as unknown as Promise<PostResearchGroupMemberRequestsListResponseSuccess>; |
9619 | } | 9202 | } |
9620 | 9203 | ||
9621 | /** http method */ | 9204 | /** http method */ |
@@ -9625,22 +9208,22 @@ export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => { | @@ -9625,22 +9208,22 @@ export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => { | ||
9625 | return request; | 9208 | return request; |
9626 | })(); | 9209 | })(); |
9627 | 9210 | ||
9628 | -/** @description request parameter type for postServiceInvoiceApplyInvoice */ | ||
9629 | -export interface PostServiceInvoiceApplyInvoiceOption { | 9211 | +/** @description request parameter type for postResearchGroupsAdd */ |
9212 | +export interface PostResearchGroupsAddOption { | ||
9630 | /** | 9213 | /** |
9631 | * @description | 9214 | * @description |
9632 | - * dto | 9215 | + * request |
9633 | */ | 9216 | */ |
9634 | body: { | 9217 | body: { |
9635 | /** | 9218 | /** |
9636 | @description | 9219 | @description |
9637 | - dto */ | ||
9638 | - dto: ApplyInvoiceDto; | 9220 | + request */ |
9221 | + request: ResearchGroupAddRequest; | ||
9639 | }; | 9222 | }; |
9640 | } | 9223 | } |
9641 | 9224 | ||
9642 | -/** @description response type for postServiceInvoiceApplyInvoice */ | ||
9643 | -export interface PostServiceInvoiceApplyInvoiceResponse { | 9225 | +/** @description response type for postResearchGroupsAdd */ |
9226 | +export interface PostResearchGroupsAddResponse { | ||
9644 | /** | 9227 | /** |
9645 | * @description | 9228 | * @description |
9646 | * OK | 9229 | * OK |
@@ -9668,25 +9251,25 @@ export interface PostServiceInvoiceApplyInvoiceResponse { | @@ -9668,25 +9251,25 @@ export interface PostServiceInvoiceApplyInvoiceResponse { | ||
9668 | 404: any; | 9251 | 404: any; |
9669 | } | 9252 | } |
9670 | 9253 | ||
9671 | -export type PostServiceInvoiceApplyInvoiceResponseSuccess = | ||
9672 | - PostServiceInvoiceApplyInvoiceResponse[200]; | 9254 | +export type PostResearchGroupsAddResponseSuccess = |
9255 | + PostResearchGroupsAddResponse[200]; | ||
9673 | /** | 9256 | /** |
9674 | * @description | 9257 | * @description |
9675 | - * 申请开票 | ||
9676 | - * @tags 发票 | 9258 | + * 新增课题组信息 |
9259 | + * @tags research-groups-controller | ||
9677 | * @produces * | 9260 | * @produces * |
9678 | * @consumes application/json | 9261 | * @consumes application/json |
9679 | */ | 9262 | */ |
9680 | -export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() => { | 9263 | +export const postResearchGroupsAdd = /* #__PURE__ */ (() => { |
9681 | const method = 'post'; | 9264 | const method = 'post'; |
9682 | - const url = '/service/invoice/applyInvoice'; | 9265 | + const url = '/research/groups/add'; |
9683 | function request( | 9266 | function request( |
9684 | - option: PostServiceInvoiceApplyInvoiceOption, | ||
9685 | - ): Promise<PostServiceInvoiceApplyInvoiceResponseSuccess> { | 9267 | + option: PostResearchGroupsAddOption, |
9268 | + ): Promise<PostResearchGroupsAddResponseSuccess> { | ||
9686 | return requester(request.url, { | 9269 | return requester(request.url, { |
9687 | method: request.method, | 9270 | method: request.method, |
9688 | ...option, | 9271 | ...option, |
9689 | - }) as unknown as Promise<PostServiceInvoiceApplyInvoiceResponseSuccess>; | 9272 | + }) as unknown as Promise<PostResearchGroupsAddResponseSuccess>; |
9690 | } | 9273 | } |
9691 | 9274 | ||
9692 | /** http method */ | 9275 | /** http method */ |
@@ -9696,22 +9279,22 @@ export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() => { | @@ -9696,22 +9279,22 @@ export const postServiceInvoiceApplyInvoice = /* #__PURE__ */ (() => { | ||
9696 | return request; | 9279 | return request; |
9697 | })(); | 9280 | })(); |
9698 | 9281 | ||
9699 | -/** @description request parameter type for postServiceInvoiceCancelApply */ | ||
9700 | -export interface PostServiceInvoiceCancelApplyOption { | 9282 | +/** @description request parameter type for postResearchGroupsDelete */ |
9283 | +export interface PostResearchGroupsDeleteOption { | ||
9701 | /** | 9284 | /** |
9702 | * @description | 9285 | * @description |
9703 | - * dto | 9286 | + * request |
9704 | */ | 9287 | */ |
9705 | body: { | 9288 | body: { |
9706 | /** | 9289 | /** |
9707 | @description | 9290 | @description |
9708 | - dto */ | ||
9709 | - dto: Dto; | 9291 | + request */ |
9292 | + request: ResearchGroupDeleteRequest; | ||
9710 | }; | 9293 | }; |
9711 | } | 9294 | } |
9712 | 9295 | ||
9713 | -/** @description response type for postServiceInvoiceCancelApply */ | ||
9714 | -export interface PostServiceInvoiceCancelApplyResponse { | 9296 | +/** @description response type for postResearchGroupsDelete */ |
9297 | +export interface PostResearchGroupsDeleteResponse { | ||
9715 | /** | 9298 | /** |
9716 | * @description | 9299 | * @description |
9717 | * OK | 9300 | * OK |
@@ -9739,25 +9322,25 @@ export interface PostServiceInvoiceCancelApplyResponse { | @@ -9739,25 +9322,25 @@ export interface PostServiceInvoiceCancelApplyResponse { | ||
9739 | 404: any; | 9322 | 404: any; |
9740 | } | 9323 | } |
9741 | 9324 | ||
9742 | -export type PostServiceInvoiceCancelApplyResponseSuccess = | ||
9743 | - PostServiceInvoiceCancelApplyResponse[200]; | 9325 | +export type PostResearchGroupsDeleteResponseSuccess = |
9326 | + PostResearchGroupsDeleteResponse[200]; | ||
9744 | /** | 9327 | /** |
9745 | * @description | 9328 | * @description |
9746 | - * 取消申请 | ||
9747 | - * @tags 发票 | 9329 | + * 删除课题组信息 |
9330 | + * @tags research-groups-controller | ||
9748 | * @produces * | 9331 | * @produces * |
9749 | * @consumes application/json | 9332 | * @consumes application/json |
9750 | */ | 9333 | */ |
9751 | -export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() => { | 9334 | +export const postResearchGroupsDelete = /* #__PURE__ */ (() => { |
9752 | const method = 'post'; | 9335 | const method = 'post'; |
9753 | - const url = '/service/invoice/cancelApply'; | 9336 | + const url = '/research/groups/delete'; |
9754 | function request( | 9337 | function request( |
9755 | - option: PostServiceInvoiceCancelApplyOption, | ||
9756 | - ): Promise<PostServiceInvoiceCancelApplyResponseSuccess> { | 9338 | + option: PostResearchGroupsDeleteOption, |
9339 | + ): Promise<PostResearchGroupsDeleteResponseSuccess> { | ||
9757 | return requester(request.url, { | 9340 | return requester(request.url, { |
9758 | method: request.method, | 9341 | method: request.method, |
9759 | ...option, | 9342 | ...option, |
9760 | - }) as unknown as Promise<PostServiceInvoiceCancelApplyResponseSuccess>; | 9343 | + }) as unknown as Promise<PostResearchGroupsDeleteResponseSuccess>; |
9761 | } | 9344 | } |
9762 | 9345 | ||
9763 | /** http method */ | 9346 | /** http method */ |
@@ -9767,22 +9350,22 @@ export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() => { | @@ -9767,22 +9350,22 @@ export const postServiceInvoiceCancelApply = /* #__PURE__ */ (() => { | ||
9767 | return request; | 9350 | return request; |
9768 | })(); | 9351 | })(); |
9769 | 9352 | ||
9770 | -/** @description request parameter type for postServiceInvoiceCancelInvoiceAndBankStatement */ | ||
9771 | -export interface PostServiceInvoiceCancelInvoiceAndBankStatementOption { | 9353 | +/** @description request parameter type for postResearchGroupsDetail */ |
9354 | +export interface PostResearchGroupsDetailOption { | ||
9772 | /** | 9355 | /** |
9773 | * @description | 9356 | * @description |
9774 | - * dto | 9357 | + * request |
9775 | */ | 9358 | */ |
9776 | body: { | 9359 | body: { |
9777 | /** | 9360 | /** |
9778 | @description | 9361 | @description |
9779 | - dto */ | ||
9780 | - dto: CancelInvoiceAndBankStatementDto; | 9362 | + request */ |
9363 | + request: ResearchGroupDetailRequest; | ||
9781 | }; | 9364 | }; |
9782 | } | 9365 | } |
9783 | 9366 | ||
9784 | -/** @description response type for postServiceInvoiceCancelInvoiceAndBankStatement */ | ||
9785 | -export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse { | 9367 | +/** @description response type for postResearchGroupsDetail */ |
9368 | +export interface PostResearchGroupsDetailResponse { | ||
9786 | /** | 9369 | /** |
9787 | * @description | 9370 | * @description |
9788 | * OK | 9371 | * OK |
@@ -9810,56 +9393,41 @@ export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse { | @@ -9810,56 +9393,41 @@ export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse { | ||
9810 | 404: any; | 9393 | 404: any; |
9811 | } | 9394 | } |
9812 | 9395 | ||
9813 | -export type PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess = | ||
9814 | - PostServiceInvoiceCancelInvoiceAndBankStatementResponse[200]; | 9396 | +export type PostResearchGroupsDetailResponseSuccess = |
9397 | + PostResearchGroupsDetailResponse[200]; | ||
9815 | /** | 9398 | /** |
9816 | * @description | 9399 | * @description |
9817 | - * 取消发票与银行流水的关联 | ||
9818 | - * @tags 发票 | 9400 | + * 查询课题组信息 |
9401 | + * @tags research-groups-controller | ||
9819 | * @produces * | 9402 | * @produces * |
9820 | * @consumes application/json | 9403 | * @consumes application/json |
9821 | */ | 9404 | */ |
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 | - })(); | 9405 | +export const postResearchGroupsDetail = /* #__PURE__ */ (() => { |
9406 | + const method = 'post'; | ||
9407 | + const url = '/research/groups/detail'; | ||
9408 | + function request( | ||
9409 | + option: PostResearchGroupsDetailOption, | ||
9410 | + ): Promise<PostResearchGroupsDetailResponseSuccess> { | ||
9411 | + return requester(request.url, { | ||
9412 | + method: request.method, | ||
9413 | + ...option, | ||
9414 | + }) as unknown as Promise<PostResearchGroupsDetailResponseSuccess>; | ||
9415 | + } | ||
9841 | 9416 | ||
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 | -} | 9417 | + /** http method */ |
9418 | + request.method = method; | ||
9419 | + /** request url */ | ||
9420 | + request.url = url; | ||
9421 | + return request; | ||
9422 | +})(); | ||
9855 | 9423 | ||
9856 | -/** @description response type for postServiceInvoiceDealInvoicingResult */ | ||
9857 | -export interface PostServiceInvoiceDealInvoicingResultResponse { | 9424 | +/** @description response type for postResearchGroupsDownloadImportTemplate */ |
9425 | +export interface PostResearchGroupsDownloadImportTemplateResponse { | ||
9858 | /** | 9426 | /** |
9859 | * @description | 9427 | * @description |
9860 | * OK | 9428 | * OK |
9861 | */ | 9429 | */ |
9862 | - 200: ServerResult; | 9430 | + 200: any; |
9863 | /** | 9431 | /** |
9864 | * @description | 9432 | * @description |
9865 | * Created | 9433 | * Created |
@@ -9882,25 +9450,22 @@ export interface PostServiceInvoiceDealInvoicingResultResponse { | @@ -9882,25 +9450,22 @@ export interface PostServiceInvoiceDealInvoicingResultResponse { | ||
9882 | 404: any; | 9450 | 404: any; |
9883 | } | 9451 | } |
9884 | 9452 | ||
9885 | -export type PostServiceInvoiceDealInvoicingResultResponseSuccess = | ||
9886 | - PostServiceInvoiceDealInvoicingResultResponse[200]; | 9453 | +export type PostResearchGroupsDownloadImportTemplateResponseSuccess = |
9454 | + PostResearchGroupsDownloadImportTemplateResponse[200]; | ||
9887 | /** | 9455 | /** |
9888 | * @description | 9456 | * @description |
9889 | - * 拉取开票结果 | ||
9890 | - * @tags 发票 | 9457 | + * 课题组导入模板下载 |
9458 | + * @tags research-groups-controller | ||
9891 | * @produces * | 9459 | * @produces * |
9892 | * @consumes application/json | 9460 | * @consumes application/json |
9893 | */ | 9461 | */ |
9894 | -export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() => { | 9462 | +export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => { |
9895 | const method = 'post'; | 9463 | const method = 'post'; |
9896 | - const url = '/service/invoice/dealInvoicingResult'; | ||
9897 | - function request( | ||
9898 | - option: PostServiceInvoiceDealInvoicingResultOption, | ||
9899 | - ): Promise<PostServiceInvoiceDealInvoicingResultResponseSuccess> { | 9464 | + const url = '/research/groups/download/importTemplate'; |
9465 | + function request(): Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess> { | ||
9900 | return requester(request.url, { | 9466 | return requester(request.url, { |
9901 | method: request.method, | 9467 | method: request.method, |
9902 | - ...option, | ||
9903 | - }) as unknown as Promise<PostServiceInvoiceDealInvoicingResultResponseSuccess>; | 9468 | + }) as unknown as Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess>; |
9904 | } | 9469 | } |
9905 | 9470 | ||
9906 | /** http method */ | 9471 | /** http method */ |
@@ -9910,22 +9475,22 @@ export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() => { | @@ -9910,22 +9475,22 @@ export const postServiceInvoiceDealInvoicingResult = /* #__PURE__ */ (() => { | ||
9910 | return request; | 9475 | return request; |
9911 | })(); | 9476 | })(); |
9912 | 9477 | ||
9913 | -/** @description request parameter type for postServiceInvoiceDeleteInvoice */ | ||
9914 | -export interface PostServiceInvoiceDeleteInvoiceOption { | 9478 | +/** @description request parameter type for postResearchGroupsEdit */ |
9479 | +export interface PostResearchGroupsEditOption { | ||
9915 | /** | 9480 | /** |
9916 | * @description | 9481 | * @description |
9917 | - * dto | 9482 | + * request |
9918 | */ | 9483 | */ |
9919 | body: { | 9484 | body: { |
9920 | /** | 9485 | /** |
9921 | @description | 9486 | @description |
9922 | - dto */ | ||
9923 | - dto: Dto; | 9487 | + request */ |
9488 | + request: ResearchGroupEditRequest; | ||
9924 | }; | 9489 | }; |
9925 | } | 9490 | } |
9926 | 9491 | ||
9927 | -/** @description response type for postServiceInvoiceDeleteInvoice */ | ||
9928 | -export interface PostServiceInvoiceDeleteInvoiceResponse { | 9492 | +/** @description response type for postResearchGroupsEdit */ |
9493 | +export interface PostResearchGroupsEditResponse { | ||
9929 | /** | 9494 | /** |
9930 | * @description | 9495 | * @description |
9931 | * OK | 9496 | * OK |
@@ -9953,25 +9518,25 @@ export interface PostServiceInvoiceDeleteInvoiceResponse { | @@ -9953,25 +9518,25 @@ export interface PostServiceInvoiceDeleteInvoiceResponse { | ||
9953 | 404: any; | 9518 | 404: any; |
9954 | } | 9519 | } |
9955 | 9520 | ||
9956 | -export type PostServiceInvoiceDeleteInvoiceResponseSuccess = | ||
9957 | - PostServiceInvoiceDeleteInvoiceResponse[200]; | 9521 | +export type PostResearchGroupsEditResponseSuccess = |
9522 | + PostResearchGroupsEditResponse[200]; | ||
9958 | /** | 9523 | /** |
9959 | * @description | 9524 | * @description |
9960 | - * 删除发票 | ||
9961 | - * @tags 发票 | 9525 | + * 编辑课题组信息 |
9526 | + * @tags research-groups-controller | ||
9962 | * @produces * | 9527 | * @produces * |
9963 | * @consumes application/json | 9528 | * @consumes application/json |
9964 | */ | 9529 | */ |
9965 | -export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => { | 9530 | +export const postResearchGroupsEdit = /* #__PURE__ */ (() => { |
9966 | const method = 'post'; | 9531 | const method = 'post'; |
9967 | - const url = '/service/invoice/deleteInvoice'; | 9532 | + const url = '/research/groups/edit'; |
9968 | function request( | 9533 | function request( |
9969 | - option: PostServiceInvoiceDeleteInvoiceOption, | ||
9970 | - ): Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess> { | 9534 | + option: PostResearchGroupsEditOption, |
9535 | + ): Promise<PostResearchGroupsEditResponseSuccess> { | ||
9971 | return requester(request.url, { | 9536 | return requester(request.url, { |
9972 | method: request.method, | 9537 | method: request.method, |
9973 | ...option, | 9538 | ...option, |
9974 | - }) as unknown as Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess>; | 9539 | + }) as unknown as Promise<PostResearchGroupsEditResponseSuccess>; |
9975 | } | 9540 | } |
9976 | 9541 | ||
9977 | /** http method */ | 9542 | /** http method */ |
@@ -9981,24 +9546,22 @@ export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => { | @@ -9981,24 +9546,22 @@ export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => { | ||
9981 | return request; | 9546 | return request; |
9982 | })(); | 9547 | })(); |
9983 | 9548 | ||
9984 | -/** @description request parameter type for postServiceInvoiceDownloadInvoice */ | ||
9985 | -export interface PostServiceInvoiceDownloadInvoiceOption { | 9549 | +/** @description request parameter type for postResearchGroupsImport */ |
9550 | +export interface PostResearchGroupsImportOption { | ||
9986 | /** | 9551 | /** |
9987 | * @description | 9552 | * @description |
9988 | - * recodId | ||
9989 | - * @format int64 | 9553 | + * file |
9990 | */ | 9554 | */ |
9991 | - query?: { | 9555 | + formData: { |
9992 | /** | 9556 | /** |
9993 | @description | 9557 | @description |
9994 | - recodId | ||
9995 | - @format int64 */ | ||
9996 | - recodId?: number; | 9558 | + file */ |
9559 | + file: File; | ||
9997 | }; | 9560 | }; |
9998 | } | 9561 | } |
9999 | 9562 | ||
10000 | -/** @description response type for postServiceInvoiceDownloadInvoice */ | ||
10001 | -export interface PostServiceInvoiceDownloadInvoiceResponse { | 9563 | +/** @description response type for postResearchGroupsImport */ |
9564 | +export interface PostResearchGroupsImportResponse { | ||
10002 | /** | 9565 | /** |
10003 | * @description | 9566 | * @description |
10004 | * OK | 9567 | * OK |
@@ -10026,25 +9589,25 @@ export interface PostServiceInvoiceDownloadInvoiceResponse { | @@ -10026,25 +9589,25 @@ export interface PostServiceInvoiceDownloadInvoiceResponse { | ||
10026 | 404: any; | 9589 | 404: any; |
10027 | } | 9590 | } |
10028 | 9591 | ||
10029 | -export type PostServiceInvoiceDownloadInvoiceResponseSuccess = | ||
10030 | - PostServiceInvoiceDownloadInvoiceResponse[200]; | 9592 | +export type PostResearchGroupsImportResponseSuccess = |
9593 | + PostResearchGroupsImportResponse[200]; | ||
10031 | /** | 9594 | /** |
10032 | * @description | 9595 | * @description |
10033 | - * 下载开票 | ||
10034 | - * @tags 发票 | 9596 | + * 课题组信息导入 |
9597 | + * @tags research-groups-controller | ||
10035 | * @produces * | 9598 | * @produces * |
10036 | - * @consumes application/json | 9599 | + * @consumes multipart/form-data |
10037 | */ | 9600 | */ |
10038 | -export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() => { | 9601 | +export const postResearchGroupsImport = /* #__PURE__ */ (() => { |
10039 | const method = 'post'; | 9602 | const method = 'post'; |
10040 | - const url = '/service/invoice/downloadInvoice'; | 9603 | + const url = '/research/groups/import'; |
10041 | function request( | 9604 | function request( |
10042 | - option?: PostServiceInvoiceDownloadInvoiceOption, | ||
10043 | - ): Promise<PostServiceInvoiceDownloadInvoiceResponseSuccess> { | 9605 | + option: PostResearchGroupsImportOption, |
9606 | + ): Promise<PostResearchGroupsImportResponseSuccess> { | ||
10044 | return requester(request.url, { | 9607 | return requester(request.url, { |
10045 | method: request.method, | 9608 | method: request.method, |
10046 | ...option, | 9609 | ...option, |
10047 | - }) as unknown as Promise<PostServiceInvoiceDownloadInvoiceResponseSuccess>; | 9610 | + }) as unknown as Promise<PostResearchGroupsImportResponseSuccess>; |
10048 | } | 9611 | } |
10049 | 9612 | ||
10050 | /** http method */ | 9613 | /** http method */ |
@@ -10054,13 +9617,32 @@ export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() => { | @@ -10054,13 +9617,32 @@ export const postServiceInvoiceDownloadInvoice = /* #__PURE__ */ (() => { | ||
10054 | return request; | 9617 | return request; |
10055 | })(); | 9618 | })(); |
10056 | 9619 | ||
10057 | -/** @description response type for getServiceInvoiceExportInvoiceDetailsTemplate */ | ||
10058 | -export interface GetServiceInvoiceExportInvoiceDetailsTemplateResponse { | 9620 | +/** @description request parameter type for postResearchGroupsList */ |
9621 | +export interface PostResearchGroupsListOption { | ||
9622 | + /** | ||
9623 | + * @description | ||
9624 | + * request | ||
9625 | + */ | ||
9626 | + body: { | ||
9627 | + /** | ||
9628 | + @description | ||
9629 | + request */ | ||
9630 | + request: ResearchGroupListRequest; | ||
9631 | + }; | ||
9632 | +} | ||
9633 | + | ||
9634 | +/** @description response type for postResearchGroupsList */ | ||
9635 | +export interface PostResearchGroupsListResponse { | ||
10059 | /** | 9636 | /** |
10060 | * @description | 9637 | * @description |
10061 | * OK | 9638 | * OK |
10062 | */ | 9639 | */ |
10063 | - 200: any; | 9640 | + 200: ServerResult; |
9641 | + /** | ||
9642 | + * @description | ||
9643 | + * Created | ||
9644 | + */ | ||
9645 | + 201: any; | ||
10064 | /** | 9646 | /** |
10065 | * @description | 9647 | * @description |
10066 | * Unauthorized | 9648 | * Unauthorized |
@@ -10078,33 +9660,36 @@ export interface GetServiceInvoiceExportInvoiceDetailsTemplateResponse { | @@ -10078,33 +9660,36 @@ export interface GetServiceInvoiceExportInvoiceDetailsTemplateResponse { | ||
10078 | 404: any; | 9660 | 404: any; |
10079 | } | 9661 | } |
10080 | 9662 | ||
10081 | -export type GetServiceInvoiceExportInvoiceDetailsTemplateResponseSuccess = | ||
10082 | - GetServiceInvoiceExportInvoiceDetailsTemplateResponse[200]; | 9663 | +export type PostResearchGroupsListResponseSuccess = |
9664 | + PostResearchGroupsListResponse[200]; | ||
10083 | /** | 9665 | /** |
10084 | * @description | 9666 | * @description |
10085 | - * 导出发票明细模板 | ||
10086 | - * @tags 发票 | 9667 | + * 课题组列表 |
9668 | + * @tags research-groups-controller | ||
10087 | * @produces * | 9669 | * @produces * |
9670 | + * @consumes application/json | ||
10088 | */ | 9671 | */ |
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 | - } | 9672 | +export const postResearchGroupsList = /* #__PURE__ */ (() => { |
9673 | + const method = 'post'; | ||
9674 | + const url = '/research/groups/list'; | ||
9675 | + function request( | ||
9676 | + option: PostResearchGroupsListOption, | ||
9677 | + ): Promise<PostResearchGroupsListResponseSuccess> { | ||
9678 | + return requester(request.url, { | ||
9679 | + method: request.method, | ||
9680 | + ...option, | ||
9681 | + }) as unknown as Promise<PostResearchGroupsListResponseSuccess>; | ||
9682 | + } | ||
10098 | 9683 | ||
10099 | - /** http method */ | ||
10100 | - request.method = method; | ||
10101 | - /** request url */ | ||
10102 | - request.url = url; | ||
10103 | - return request; | ||
10104 | - })(); | 9684 | + /** http method */ |
9685 | + request.method = method; | ||
9686 | + /** request url */ | ||
9687 | + request.url = url; | ||
9688 | + return request; | ||
9689 | +})(); | ||
10105 | 9690 | ||
10106 | -/** @description request parameter type for postServiceInvoiceExportInvoiceRecords */ | ||
10107 | -export interface PostServiceInvoiceExportInvoiceRecordsOption { | 9691 | +/** @description request parameter type for postServiceBankStatementDeleteBankStatement */ |
9692 | +export interface PostServiceBankStatementDeleteBankStatementOption { | ||
10108 | /** | 9693 | /** |
10109 | * @description | 9694 | * @description |
10110 | * dto | 9695 | * dto |
@@ -10113,17 +9698,17 @@ export interface PostServiceInvoiceExportInvoiceRecordsOption { | @@ -10113,17 +9698,17 @@ export interface PostServiceInvoiceExportInvoiceRecordsOption { | ||
10113 | /** | 9698 | /** |
10114 | @description | 9699 | @description |
10115 | dto */ | 9700 | dto */ |
10116 | - dto: QueryInvoiceRecordDto; | 9701 | + dto: Dto; |
10117 | }; | 9702 | }; |
10118 | } | 9703 | } |
10119 | 9704 | ||
10120 | -/** @description response type for postServiceInvoiceExportInvoiceRecords */ | ||
10121 | -export interface PostServiceInvoiceExportInvoiceRecordsResponse { | 9705 | +/** @description response type for postServiceBankStatementDeleteBankStatement */ |
9706 | +export interface PostServiceBankStatementDeleteBankStatementResponse { | ||
10122 | /** | 9707 | /** |
10123 | * @description | 9708 | * @description |
10124 | * OK | 9709 | * OK |
10125 | */ | 9710 | */ |
10126 | - 200: any; | 9711 | + 200: ServerResult; |
10127 | /** | 9712 | /** |
10128 | * @description | 9713 | * @description |
10129 | * Created | 9714 | * Created |
@@ -10146,36 +9731,37 @@ export interface PostServiceInvoiceExportInvoiceRecordsResponse { | @@ -10146,36 +9731,37 @@ export interface PostServiceInvoiceExportInvoiceRecordsResponse { | ||
10146 | 404: any; | 9731 | 404: any; |
10147 | } | 9732 | } |
10148 | 9733 | ||
10149 | -export type PostServiceInvoiceExportInvoiceRecordsResponseSuccess = | ||
10150 | - PostServiceInvoiceExportInvoiceRecordsResponse[200]; | 9734 | +export type PostServiceBankStatementDeleteBankStatementResponseSuccess = |
9735 | + PostServiceBankStatementDeleteBankStatementResponse[200]; | ||
10151 | /** | 9736 | /** |
10152 | * @description | 9737 | * @description |
10153 | - * exportInvoiceRecords | ||
10154 | - * @tags 发票 | 9738 | + * 删除银行流水 |
9739 | + * @tags 银行流水 | ||
10155 | * @produces * | 9740 | * @produces * |
10156 | * @consumes application/json | 9741 | * @consumes application/json |
10157 | */ | 9742 | */ |
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 | - } | 9743 | +export const postServiceBankStatementDeleteBankStatement = |
9744 | + /* #__PURE__ */ (() => { | ||
9745 | + const method = 'post'; | ||
9746 | + const url = '/service/bankStatement/deleteBankStatement'; | ||
9747 | + function request( | ||
9748 | + option: PostServiceBankStatementDeleteBankStatementOption, | ||
9749 | + ): Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess> { | ||
9750 | + return requester(request.url, { | ||
9751 | + method: request.method, | ||
9752 | + ...option, | ||
9753 | + }) as unknown as Promise<PostServiceBankStatementDeleteBankStatementResponseSuccess>; | ||
9754 | + } | ||
10169 | 9755 | ||
10170 | - /** http method */ | ||
10171 | - request.method = method; | ||
10172 | - /** request url */ | ||
10173 | - request.url = url; | ||
10174 | - return request; | ||
10175 | -})(); | 9756 | + /** http method */ |
9757 | + request.method = method; | ||
9758 | + /** request url */ | ||
9759 | + request.url = url; | ||
9760 | + return request; | ||
9761 | + })(); | ||
10176 | 9762 | ||
10177 | -/** @description request parameter type for postServiceInvoiceFindInvoice */ | ||
10178 | -export interface PostServiceInvoiceFindInvoiceOption { | 9763 | +/** @description request parameter type for postServiceBankStatementEditBankStatement */ |
9764 | +export interface PostServiceBankStatementEditBankStatementOption { | ||
10179 | /** | 9765 | /** |
10180 | * @description | 9766 | * @description |
10181 | * dto | 9767 | * dto |
@@ -10188,8 +9774,8 @@ export interface PostServiceInvoiceFindInvoiceOption { | @@ -10188,8 +9774,8 @@ export interface PostServiceInvoiceFindInvoiceOption { | ||
10188 | }; | 9774 | }; |
10189 | } | 9775 | } |
10190 | 9776 | ||
10191 | -/** @description response type for postServiceInvoiceFindInvoice */ | ||
10192 | -export interface PostServiceInvoiceFindInvoiceResponse { | 9777 | +/** @description response type for postServiceBankStatementEditBankStatement */ |
9778 | +export interface PostServiceBankStatementEditBankStatementResponse { | ||
10193 | /** | 9779 | /** |
10194 | * @description | 9780 | * @description |
10195 | * OK | 9781 | * OK |
@@ -10217,57 +9803,42 @@ export interface PostServiceInvoiceFindInvoiceResponse { | @@ -10217,57 +9803,42 @@ export interface PostServiceInvoiceFindInvoiceResponse { | ||
10217 | 404: any; | 9803 | 404: any; |
10218 | } | 9804 | } |
10219 | 9805 | ||
10220 | -export type PostServiceInvoiceFindInvoiceResponseSuccess = | ||
10221 | - PostServiceInvoiceFindInvoiceResponse[200]; | 9806 | +export type PostServiceBankStatementEditBankStatementResponseSuccess = |
9807 | + PostServiceBankStatementEditBankStatementResponse[200]; | ||
10222 | /** | 9808 | /** |
10223 | * @description | 9809 | * @description |
10224 | - * 不分页查询发票 | ||
10225 | - * @tags 发票 | 9810 | + * 编辑银行流水 |
9811 | + * @tags 银行流水 | ||
10226 | * @produces * | 9812 | * @produces * |
10227 | * @consumes application/json | 9813 | * @consumes application/json |
10228 | */ | 9814 | */ |
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 | -})(); | 9815 | +export const postServiceBankStatementEditBankStatement = |
9816 | + /* #__PURE__ */ (() => { | ||
9817 | + const method = 'post'; | ||
9818 | + const url = '/service/bankStatement/editBankStatement'; | ||
9819 | + function request( | ||
9820 | + option: PostServiceBankStatementEditBankStatementOption, | ||
9821 | + ): Promise<PostServiceBankStatementEditBankStatementResponseSuccess> { | ||
9822 | + return requester(request.url, { | ||
9823 | + method: request.method, | ||
9824 | + ...option, | ||
9825 | + }) as unknown as Promise<PostServiceBankStatementEditBankStatementResponseSuccess>; | ||
9826 | + } | ||
10247 | 9827 | ||
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 | -} | 9828 | + /** http method */ |
9829 | + request.method = method; | ||
9830 | + /** request url */ | ||
9831 | + request.url = url; | ||
9832 | + return request; | ||
9833 | + })(); | ||
10263 | 9834 | ||
10264 | -/** @description response type for postServiceInvoiceGetInvoiceRecord */ | ||
10265 | -export interface PostServiceInvoiceGetInvoiceRecordResponse { | 9835 | +/** @description response type for postServiceBankStatementExportTemplate */ |
9836 | +export interface PostServiceBankStatementExportTemplateResponse { | ||
10266 | /** | 9837 | /** |
10267 | * @description | 9838 | * @description |
10268 | * OK | 9839 | * OK |
10269 | */ | 9840 | */ |
10270 | - 200: ServerResult; | 9841 | + 200: any; |
10271 | /** | 9842 | /** |
10272 | * @description | 9843 | * @description |
10273 | * Created | 9844 | * Created |
@@ -10290,25 +9861,22 @@ export interface PostServiceInvoiceGetInvoiceRecordResponse { | @@ -10290,25 +9861,22 @@ export interface PostServiceInvoiceGetInvoiceRecordResponse { | ||
10290 | 404: any; | 9861 | 404: any; |
10291 | } | 9862 | } |
10292 | 9863 | ||
10293 | -export type PostServiceInvoiceGetInvoiceRecordResponseSuccess = | ||
10294 | - PostServiceInvoiceGetInvoiceRecordResponse[200]; | 9864 | +export type PostServiceBankStatementExportTemplateResponseSuccess = |
9865 | + PostServiceBankStatementExportTemplateResponse[200]; | ||
10295 | /** | 9866 | /** |
10296 | * @description | 9867 | * @description |
10297 | - * 获取开票记录 | ||
10298 | - * @tags 发票 | 9868 | + * 下载银行流水模板 |
9869 | + * @tags 银行流水 | ||
10299 | * @produces * | 9870 | * @produces * |
10300 | * @consumes application/json | 9871 | * @consumes application/json |
10301 | */ | 9872 | */ |
10302 | -export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() => { | 9873 | +export const postServiceBankStatementExportTemplate = /* #__PURE__ */ (() => { |
10303 | const method = 'post'; | 9874 | const method = 'post'; |
10304 | - const url = '/service/invoice/getInvoiceRecord'; | ||
10305 | - function request( | ||
10306 | - option?: PostServiceInvoiceGetInvoiceRecordOption, | ||
10307 | - ): Promise<PostServiceInvoiceGetInvoiceRecordResponseSuccess> { | 9875 | + const url = '/service/bankStatement/exportTemplate'; |
9876 | + function request(): Promise<PostServiceBankStatementExportTemplateResponseSuccess> { | ||
10308 | return requester(request.url, { | 9877 | return requester(request.url, { |
10309 | method: request.method, | 9878 | method: request.method, |
10310 | - ...option, | ||
10311 | - }) as unknown as Promise<PostServiceInvoiceGetInvoiceRecordResponseSuccess>; | 9879 | + }) as unknown as Promise<PostServiceBankStatementExportTemplateResponseSuccess>; |
10312 | } | 9880 | } |
10313 | 9881 | ||
10314 | /** http method */ | 9882 | /** http method */ |
@@ -10318,38 +9886,22 @@ export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() => { | @@ -10318,38 +9886,22 @@ export const postServiceInvoiceGetInvoiceRecord = /* #__PURE__ */ (() => { | ||
10318 | return request; | 9886 | return request; |
10319 | })(); | 9887 | })(); |
10320 | 9888 | ||
10321 | -/** @description request parameter type for postServiceInvoiceImportInvoiceDetails */ | ||
10322 | -export interface PostServiceInvoiceImportInvoiceDetailsOption { | 9889 | +/** @description request parameter type for postServiceBankStatementImportBankStatementForm */ |
9890 | +export interface PostServiceBankStatementImportBankStatementFormOption { | ||
10323 | /** | 9891 | /** |
10324 | * @description | 9892 | * @description |
10325 | - * detailsExcel | 9893 | + * file |
10326 | */ | 9894 | */ |
10327 | formData: { | 9895 | formData: { |
10328 | /** | 9896 | /** |
10329 | @description | 9897 | @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; | 9898 | + file */ |
9899 | + file: File; | ||
10348 | }; | 9900 | }; |
10349 | } | 9901 | } |
10350 | 9902 | ||
10351 | -/** @description response type for postServiceInvoiceImportInvoiceDetails */ | ||
10352 | -export interface PostServiceInvoiceImportInvoiceDetailsResponse { | 9903 | +/** @description response type for postServiceBankStatementImportBankStatementForm */ |
9904 | +export interface PostServiceBankStatementImportBankStatementFormResponse { | ||
10353 | /** | 9905 | /** |
10354 | * @description | 9906 | * @description |
10355 | * OK | 9907 | * OK |
@@ -10377,36 +9929,37 @@ export interface PostServiceInvoiceImportInvoiceDetailsResponse { | @@ -10377,36 +9929,37 @@ export interface PostServiceInvoiceImportInvoiceDetailsResponse { | ||
10377 | 404: any; | 9929 | 404: any; |
10378 | } | 9930 | } |
10379 | 9931 | ||
10380 | -export type PostServiceInvoiceImportInvoiceDetailsResponseSuccess = | ||
10381 | - PostServiceInvoiceImportInvoiceDetailsResponse[200]; | 9932 | +export type PostServiceBankStatementImportBankStatementFormResponseSuccess = |
9933 | + PostServiceBankStatementImportBankStatementFormResponse[200]; | ||
10382 | /** | 9934 | /** |
10383 | * @description | 9935 | * @description |
10384 | - * 导入发票明细 | ||
10385 | - * @tags 发票 | 9936 | + * 导入银行流水表格 |
9937 | + * @tags 银行流水 | ||
10386 | * @produces * | 9938 | * @produces * |
10387 | * @consumes multipart/form-data | 9939 | * @consumes multipart/form-data |
10388 | */ | 9940 | */ |
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 | - } | 9941 | +export const postServiceBankStatementImportBankStatementForm = |
9942 | + /* #__PURE__ */ (() => { | ||
9943 | + const method = 'post'; | ||
9944 | + const url = '/service/bankStatement/importBankStatementForm'; | ||
9945 | + function request( | ||
9946 | + option: PostServiceBankStatementImportBankStatementFormOption, | ||
9947 | + ): Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess> { | ||
9948 | + return requester(request.url, { | ||
9949 | + method: request.method, | ||
9950 | + ...option, | ||
9951 | + }) as unknown as Promise<PostServiceBankStatementImportBankStatementFormResponseSuccess>; | ||
9952 | + } | ||
10400 | 9953 | ||
10401 | - /** http method */ | ||
10402 | - request.method = method; | ||
10403 | - /** request url */ | ||
10404 | - request.url = url; | ||
10405 | - return request; | ||
10406 | -})(); | 9954 | + /** http method */ |
9955 | + request.method = method; | ||
9956 | + /** request url */ | ||
9957 | + request.url = url; | ||
9958 | + return request; | ||
9959 | + })(); | ||
10407 | 9960 | ||
10408 | -/** @description request parameter type for postServiceInvoiceInvoiceWriteOff */ | ||
10409 | -export interface PostServiceInvoiceInvoiceWriteOffOption { | 9961 | +/** @description request parameter type for postServiceBankStatementQueryBankStatement */ |
9962 | +export interface PostServiceBankStatementQueryBankStatementOption { | ||
10410 | /** | 9963 | /** |
10411 | * @description | 9964 | * @description |
10412 | * dto | 9965 | * dto |
@@ -10415,12 +9968,12 @@ export interface PostServiceInvoiceInvoiceWriteOffOption { | @@ -10415,12 +9968,12 @@ export interface PostServiceInvoiceInvoiceWriteOffOption { | ||
10415 | /** | 9968 | /** |
10416 | @description | 9969 | @description |
10417 | dto */ | 9970 | dto */ |
10418 | - dto: Dto; | 9971 | + dto: QueryBankStatementDto; |
10419 | }; | 9972 | }; |
10420 | } | 9973 | } |
10421 | 9974 | ||
10422 | -/** @description response type for postServiceInvoiceInvoiceWriteOff */ | ||
10423 | -export interface PostServiceInvoiceInvoiceWriteOffResponse { | 9975 | +/** @description response type for postServiceBankStatementQueryBankStatement */ |
9976 | +export interface PostServiceBankStatementQueryBankStatementResponse { | ||
10424 | /** | 9977 | /** |
10425 | * @description | 9978 | * @description |
10426 | * OK | 9979 | * OK |
@@ -10448,36 +10001,37 @@ export interface PostServiceInvoiceInvoiceWriteOffResponse { | @@ -10448,36 +10001,37 @@ export interface PostServiceInvoiceInvoiceWriteOffResponse { | ||
10448 | 404: any; | 10001 | 404: any; |
10449 | } | 10002 | } |
10450 | 10003 | ||
10451 | -export type PostServiceInvoiceInvoiceWriteOffResponseSuccess = | ||
10452 | - PostServiceInvoiceInvoiceWriteOffResponse[200]; | 10004 | +export type PostServiceBankStatementQueryBankStatementResponseSuccess = |
10005 | + PostServiceBankStatementQueryBankStatementResponse[200]; | ||
10453 | /** | 10006 | /** |
10454 | * @description | 10007 | * @description |
10455 | - * 发票核销 | ||
10456 | - * @tags 发票 | 10008 | + * 查询银行流水 |
10009 | + * @tags 银行流水 | ||
10457 | * @produces * | 10010 | * @produces * |
10458 | * @consumes application/json | 10011 | * @consumes application/json |
10459 | */ | 10012 | */ |
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 | - } | 10013 | +export const postServiceBankStatementQueryBankStatement = |
10014 | + /* #__PURE__ */ (() => { | ||
10015 | + const method = 'post'; | ||
10016 | + const url = '/service/bankStatement/queryBankStatement'; | ||
10017 | + function request( | ||
10018 | + option: PostServiceBankStatementQueryBankStatementOption, | ||
10019 | + ): Promise<PostServiceBankStatementQueryBankStatementResponseSuccess> { | ||
10020 | + return requester(request.url, { | ||
10021 | + method: request.method, | ||
10022 | + ...option, | ||
10023 | + }) as unknown as Promise<PostServiceBankStatementQueryBankStatementResponseSuccess>; | ||
10024 | + } | ||
10471 | 10025 | ||
10472 | - /** http method */ | ||
10473 | - request.method = method; | ||
10474 | - /** request url */ | ||
10475 | - request.url = url; | ||
10476 | - return request; | ||
10477 | -})(); | 10026 | + /** http method */ |
10027 | + request.method = method; | ||
10028 | + /** request url */ | ||
10029 | + request.url = url; | ||
10030 | + return request; | ||
10031 | + })(); | ||
10478 | 10032 | ||
10479 | -/** @description request parameter type for postServiceInvoiceInvoicing */ | ||
10480 | -export interface PostServiceInvoiceInvoicingOption { | 10033 | +/** @description request parameter type for postServiceInvoiceAddInvoice */ |
10034 | +export interface PostServiceInvoiceAddInvoiceOption { | ||
10481 | /** | 10035 | /** |
10482 | * @description | 10036 | * @description |
10483 | * dto | 10037 | * dto |
@@ -10486,12 +10040,12 @@ export interface PostServiceInvoiceInvoicingOption { | @@ -10486,12 +10040,12 @@ export interface PostServiceInvoiceInvoicingOption { | ||
10486 | /** | 10040 | /** |
10487 | @description | 10041 | @description |
10488 | dto */ | 10042 | dto */ |
10489 | - dto: Dto; | 10043 | + dto: InvoiceDto; |
10490 | }; | 10044 | }; |
10491 | } | 10045 | } |
10492 | 10046 | ||
10493 | -/** @description response type for postServiceInvoiceInvoicing */ | ||
10494 | -export interface PostServiceInvoiceInvoicingResponse { | 10047 | +/** @description response type for postServiceInvoiceAddInvoice */ |
10048 | +export interface PostServiceInvoiceAddInvoiceResponse { | ||
10495 | /** | 10049 | /** |
10496 | * @description | 10050 | * @description |
10497 | * OK | 10051 | * OK |
@@ -10519,25 +10073,25 @@ export interface PostServiceInvoiceInvoicingResponse { | @@ -10519,25 +10073,25 @@ export interface PostServiceInvoiceInvoicingResponse { | ||
10519 | 404: any; | 10073 | 404: any; |
10520 | } | 10074 | } |
10521 | 10075 | ||
10522 | -export type PostServiceInvoiceInvoicingResponseSuccess = | ||
10523 | - PostServiceInvoiceInvoicingResponse[200]; | 10076 | +export type PostServiceInvoiceAddInvoiceResponseSuccess = |
10077 | + PostServiceInvoiceAddInvoiceResponse[200]; | ||
10524 | /** | 10078 | /** |
10525 | * @description | 10079 | * @description |
10526 | - * 开票 | 10080 | + * 添加发票 |
10527 | * @tags 发票 | 10081 | * @tags 发票 |
10528 | * @produces * | 10082 | * @produces * |
10529 | * @consumes application/json | 10083 | * @consumes application/json |
10530 | */ | 10084 | */ |
10531 | -export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() => { | 10085 | +export const postServiceInvoiceAddInvoice = /* #__PURE__ */ (() => { |
10532 | const method = 'post'; | 10086 | const method = 'post'; |
10533 | - const url = '/service/invoice/invoicing'; | 10087 | + const url = '/service/invoice/addInvoice'; |
10534 | function request( | 10088 | function request( |
10535 | - option: PostServiceInvoiceInvoicingOption, | ||
10536 | - ): Promise<PostServiceInvoiceInvoicingResponseSuccess> { | 10089 | + option: PostServiceInvoiceAddInvoiceOption, |
10090 | + ): Promise<PostServiceInvoiceAddInvoiceResponseSuccess> { | ||
10537 | return requester(request.url, { | 10091 | return requester(request.url, { |
10538 | method: request.method, | 10092 | method: request.method, |
10539 | ...option, | 10093 | ...option, |
10540 | - }) as unknown as Promise<PostServiceInvoiceInvoicingResponseSuccess>; | 10094 | + }) as unknown as Promise<PostServiceInvoiceAddInvoiceResponseSuccess>; |
10541 | } | 10095 | } |
10542 | 10096 | ||
10543 | /** http method */ | 10097 | /** http method */ |
@@ -10547,8 +10101,8 @@ export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() => { | @@ -10547,8 +10101,8 @@ export const postServiceInvoiceInvoicing = /* #__PURE__ */ (() => { | ||
10547 | return request; | 10101 | return request; |
10548 | })(); | 10102 | })(); |
10549 | 10103 | ||
10550 | -/** @description request parameter type for postServiceInvoiceModifyRecord */ | ||
10551 | -export interface PostServiceInvoiceModifyRecordOption { | 10104 | +/** @description request parameter type for postServiceInvoiceCancelInvoiceAndBankStatement */ |
10105 | +export interface PostServiceInvoiceCancelInvoiceAndBankStatementOption { | ||
10552 | /** | 10106 | /** |
10553 | * @description | 10107 | * @description |
10554 | * dto | 10108 | * dto |
@@ -10557,12 +10111,12 @@ export interface PostServiceInvoiceModifyRecordOption { | @@ -10557,12 +10111,12 @@ export interface PostServiceInvoiceModifyRecordOption { | ||
10557 | /** | 10111 | /** |
10558 | @description | 10112 | @description |
10559 | dto */ | 10113 | dto */ |
10560 | - dto: InvoiceRecordDto; | 10114 | + dto: CancelInvoiceAndBankStatementDto; |
10561 | }; | 10115 | }; |
10562 | } | 10116 | } |
10563 | 10117 | ||
10564 | -/** @description response type for postServiceInvoiceModifyRecord */ | ||
10565 | -export interface PostServiceInvoiceModifyRecordResponse { | 10118 | +/** @description response type for postServiceInvoiceCancelInvoiceAndBankStatement */ |
10119 | +export interface PostServiceInvoiceCancelInvoiceAndBankStatementResponse { | ||
10566 | /** | 10120 | /** |
10567 | * @description | 10121 | * @description |
10568 | * OK | 10122 | * OK |
@@ -10590,36 +10144,37 @@ export interface PostServiceInvoiceModifyRecordResponse { | @@ -10590,36 +10144,37 @@ export interface PostServiceInvoiceModifyRecordResponse { | ||
10590 | 404: any; | 10144 | 404: any; |
10591 | } | 10145 | } |
10592 | 10146 | ||
10593 | -export type PostServiceInvoiceModifyRecordResponseSuccess = | ||
10594 | - PostServiceInvoiceModifyRecordResponse[200]; | 10147 | +export type PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess = |
10148 | + PostServiceInvoiceCancelInvoiceAndBankStatementResponse[200]; | ||
10595 | /** | 10149 | /** |
10596 | * @description | 10150 | * @description |
10597 | - * 修改开票记录 | 10151 | + * 取消发票与银行流水的关联 |
10598 | * @tags 发票 | 10152 | * @tags 发票 |
10599 | * @produces * | 10153 | * @produces * |
10600 | * @consumes application/json | 10154 | * @consumes application/json |
10601 | */ | 10155 | */ |
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 | - } | 10156 | +export const postServiceInvoiceCancelInvoiceAndBankStatement = |
10157 | + /* #__PURE__ */ (() => { | ||
10158 | + const method = 'post'; | ||
10159 | + const url = '/service/invoice/cancelInvoiceAndBankStatement'; | ||
10160 | + function request( | ||
10161 | + option: PostServiceInvoiceCancelInvoiceAndBankStatementOption, | ||
10162 | + ): Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess> { | ||
10163 | + return requester(request.url, { | ||
10164 | + method: request.method, | ||
10165 | + ...option, | ||
10166 | + }) as unknown as Promise<PostServiceInvoiceCancelInvoiceAndBankStatementResponseSuccess>; | ||
10167 | + } | ||
10613 | 10168 | ||
10614 | - /** http method */ | ||
10615 | - request.method = method; | ||
10616 | - /** request url */ | ||
10617 | - request.url = url; | ||
10618 | - return request; | ||
10619 | -})(); | 10169 | + /** http method */ |
10170 | + request.method = method; | ||
10171 | + /** request url */ | ||
10172 | + request.url = url; | ||
10173 | + return request; | ||
10174 | + })(); | ||
10620 | 10175 | ||
10621 | -/** @description request parameter type for postServiceInvoiceQueryInvoice */ | ||
10622 | -export interface PostServiceInvoiceQueryInvoiceOption { | 10176 | +/** @description request parameter type for postServiceInvoiceDeleteInvoice */ |
10177 | +export interface PostServiceInvoiceDeleteInvoiceOption { | ||
10623 | /** | 10178 | /** |
10624 | * @description | 10179 | * @description |
10625 | * dto | 10180 | * dto |
@@ -10632,8 +10187,8 @@ export interface PostServiceInvoiceQueryInvoiceOption { | @@ -10632,8 +10187,8 @@ export interface PostServiceInvoiceQueryInvoiceOption { | ||
10632 | }; | 10187 | }; |
10633 | } | 10188 | } |
10634 | 10189 | ||
10635 | -/** @description response type for postServiceInvoiceQueryInvoice */ | ||
10636 | -export interface PostServiceInvoiceQueryInvoiceResponse { | 10190 | +/** @description response type for postServiceInvoiceDeleteInvoice */ |
10191 | +export interface PostServiceInvoiceDeleteInvoiceResponse { | ||
10637 | /** | 10192 | /** |
10638 | * @description | 10193 | * @description |
10639 | * OK | 10194 | * OK |
@@ -10661,25 +10216,25 @@ export interface PostServiceInvoiceQueryInvoiceResponse { | @@ -10661,25 +10216,25 @@ export interface PostServiceInvoiceQueryInvoiceResponse { | ||
10661 | 404: any; | 10216 | 404: any; |
10662 | } | 10217 | } |
10663 | 10218 | ||
10664 | -export type PostServiceInvoiceQueryInvoiceResponseSuccess = | ||
10665 | - PostServiceInvoiceQueryInvoiceResponse[200]; | 10219 | +export type PostServiceInvoiceDeleteInvoiceResponseSuccess = |
10220 | + PostServiceInvoiceDeleteInvoiceResponse[200]; | ||
10666 | /** | 10221 | /** |
10667 | * @description | 10222 | * @description |
10668 | - * 发票页查询 | 10223 | + * 删除发票 |
10669 | * @tags 发票 | 10224 | * @tags 发票 |
10670 | * @produces * | 10225 | * @produces * |
10671 | * @consumes application/json | 10226 | * @consumes application/json |
10672 | */ | 10227 | */ |
10673 | -export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => { | 10228 | +export const postServiceInvoiceDeleteInvoice = /* #__PURE__ */ (() => { |
10674 | const method = 'post'; | 10229 | const method = 'post'; |
10675 | - const url = '/service/invoice/queryInvoice'; | 10230 | + const url = '/service/invoice/deleteInvoice'; |
10676 | function request( | 10231 | function request( |
10677 | - option: PostServiceInvoiceQueryInvoiceOption, | ||
10678 | - ): Promise<PostServiceInvoiceQueryInvoiceResponseSuccess> { | 10232 | + option: PostServiceInvoiceDeleteInvoiceOption, |
10233 | + ): Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess> { | ||
10679 | return requester(request.url, { | 10234 | return requester(request.url, { |
10680 | method: request.method, | 10235 | method: request.method, |
10681 | ...option, | 10236 | ...option, |
10682 | - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceResponseSuccess>; | 10237 | + }) as unknown as Promise<PostServiceInvoiceDeleteInvoiceResponseSuccess>; |
10683 | } | 10238 | } |
10684 | 10239 | ||
10685 | /** http method */ | 10240 | /** http method */ |
@@ -10689,8 +10244,8 @@ export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => { | @@ -10689,8 +10244,8 @@ export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => { | ||
10689 | return request; | 10244 | return request; |
10690 | })(); | 10245 | })(); |
10691 | 10246 | ||
10692 | -/** @description request parameter type for postServiceInvoiceQueryInvoiceDetail */ | ||
10693 | -export interface PostServiceInvoiceQueryInvoiceDetailOption { | 10247 | +/** @description request parameter type for postServiceInvoiceFindInvoice */ |
10248 | +export interface PostServiceInvoiceFindInvoiceOption { | ||
10694 | /** | 10249 | /** |
10695 | * @description | 10250 | * @description |
10696 | * dto | 10251 | * dto |
@@ -10699,12 +10254,12 @@ export interface PostServiceInvoiceQueryInvoiceDetailOption { | @@ -10699,12 +10254,12 @@ export interface PostServiceInvoiceQueryInvoiceDetailOption { | ||
10699 | /** | 10254 | /** |
10700 | @description | 10255 | @description |
10701 | dto */ | 10256 | dto */ |
10702 | - dto: QueryInvoiceDetailDto; | 10257 | + dto: Dto; |
10703 | }; | 10258 | }; |
10704 | } | 10259 | } |
10705 | 10260 | ||
10706 | -/** @description response type for postServiceInvoiceQueryInvoiceDetail */ | ||
10707 | -export interface PostServiceInvoiceQueryInvoiceDetailResponse { | 10261 | +/** @description response type for postServiceInvoiceFindInvoice */ |
10262 | +export interface PostServiceInvoiceFindInvoiceResponse { | ||
10708 | /** | 10263 | /** |
10709 | * @description | 10264 | * @description |
10710 | * OK | 10265 | * OK |
@@ -10732,25 +10287,25 @@ export interface PostServiceInvoiceQueryInvoiceDetailResponse { | @@ -10732,25 +10287,25 @@ export interface PostServiceInvoiceQueryInvoiceDetailResponse { | ||
10732 | 404: any; | 10287 | 404: any; |
10733 | } | 10288 | } |
10734 | 10289 | ||
10735 | -export type PostServiceInvoiceQueryInvoiceDetailResponseSuccess = | ||
10736 | - PostServiceInvoiceQueryInvoiceDetailResponse[200]; | 10290 | +export type PostServiceInvoiceFindInvoiceResponseSuccess = |
10291 | + PostServiceInvoiceFindInvoiceResponse[200]; | ||
10737 | /** | 10292 | /** |
10738 | * @description | 10293 | * @description |
10739 | - * 查看发票详情 | 10294 | + * 不分页查询发票 |
10740 | * @tags 发票 | 10295 | * @tags 发票 |
10741 | * @produces * | 10296 | * @produces * |
10742 | * @consumes application/json | 10297 | * @consumes application/json |
10743 | */ | 10298 | */ |
10744 | -export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => { | 10299 | +export const postServiceInvoiceFindInvoice = /* #__PURE__ */ (() => { |
10745 | const method = 'post'; | 10300 | const method = 'post'; |
10746 | - const url = '/service/invoice/queryInvoiceDetail'; | 10301 | + const url = '/service/invoice/findInvoice'; |
10747 | function request( | 10302 | function request( |
10748 | - option: PostServiceInvoiceQueryInvoiceDetailOption, | ||
10749 | - ): Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess> { | 10303 | + option: PostServiceInvoiceFindInvoiceOption, |
10304 | + ): Promise<PostServiceInvoiceFindInvoiceResponseSuccess> { | ||
10750 | return requester(request.url, { | 10305 | return requester(request.url, { |
10751 | method: request.method, | 10306 | method: request.method, |
10752 | ...option, | 10307 | ...option, |
10753 | - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess>; | 10308 | + }) as unknown as Promise<PostServiceInvoiceFindInvoiceResponseSuccess>; |
10754 | } | 10309 | } |
10755 | 10310 | ||
10756 | /** http method */ | 10311 | /** http method */ |
@@ -10760,8 +10315,8 @@ export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => { | @@ -10760,8 +10315,8 @@ export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => { | ||
10760 | return request; | 10315 | return request; |
10761 | })(); | 10316 | })(); |
10762 | 10317 | ||
10763 | -/** @description request parameter type for postServiceInvoiceQueryInvoiceRecordList */ | ||
10764 | -export interface PostServiceInvoiceQueryInvoiceRecordListOption { | 10318 | +/** @description request parameter type for postServiceInvoiceInvoiceWriteOff */ |
10319 | +export interface PostServiceInvoiceInvoiceWriteOffOption { | ||
10765 | /** | 10320 | /** |
10766 | * @description | 10321 | * @description |
10767 | * dto | 10322 | * dto |
@@ -10770,12 +10325,12 @@ export interface PostServiceInvoiceQueryInvoiceRecordListOption { | @@ -10770,12 +10325,12 @@ export interface PostServiceInvoiceQueryInvoiceRecordListOption { | ||
10770 | /** | 10325 | /** |
10771 | @description | 10326 | @description |
10772 | dto */ | 10327 | dto */ |
10773 | - dto: QueryInvoiceRecordDto; | 10328 | + dto: Dto; |
10774 | }; | 10329 | }; |
10775 | } | 10330 | } |
10776 | 10331 | ||
10777 | -/** @description response type for postServiceInvoiceQueryInvoiceRecordList */ | ||
10778 | -export interface PostServiceInvoiceQueryInvoiceRecordListResponse { | 10332 | +/** @description response type for postServiceInvoiceInvoiceWriteOff */ |
10333 | +export interface PostServiceInvoiceInvoiceWriteOffResponse { | ||
10779 | /** | 10334 | /** |
10780 | * @description | 10335 | * @description |
10781 | * OK | 10336 | * OK |
@@ -10803,25 +10358,25 @@ export interface PostServiceInvoiceQueryInvoiceRecordListResponse { | @@ -10803,25 +10358,25 @@ export interface PostServiceInvoiceQueryInvoiceRecordListResponse { | ||
10803 | 404: any; | 10358 | 404: any; |
10804 | } | 10359 | } |
10805 | 10360 | ||
10806 | -export type PostServiceInvoiceQueryInvoiceRecordListResponseSuccess = | ||
10807 | - PostServiceInvoiceQueryInvoiceRecordListResponse[200]; | 10361 | +export type PostServiceInvoiceInvoiceWriteOffResponseSuccess = |
10362 | + PostServiceInvoiceInvoiceWriteOffResponse[200]; | ||
10808 | /** | 10363 | /** |
10809 | * @description | 10364 | * @description |
10810 | - * 获取开票记录列表 | 10365 | + * 发票核销 |
10811 | * @tags 发票 | 10366 | * @tags 发票 |
10812 | * @produces * | 10367 | * @produces * |
10813 | * @consumes application/json | 10368 | * @consumes application/json |
10814 | */ | 10369 | */ |
10815 | -export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() => { | 10370 | +export const postServiceInvoiceInvoiceWriteOff = /* #__PURE__ */ (() => { |
10816 | const method = 'post'; | 10371 | const method = 'post'; |
10817 | - const url = '/service/invoice/queryInvoiceRecordList'; | 10372 | + const url = '/service/invoice/invoiceWriteOff'; |
10818 | function request( | 10373 | function request( |
10819 | - option: PostServiceInvoiceQueryInvoiceRecordListOption, | ||
10820 | - ): Promise<PostServiceInvoiceQueryInvoiceRecordListResponseSuccess> { | 10374 | + option: PostServiceInvoiceInvoiceWriteOffOption, |
10375 | + ): Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess> { | ||
10821 | return requester(request.url, { | 10376 | return requester(request.url, { |
10822 | method: request.method, | 10377 | method: request.method, |
10823 | ...option, | 10378 | ...option, |
10824 | - }) as unknown as Promise<PostServiceInvoiceQueryInvoiceRecordListResponseSuccess>; | 10379 | + }) as unknown as Promise<PostServiceInvoiceInvoiceWriteOffResponseSuccess>; |
10825 | } | 10380 | } |
10826 | 10381 | ||
10827 | /** http method */ | 10382 | /** http method */ |
@@ -10831,57 +10386,8 @@ export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() => { | @@ -10831,57 +10386,8 @@ export const postServiceInvoiceQueryInvoiceRecordList = /* #__PURE__ */ (() => { | ||
10831 | return request; | 10386 | return request; |
10832 | })(); | 10387 | })(); |
10833 | 10388 | ||
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 { | 10389 | +/** @description request parameter type for postServiceInvoiceQueryInvoice */ |
10390 | +export interface PostServiceInvoiceQueryInvoiceOption { | ||
10885 | /** | 10391 | /** |
10886 | * @description | 10392 | * @description |
10887 | * dto | 10393 | * dto |
@@ -10890,12 +10396,12 @@ export interface PostServiceInvoiceReissueOption { | @@ -10890,12 +10396,12 @@ export interface PostServiceInvoiceReissueOption { | ||
10890 | /** | 10396 | /** |
10891 | @description | 10397 | @description |
10892 | dto */ | 10398 | dto */ |
10893 | - dto: ReissueInvoiceDto; | 10399 | + dto: Dto; |
10894 | }; | 10400 | }; |
10895 | } | 10401 | } |
10896 | 10402 | ||
10897 | -/** @description response type for postServiceInvoiceReissue */ | ||
10898 | -export interface PostServiceInvoiceReissueResponse { | 10403 | +/** @description response type for postServiceInvoiceQueryInvoice */ |
10404 | +export interface PostServiceInvoiceQueryInvoiceResponse { | ||
10899 | /** | 10405 | /** |
10900 | * @description | 10406 | * @description |
10901 | * OK | 10407 | * OK |
@@ -10923,25 +10429,25 @@ export interface PostServiceInvoiceReissueResponse { | @@ -10923,25 +10429,25 @@ export interface PostServiceInvoiceReissueResponse { | ||
10923 | 404: any; | 10429 | 404: any; |
10924 | } | 10430 | } |
10925 | 10431 | ||
10926 | -export type PostServiceInvoiceReissueResponseSuccess = | ||
10927 | - PostServiceInvoiceReissueResponse[200]; | 10432 | +export type PostServiceInvoiceQueryInvoiceResponseSuccess = |
10433 | + PostServiceInvoiceQueryInvoiceResponse[200]; | ||
10928 | /** | 10434 | /** |
10929 | * @description | 10435 | * @description |
10930 | - * 重新开票 | 10436 | + * 发票页查询 |
10931 | * @tags 发票 | 10437 | * @tags 发票 |
10932 | * @produces * | 10438 | * @produces * |
10933 | * @consumes application/json | 10439 | * @consumes application/json |
10934 | */ | 10440 | */ |
10935 | -export const postServiceInvoiceReissue = /* #__PURE__ */ (() => { | 10441 | +export const postServiceInvoiceQueryInvoice = /* #__PURE__ */ (() => { |
10936 | const method = 'post'; | 10442 | const method = 'post'; |
10937 | - const url = '/service/invoice/reissue'; | 10443 | + const url = '/service/invoice/queryInvoice'; |
10938 | function request( | 10444 | function request( |
10939 | - option: PostServiceInvoiceReissueOption, | ||
10940 | - ): Promise<PostServiceInvoiceReissueResponseSuccess> { | 10445 | + option: PostServiceInvoiceQueryInvoiceOption, |
10446 | + ): Promise<PostServiceInvoiceQueryInvoiceResponseSuccess> { | ||
10941 | return requester(request.url, { | 10447 | return requester(request.url, { |
10942 | method: request.method, | 10448 | method: request.method, |
10943 | ...option, | 10449 | ...option, |
10944 | - }) as unknown as Promise<PostServiceInvoiceReissueResponseSuccess>; | 10450 | + }) as unknown as Promise<PostServiceInvoiceQueryInvoiceResponseSuccess>; |
10945 | } | 10451 | } |
10946 | 10452 | ||
10947 | /** http method */ | 10453 | /** http method */ |
@@ -10951,8 +10457,8 @@ export const postServiceInvoiceReissue = /* #__PURE__ */ (() => { | @@ -10951,8 +10457,8 @@ export const postServiceInvoiceReissue = /* #__PURE__ */ (() => { | ||
10951 | return request; | 10457 | return request; |
10952 | })(); | 10458 | })(); |
10953 | 10459 | ||
10954 | -/** @description request parameter type for postServiceInvoiceReissueAudit */ | ||
10955 | -export interface PostServiceInvoiceReissueAuditOption { | 10460 | +/** @description request parameter type for postServiceInvoiceQueryInvoiceDetail */ |
10461 | +export interface PostServiceInvoiceQueryInvoiceDetailOption { | ||
10956 | /** | 10462 | /** |
10957 | * @description | 10463 | * @description |
10958 | * dto | 10464 | * dto |
@@ -10961,12 +10467,12 @@ export interface PostServiceInvoiceReissueAuditOption { | @@ -10961,12 +10467,12 @@ export interface PostServiceInvoiceReissueAuditOption { | ||
10961 | /** | 10467 | /** |
10962 | @description | 10468 | @description |
10963 | dto */ | 10469 | dto */ |
10964 | - dto: AuditDto; | 10470 | + dto: QueryInvoiceDetailDto; |
10965 | }; | 10471 | }; |
10966 | } | 10472 | } |
10967 | 10473 | ||
10968 | -/** @description response type for postServiceInvoiceReissueAudit */ | ||
10969 | -export interface PostServiceInvoiceReissueAuditResponse { | 10474 | +/** @description response type for postServiceInvoiceQueryInvoiceDetail */ |
10475 | +export interface PostServiceInvoiceQueryInvoiceDetailResponse { | ||
10970 | /** | 10476 | /** |
10971 | * @description | 10477 | * @description |
10972 | * OK | 10478 | * OK |
@@ -10994,25 +10500,25 @@ export interface PostServiceInvoiceReissueAuditResponse { | @@ -10994,25 +10500,25 @@ export interface PostServiceInvoiceReissueAuditResponse { | ||
10994 | 404: any; | 10500 | 404: any; |
10995 | } | 10501 | } |
10996 | 10502 | ||
10997 | -export type PostServiceInvoiceReissueAuditResponseSuccess = | ||
10998 | - PostServiceInvoiceReissueAuditResponse[200]; | 10503 | +export type PostServiceInvoiceQueryInvoiceDetailResponseSuccess = |
10504 | + PostServiceInvoiceQueryInvoiceDetailResponse[200]; | ||
10999 | /** | 10505 | /** |
11000 | * @description | 10506 | * @description |
11001 | - * 重新开票审核 | 10507 | + * 查看发票详情 |
11002 | * @tags 发票 | 10508 | * @tags 发票 |
11003 | * @produces * | 10509 | * @produces * |
11004 | * @consumes application/json | 10510 | * @consumes application/json |
11005 | */ | 10511 | */ |
11006 | -export const postServiceInvoiceReissueAudit = /* #__PURE__ */ (() => { | 10512 | +export const postServiceInvoiceQueryInvoiceDetail = /* #__PURE__ */ (() => { |
11007 | const method = 'post'; | 10513 | const method = 'post'; |
11008 | - const url = '/service/invoice/reissueAudit'; | 10514 | + const url = '/service/invoice/queryInvoiceDetail'; |
11009 | function request( | 10515 | function request( |
11010 | - option: PostServiceInvoiceReissueAuditOption, | ||
11011 | - ): Promise<PostServiceInvoiceReissueAuditResponseSuccess> { | 10516 | + option: PostServiceInvoiceQueryInvoiceDetailOption, |
10517 | + ): Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess> { | ||
11012 | return requester(request.url, { | 10518 | return requester(request.url, { |
11013 | method: request.method, | 10519 | method: request.method, |
11014 | ...option, | 10520 | ...option, |
11015 | - }) as unknown as Promise<PostServiceInvoiceReissueAuditResponseSuccess>; | 10521 | + }) as unknown as Promise<PostServiceInvoiceQueryInvoiceDetailResponseSuccess>; |
11016 | } | 10522 | } |
11017 | 10523 | ||
11018 | /** http method */ | 10524 | /** http method */ |
@@ -11022,8 +10528,8 @@ export const postServiceInvoiceReissueAudit = /* #__PURE__ */ (() => { | @@ -11022,8 +10528,8 @@ export const postServiceInvoiceReissueAudit = /* #__PURE__ */ (() => { | ||
11022 | return request; | 10528 | return request; |
11023 | })(); | 10529 | })(); |
11024 | 10530 | ||
11025 | -/** @description request parameter type for postServiceInvoiceUrgentInvoicing */ | ||
11026 | -export interface PostServiceInvoiceUrgentInvoicingOption { | 10531 | +/** @description request parameter type for postServiceInvoiceReissue */ |
10532 | +export interface PostServiceInvoiceReissueOption { | ||
11027 | /** | 10533 | /** |
11028 | * @description | 10534 | * @description |
11029 | * dto | 10535 | * dto |
@@ -11032,12 +10538,12 @@ export interface PostServiceInvoiceUrgentInvoicingOption { | @@ -11032,12 +10538,12 @@ export interface PostServiceInvoiceUrgentInvoicingOption { | ||
11032 | /** | 10538 | /** |
11033 | @description | 10539 | @description |
11034 | dto */ | 10540 | dto */ |
11035 | - dto: AuditDto; | 10541 | + dto: ReissueInvoiceDto; |
11036 | }; | 10542 | }; |
11037 | } | 10543 | } |
11038 | 10544 | ||
11039 | -/** @description response type for postServiceInvoiceUrgentInvoicing */ | ||
11040 | -export interface PostServiceInvoiceUrgentInvoicingResponse { | 10545 | +/** @description response type for postServiceInvoiceReissue */ |
10546 | +export interface PostServiceInvoiceReissueResponse { | ||
11041 | /** | 10547 | /** |
11042 | * @description | 10548 | * @description |
11043 | * OK | 10549 | * OK |
@@ -11065,25 +10571,25 @@ export interface PostServiceInvoiceUrgentInvoicingResponse { | @@ -11065,25 +10571,25 @@ export interface PostServiceInvoiceUrgentInvoicingResponse { | ||
11065 | 404: any; | 10571 | 404: any; |
11066 | } | 10572 | } |
11067 | 10573 | ||
11068 | -export type PostServiceInvoiceUrgentInvoicingResponseSuccess = | ||
11069 | - PostServiceInvoiceUrgentInvoicingResponse[200]; | 10574 | +export type PostServiceInvoiceReissueResponseSuccess = |
10575 | + PostServiceInvoiceReissueResponse[200]; | ||
11070 | /** | 10576 | /** |
11071 | * @description | 10577 | * @description |
11072 | - * 加急开票审核 | 10578 | + * 重新开票 |
11073 | * @tags 发票 | 10579 | * @tags 发票 |
11074 | * @produces * | 10580 | * @produces * |
11075 | * @consumes application/json | 10581 | * @consumes application/json |
11076 | */ | 10582 | */ |
11077 | -export const postServiceInvoiceUrgentInvoicing = /* #__PURE__ */ (() => { | 10583 | +export const postServiceInvoiceReissue = /* #__PURE__ */ (() => { |
11078 | const method = 'post'; | 10584 | const method = 'post'; |
11079 | - const url = '/service/invoice/urgentInvoicing'; | 10585 | + const url = '/service/invoice/reissue'; |
11080 | function request( | 10586 | function request( |
11081 | - option: PostServiceInvoiceUrgentInvoicingOption, | ||
11082 | - ): Promise<PostServiceInvoiceUrgentInvoicingResponseSuccess> { | 10587 | + option: PostServiceInvoiceReissueOption, |
10588 | + ): Promise<PostServiceInvoiceReissueResponseSuccess> { | ||
11083 | return requester(request.url, { | 10589 | return requester(request.url, { |
11084 | method: request.method, | 10590 | method: request.method, |
11085 | ...option, | 10591 | ...option, |
11086 | - }) as unknown as Promise<PostServiceInvoiceUrgentInvoicingResponseSuccess>; | 10592 | + }) as unknown as Promise<PostServiceInvoiceReissueResponseSuccess>; |
11087 | } | 10593 | } |
11088 | 10594 | ||
11089 | /** http method */ | 10595 | /** http method */ |