Commit b559cda33d6f98a8a322240b0a5906dedfa06939

Authored by PurelzMgnead
1 parent 4e743bb5

feat: update省市区

src/pages/Order/components/FinancialDrawer.tsx
1 -// import { PlusOutlined } from '@ant-design/icons';  
2 import { RESPONSE_CODE } from '@/constants/enum'; 1 import { RESPONSE_CODE } from '@/constants/enum';
3 import { 2 import {
4 postServiceOrderEditOrder, 3 postServiceOrderEditOrder,
src/pages/Order/components/FinancialEditDrawer.tsx
1 -// import { PlusOutlined } from '@ant-design/icons';  
2 import { RESPONSE_CODE } from '@/constants/enum'; 1 import { RESPONSE_CODE } from '@/constants/enum';
3 import { postServiceOrderNoNeedInvoicingEdit } from '@/services'; 2 import { postServiceOrderNoNeedInvoicingEdit } from '@/services';
4 import { enumToSelect } from '@/utils'; 3 import { enumToSelect } from '@/utils';
src/pages/Order/components/FinancialMergeDrawer.tsx
1 -// import { PlusOutlined } from '@ant-design/icons';  
2 import { RESPONSE_CODE } from '@/constants/enum'; 1 import { RESPONSE_CODE } from '@/constants/enum';
3 import { enumToSelect } from '@/utils'; 2 import { enumToSelect } from '@/utils';
4 import { 3 import {
src/pages/Order/components/OrderDrawer copy.tsx
@@ -647,6 +647,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -647,6 +647,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
647 const res = await postKingdeeRepCustomer({ 647 const res = await postKingdeeRepCustomer({
648 data: { search: keywords }, 648 data: { search: keywords },
649 }); 649 });
  650 + console.log(res);
  651 +
650 let options = res?.rows?.map((c: any) => { 652 let options = res?.rows?.map((c: any) => {
651 return { 653 return {
652 ...c, 654 ...c,
src/pages/Order/components/OrderDrawer.tsx
@@ -3,8 +3,10 @@ import { @@ -3,8 +3,10 @@ import {
3 postCanrdApiUserAddressList, 3 postCanrdApiUserAddressList,
4 postCanrdApiUserDetail, 4 postCanrdApiUserDetail,
5 postCanrdApiUserNowMoneyCheck, 5 postCanrdApiUserNowMoneyCheck,
6 - postDistrictSelectBelongByName, 6 + postDistrictAddOrderAndProvince,
7 postDistrictSelectByLevel, 7 postDistrictSelectByLevel,
  8 + postDistrictSelectByNameAndLevel,
  9 + postDistrictSelOrderProvince,
8 postKingdeeRepCustomerDetail, 10 postKingdeeRepCustomerDetail,
9 postKingdeeRepMaterial, 11 postKingdeeRepMaterial,
10 postKingdeeRepMaterialUnit, 12 postKingdeeRepMaterialUnit,
@@ -17,15 +19,15 @@ import { @@ -17,15 +19,15 @@ import {
17 postServiceOrderUpdateOrder, 19 postServiceOrderUpdateOrder,
18 } from '@/services'; 20 } from '@/services';
19 import { 21 import {
  22 + enumToSelect,
20 FloatAdd, 23 FloatAdd,
21 FloatMul, 24 FloatMul,
22 - enumToSelect,  
23 getAliYunOSSFileNameFromUrl, 25 getAliYunOSSFileNameFromUrl,
24 getUserInfo, 26 getUserInfo,
25 } from '@/utils'; 27 } from '@/utils';
26 -import { getDefaultString } from '@/utils/StringUtil';  
27 import { getTeacherCustomFieldNumber } from '@/utils/kingdee'; 28 import { getTeacherCustomFieldNumber } from '@/utils/kingdee';
28 import { getSalesCodeOptions } from '@/utils/order'; 29 import { getSalesCodeOptions } from '@/utils/order';
  30 +import { getDefaultString } from '@/utils/StringUtil';
29 import { 31 import {
30 DrawerForm, 32 DrawerForm,
31 FormListActionType, 33 FormListActionType,
@@ -38,7 +40,7 @@ import { @@ -38,7 +40,7 @@ import {
38 ProFormTextArea, 40 ProFormTextArea,
39 ProFormUploadDragger, 41 ProFormUploadDragger,
40 } from '@ant-design/pro-components'; 42 } from '@ant-design/pro-components';
41 -import { Button, Form, Modal, message } from 'antd'; 43 +import { Button, Form, message, Modal } from 'antd';
42 import { cloneDeep } from 'lodash'; 44 import { cloneDeep } from 'lodash';
43 import { useEffect, useRef, useState } from 'react'; 45 import { useEffect, useRef, useState } from 'react';
44 import { 46 import {
@@ -879,6 +881,17 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -879,6 +881,17 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
879 //新增 881 //新增
880 if (optType('add') || optType('copy')) { 882 if (optType('add') || optType('copy')) {
881 res = await postServiceOrderAddOrder({ data: values }); 883 res = await postServiceOrderAddOrder({ data: values });
  884 + if (res && res.data.length === 2) {
  885 + const orderMainProDo = {
  886 + oId: res.data[0],
  887 + province: province,
  888 + city: city,
  889 + district: district,
  890 + };
  891 + await postDistrictAddOrderAndProvince({
  892 + data: orderMainProDo,
  893 + });
  894 + }
882 } 895 }
883 //修改或者申请售后或者申请修改 896 //修改或者申请售后或者申请修改
884 if ( 897 if (
@@ -1115,9 +1128,24 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1115,9 +1128,24 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1115 key: c.id, 1128 key: c.id,
1116 }; 1129 };
1117 }); 1130 });
1118 - console.log(form.getFieldsValue());  
1119 - console.log(form.getFieldValue('customerName')); 1131 + console.log(form.getFieldValue('customerShippingAddress'));
  1132 + console.log(form.getFieldValue('id'));
  1133 + if (form.getFieldValue('id') !== undefined) {
  1134 + const resp = await postDistrictSelOrderProvince({
  1135 + data: form.getFieldValue('id'),
  1136 + });
  1137 + console.log();
  1138 +
  1139 + setProvince(resp.data.province);
  1140 + form.setFieldValue('province', resp.data.province);
  1141 + setCity(resp.data.city);
  1142 + form.setFieldValue('city', resp.data.city);
  1143 + setDistrict(resp.data.district);
  1144 + form.setFieldValue('district', resp.data.district);
  1145 + console.log(form.getFieldsValue());
  1146 + }
1120 //判断如果是在修改或者复制,那么第一次请求的时候,默认生成当前收货人信息的option 1147 //判断如果是在修改或者复制,那么第一次请求的时候,默认生成当前收货人信息的option
  1148 +
1121 let realName = form.getFieldValue('customerName'); 1149 let realName = form.getFieldValue('customerName');
1122 let detail = form.getFieldValue('customerShippingAddress'); 1150 let detail = form.getFieldValue('customerShippingAddress');
1123 let institution = form.getFieldValue('institution'); 1151 let institution = form.getFieldValue('institution');
@@ -1195,11 +1223,14 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1195,11 +1223,14 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1195 key="province" 1223 key="province"
1196 width={100} 1224 width={100}
1197 label="省" 1225 label="省"
  1226 + allowClear={false}
1198 fieldProps={{ 1227 fieldProps={{
1199 labelInValue: true, 1228 labelInValue: true,
1200 }} 1229 }}
1201 onChange={(value) => { 1230 onChange={(value) => {
1202 - setProvince(value?.value); 1231 + if (value !== undefined || value !== null) {
  1232 + setProvince(value?.value);
  1233 + }
1203 }} 1234 }}
1204 placeholder="请选择" 1235 placeholder="请选择"
1205 rules={[ 1236 rules={[
@@ -1224,13 +1255,16 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1224,13 +1255,16 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1224 name="city" 1255 name="city"
1225 width={100} 1256 width={100}
1226 label="市" 1257 label="市"
  1258 + allowClear={false}
1227 disabled={province === ''} 1259 disabled={province === ''}
1228 fieldProps={{ 1260 fieldProps={{
1229 labelInValue: true, 1261 labelInValue: true,
1230 }} 1262 }}
1231 placeholder="请选择" 1263 placeholder="请选择"
1232 onChange={(value) => { 1264 onChange={(value) => {
1233 - setCity(value?.value); 1265 + if (value !== undefined || value !== null) {
  1266 + setCity(value?.value);
  1267 + }
1234 }} 1268 }}
1235 rules={[ 1269 rules={[
1236 { 1270 {
@@ -1241,8 +1275,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1241,8 +1275,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1241 request={async () => { 1275 request={async () => {
1242 if (province !== '') { 1276 if (province !== '') {
1243 let cityOptions = []; 1277 let cityOptions = [];
1244 - let res = await postDistrictSelectBelongByName({  
1245 - data: province, 1278 + let res = await postDistrictSelectByNameAndLevel({
  1279 + data: { district: province, level: 1 },
1246 }); 1280 });
1247 if (res && res.data) { 1281 if (res && res.data) {
1248 cityOptions = res.data.map((item) => ({ 1282 cityOptions = res.data.map((item) => ({
@@ -1260,8 +1294,11 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1260,8 +1294,11 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1260 name="district" 1294 name="district"
1261 width={100} 1295 width={100}
1262 label="区" 1296 label="区"
  1297 + allowClear={false}
1263 onChange={(value) => { 1298 onChange={(value) => {
1264 - setDistrict(value?.value); 1299 + if (value !== undefined || value !== null) {
  1300 + setDistrict(value?.value);
  1301 + }
1265 }} 1302 }}
1266 disabled={city === ''} 1303 disabled={city === ''}
1267 fieldProps={{ 1304 fieldProps={{
@@ -1275,9 +1312,13 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1275,9 +1312,13 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1275 }, 1312 },
1276 ]} 1313 ]}
1277 request={async () => { 1314 request={async () => {
  1315 + console.log(form.getFieldsValue());
  1316 +
1278 if (city !== '') { 1317 if (city !== '') {
1279 let districtOptions = []; 1318 let districtOptions = [];
1280 - let res = await postDistrictSelectBelongByName({ data: city }); 1319 + let res = await postDistrictSelectByNameAndLevel({
  1320 + data: { district: city, level: 2 },
  1321 + });
1281 if (res && res.data) { 1322 if (res && res.data) {
1282 districtOptions = res.data.map((item) => ({ 1323 districtOptions = res.data.map((item) => ({
1283 value: item.district, 1324 value: item.district,
@@ -1686,6 +1727,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => { @@ -1686,6 +1727,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => {
1686 const res = await postKingdeeRepMaterial({ 1727 const res = await postKingdeeRepMaterial({
1687 data: { search: keywords }, 1728 data: { search: keywords },
1688 }); 1729 });
  1730 + console.log(res.customerShippingAddress);
  1731 +
1689 let options = res?.rows?.map((p: any) => { 1732 let options = res?.rows?.map((p: any) => {
1690 return { 1733 return {
1691 ...p, 1734 ...p,
src/pages/ResearchGroup/index.tsx
@@ -485,9 +485,9 @@ const PrepaidPage = () => { @@ -485,9 +485,9 @@ const PrepaidPage = () => {
485 defaultValue: { 485 defaultValue: {
486 option: { fixed: 'right', disable: true }, 486 option: { fixed: 'right', disable: true },
487 }, 487 },
488 - onChange(value) {  
489 - console.log('value: ', value);  
490 - }, 488 + // onChange(value) {
  489 + // console.log('value: ', value);
  490 + // },
491 }} 491 }}
492 rowKey="id" 492 rowKey="id"
493 search={{ 493 search={{
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
@@ -552,11 +596,15 @@ export interface AuditDto { @@ -552,11 +596,15 @@ export interface AuditDto {
552 export interface AuditVO { 596 export interface AuditVO {
553 /** @format int32 */ 597 /** @format int32 */
554 current?: number; 598 current?: number;
  599 + /** @format int32 */
  600 + end?: number;
555 /** @format int64 */ 601 /** @format int64 */
556 id?: number; 602 id?: number;
557 /** @format int32 */ 603 /** @format int32 */
558 pageSize?: number; 604 pageSize?: number;
559 /** @format int32 */ 605 /** @format int32 */
  606 + start?: number;
  607 + /** @format int32 */
560 status?: number; 608 status?: number;
561 /** @format int32 */ 609 /** @format int32 */
562 total?: number; 610 total?: number;
@@ -626,16 +674,32 @@ export interface CancelSendOrderDto { @@ -626,16 +674,32 @@ export interface CancelSendOrderDto {
626 export interface CaptchaMessageVO { 674 export interface CaptchaMessageVO {
627 /** @format int32 */ 675 /** @format int32 */
628 current?: number; 676 current?: number;
  677 + /** @format int32 */
  678 + end?: number;
629 imgCaptchaCode?: string; 679 imgCaptchaCode?: string;
630 imgCaptchaUuid?: string; 680 imgCaptchaUuid?: string;
631 /** @format int32 */ 681 /** @format int32 */
632 pageSize?: number; 682 pageSize?: number;
633 phone?: string; 683 phone?: string;
634 /** @format int32 */ 684 /** @format int32 */
  685 + start?: number;
  686 + /** @format int32 */
635 total?: number; 687 total?: number;
636 type?: string; 688 type?: string;
637 } 689 }
638 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 +
639 export interface Contactperson { 703 export interface Contactperson {
640 birthday?: string; 704 birthday?: string;
641 contactAddress?: string; 705 contactAddress?: string;
@@ -823,6 +887,8 @@ export interface DictionaryQueryVO { @@ -823,6 +887,8 @@ export interface DictionaryQueryVO {
823 dictCode?: string; 887 dictCode?: string;
824 dictName?: string; 888 dictName?: string;
825 dictValue?: string; 889 dictValue?: string;
  890 + /** @format int32 */
  891 + end?: number;
826 /** @format int64 */ 892 /** @format int64 */
827 id?: number; 893 id?: number;
828 ids?: Array<number>; 894 ids?: Array<number>;
@@ -832,6 +898,8 @@ export interface DictionaryQueryVO { @@ -832,6 +898,8 @@ export interface DictionaryQueryVO {
832 /** @format int32 */ 898 /** @format int32 */
833 sort?: number; 899 sort?: number;
834 /** @format int32 */ 900 /** @format int32 */
  901 + start?: number;
  902 + /** @format int32 */
835 total?: number; 903 total?: number;
836 } 904 }
837 905
@@ -853,6 +921,12 @@ export interface DistrictDo { @@ -853,6 +921,12 @@ export interface DistrictDo {
853 pid?: number; 921 pid?: number;
854 } 922 }
855 923
  924 +export interface DistrictSearchDo {
  925 + district?: string;
  926 + /** @format int32 */
  927 + level?: number;
  928 +}
  929 +
856 export interface Entry { 930 export interface Entry {
857 bankAccount?: string; 931 bankAccount?: string;
858 bankName?: string; 932 bankName?: string;
@@ -1141,10 +1215,14 @@ export interface MeasureUnitListResRow { @@ -1141,10 +1215,14 @@ export interface MeasureUnitListResRow {
1141 export interface MessageQueryDTO { 1215 export interface MessageQueryDTO {
1142 /** @format int32 */ 1216 /** @format int32 */
1143 current?: number; 1217 current?: number;
  1218 + /** @format int32 */
  1219 + end?: number;
1144 isReaded?: string; 1220 isReaded?: string;
1145 /** @format int32 */ 1221 /** @format int32 */
1146 pageSize?: number; 1222 pageSize?: number;
1147 /** @format int32 */ 1223 /** @format int32 */
  1224 + start?: number;
  1225 + /** @format int32 */
1148 total?: number; 1226 total?: number;
1149 username?: string; 1227 username?: string;
1150 } 1228 }
@@ -1180,6 +1258,8 @@ export interface OrderAuditLogQueryVO { @@ -1180,6 +1258,8 @@ export interface OrderAuditLogQueryVO {
1180 applyId?: number; 1258 applyId?: number;
1181 /** @format int32 */ 1259 /** @format int32 */
1182 current?: number; 1260 current?: number;
  1261 + /** @format int32 */
  1262 + end?: number;
1183 /** @format int64 */ 1263 /** @format int64 */
1184 id?: number; 1264 id?: number;
1185 ids?: Array<number>; 1265 ids?: Array<number>;
@@ -1189,6 +1269,8 @@ export interface OrderAuditLogQueryVO { @@ -1189,6 +1269,8 @@ export interface OrderAuditLogQueryVO {
1189 /** @format int32 */ 1269 /** @format int32 */
1190 pageSize?: number; 1270 pageSize?: number;
1191 /** @format int32 */ 1271 /** @format int32 */
  1272 + start?: number;
  1273 + /** @format int32 */
1192 total?: number; 1274 total?: number;
1193 } 1275 }
1194 1276
@@ -1223,6 +1305,8 @@ export interface OrderBaseInfoQueryVO { @@ -1223,6 +1305,8 @@ export interface OrderBaseInfoQueryVO {
1223 customerCode?: string; 1305 customerCode?: string;
1224 customerPo?: string; 1306 customerPo?: string;
1225 customerStyle?: string; 1307 customerStyle?: string;
  1308 + /** @format int32 */
  1309 + end?: number;
1226 /** @format int64 */ 1310 /** @format int64 */
1227 id?: number; 1311 id?: number;
1228 ids?: Array<number>; 1312 ids?: Array<number>;
@@ -1244,6 +1328,8 @@ export interface OrderBaseInfoQueryVO { @@ -1244,6 +1328,8 @@ export interface OrderBaseInfoQueryVO {
1244 productionDepartmentConsignTime?: string; 1328 productionDepartmentConsignTime?: string;
1245 projectNo?: string; 1329 projectNo?: string;
1246 /** @format int32 */ 1330 /** @format int32 */
  1331 + start?: number;
  1332 + /** @format int32 */
1247 total?: number; 1333 total?: number;
1248 } 1334 }
1249 1335
@@ -1304,6 +1390,8 @@ export interface OrderFieldLockApplyQueryVO { @@ -1304,6 +1390,8 @@ export interface OrderFieldLockApplyQueryVO {
1304 auditUserId?: number; 1390 auditUserId?: number;
1305 /** @format int32 */ 1391 /** @format int32 */
1306 current?: number; 1392 current?: number;
  1393 + /** @format int32 */
  1394 + end?: number;
1307 fields?: string; 1395 fields?: string;
1308 /** @format int64 */ 1396 /** @format int64 */
1309 id?: number; 1397 id?: number;
@@ -1313,6 +1401,8 @@ export interface OrderFieldLockApplyQueryVO { @@ -1313,6 +1401,8 @@ export interface OrderFieldLockApplyQueryVO {
1313 /** @format int32 */ 1401 /** @format int32 */
1314 pageSize?: number; 1402 pageSize?: number;
1315 /** @format int32 */ 1403 /** @format int32 */
  1404 + start?: number;
  1405 + /** @format int32 */
1316 status?: number; 1406 status?: number;
1317 statusList?: Array<number>; 1407 statusList?: Array<number>;
1318 /** @format int32 */ 1408 /** @format int32 */
@@ -1358,9 +1448,19 @@ export interface OrderInspectionStageVO { @@ -1358,9 +1448,19 @@ export interface OrderInspectionStageVO {
1358 value3?: string; 1448 value3?: string;
1359 } 1449 }
1360 1450
  1451 +export interface OrderMainProDo {
  1452 + city?: string;
  1453 + district?: string;
  1454 + /** @format int64 */
  1455 + oid?: number;
  1456 + province?: string;
  1457 +}
  1458 +
1361 export interface OrderOptLogQueryVO { 1459 export interface OrderOptLogQueryVO {
1362 /** @format int32 */ 1460 /** @format int32 */
1363 current?: number; 1461 current?: number;
  1462 + /** @format int32 */
  1463 + end?: number;
1364 /** @format int64 */ 1464 /** @format int64 */
1365 id?: number; 1465 id?: number;
1366 ids?: Array<number>; 1466 ids?: Array<number>;
@@ -1369,6 +1469,8 @@ export interface OrderOptLogQueryVO { @@ -1369,6 +1469,8 @@ export interface OrderOptLogQueryVO {
1369 /** @format int32 */ 1469 /** @format int32 */
1370 pageSize?: number; 1470 pageSize?: number;
1371 /** @format int32 */ 1471 /** @format int32 */
  1472 + start?: number;
  1473 + /** @format int32 */
1372 total?: number; 1474 total?: number;
1373 } 1475 }
1374 1476
@@ -1674,6 +1776,8 @@ export interface QueryBankStatementDto { @@ -1674,6 +1776,8 @@ export interface QueryBankStatementDto {
1674 collectionDatetimeEnd?: string; 1776 collectionDatetimeEnd?: string;
1675 /** @format int32 */ 1777 /** @format int32 */
1676 current?: number; 1778 current?: number;
  1779 + /** @format int32 */
  1780 + end?: number;
1677 /** @format int64 */ 1781 /** @format int64 */
1678 id?: number; 1782 id?: number;
1679 /** @format int32 */ 1783 /** @format int32 */
@@ -1695,6 +1799,8 @@ export interface QueryBankStatementDto { @@ -1695,6 +1799,8 @@ export interface QueryBankStatementDto {
1695 remark?: string; 1799 remark?: string;
1696 remarkNote?: string; 1800 remarkNote?: string;
1697 serialNumber?: string; 1801 serialNumber?: string;
  1802 + /** @format int32 */
  1803 + start?: number;
1698 status?: string; 1804 status?: string;
1699 /** @format int32 */ 1805 /** @format int32 */
1700 total?: number; 1806 total?: number;
@@ -1784,6 +1890,325 @@ export interface ReissueInvoiceDto { @@ -1784,6 +1890,325 @@ export interface ReissueInvoiceDto {
1784 notes?: string; 1890 notes?: string;
1785 } 1891 }
1786 1892
  1893 +export interface ResearchGroupAccountAddRequest {
  1894 + /**
  1895 + * @description
  1896 + * 关联的账号id
  1897 + * @format int64
  1898 + */
  1899 + accountId?: number;
  1900 + /**
  1901 + * @description
  1902 + * 关联的账号名称
  1903 + */
  1904 + accountName?: string;
  1905 + /**
  1906 + * @description
  1907 + * 关联的账号手机号
  1908 + */
  1909 + accountPhone?: string;
  1910 + /**
  1911 + * @description
  1912 + * 课题组id
  1913 + * @format int64
  1914 + */
  1915 + groupId?: number;
  1916 +}
  1917 +
  1918 +export interface ResearchGroupAccountEditRequest {
  1919 + /**
  1920 + * @description
  1921 + * 关联的账号id
  1922 + * @format int64
  1923 + */
  1924 + accountId?: number;
  1925 + /**
  1926 + * @description
  1927 + * 关联的账号名称
  1928 + */
  1929 + accountName?: string;
  1930 + /**
  1931 + * @description
  1932 + * 关联的账号手机号
  1933 + */
  1934 + accountPhone?: string;
  1935 + /**
  1936 + * @description
  1937 + * 课题组id
  1938 + * @format int64
  1939 + */
  1940 + groupId?: number;
  1941 + /**
  1942 + * @description
  1943 + * 主键id
  1944 + * @format int64
  1945 + */
  1946 + id?: number;
  1947 +}
  1948 +
  1949 +export interface ResearchGroupAddRequest {
  1950 + accounts?: Array<ResearchGroupAccountAddRequest>;
  1951 + /**
  1952 + * @description
  1953 + * 课题组名称
  1954 + */
  1955 + group?: string;
  1956 + /**
  1957 + * @description
  1958 + * 课题组负责人
  1959 + */
  1960 + leader?: string;
  1961 + members?: Array<ResearchGroupMemberAddRequest>;
  1962 +}
  1963 +
  1964 +export interface ResearchGroupDeleteRequest {
  1965 + /**
  1966 + * @description
  1967 + * 主键id
  1968 + */
  1969 + ids?: Array<number>;
  1970 +}
  1971 +
  1972 +export interface ResearchGroupDetailRequest {
  1973 + /**
  1974 + * @description
  1975 + * 主键id
  1976 + * @format int64
  1977 + */
  1978 + id?: number;
  1979 +}
  1980 +
  1981 +export interface ResearchGroupEditRequest {
  1982 + /**
  1983 + * @description
  1984 + * 课题组预存账号
  1985 + */
  1986 + accounts?: Array<ResearchGroupAccountEditRequest>;
  1987 + /**
  1988 + * @description
  1989 + * 课题组名称
  1990 + */
  1991 + group?: string;
  1992 + /**
  1993 + * @description
  1994 + * 主键id
  1995 + * @format int64
  1996 + */
  1997 + id?: number;
  1998 + /**
  1999 + * @description
  2000 + * 课题组负责人
  2001 + */
  2002 + leader?: string;
  2003 + /**
  2004 + * @description
  2005 + * 课题组成员集合
  2006 + */
  2007 + members?: Array<ResearchGroupMemberEditRequest>;
  2008 +}
  2009 +
  2010 +export interface ResearchGroupListRequest {
  2011 + /**
  2012 + * @description
  2013 + * 预存账号手机号
  2014 + */
  2015 + accountPhone?: string;
  2016 + /** @format int32 */
  2017 + current?: number;
  2018 + /** @format int32 */
  2019 + end?: number;
  2020 + /**
  2021 + * @description
  2022 + * 课题组名称
  2023 + */
  2024 + groupName?: string;
  2025 + /**
  2026 + * @description
  2027 + * 课题组负责人
  2028 + */
  2029 + leaderName?: string;
  2030 + /**
  2031 + * @description
  2032 + * 课题组成员名称
  2033 + */
  2034 + memberName?: string;
  2035 + /**
  2036 + * @description
  2037 + * 课题组成员手机号
  2038 + */
  2039 + memberPhone?: string;
  2040 + /** @format int32 */
  2041 + pageSize?: number;
  2042 + /** @format int32 */
  2043 + start?: number;
  2044 + /** @format int32 */
  2045 + total?: number;
  2046 +}
  2047 +
  2048 +export interface ResearchGroupMemberAddRequest {
  2049 + /**
  2050 + * @description
  2051 + * 课题组ID
  2052 + * @format int64
  2053 + */
  2054 + groupId?: number;
  2055 + /**
  2056 + * @description
  2057 + * 成员名称
  2058 + */
  2059 + memberName?: string;
  2060 + /**
  2061 + * @description
  2062 + * 成员手机号
  2063 + */
  2064 + memberPhone?: string;
  2065 +}
  2066 +
  2067 +export interface ResearchGroupMemberEditRequest {
  2068 + /**
  2069 + * @description
  2070 + * 课题组ID
  2071 + * @format int64
  2072 + */
  2073 + groupId?: number;
  2074 + /**
  2075 + * @description
  2076 + * 主键id
  2077 + * @format int64
  2078 + */
  2079 + id?: number;
  2080 + /**
  2081 + * @description
  2082 + * 成员名称
  2083 + */
  2084 + memberName?: string;
  2085 + /**
  2086 + * @description
  2087 + * 成员手机号
  2088 + */
  2089 + memberPhone?: string;
  2090 +}
  2091 +
  2092 +export interface ResearchGroupMemberRequestAddRequest {
  2093 + /**
  2094 + * @description
  2095 + * 课题组ID
  2096 + * @format int64
  2097 + */
  2098 + groupId?: number;
  2099 + /**
  2100 + * @description
  2101 + * 课题组名称
  2102 + */
  2103 + groupName?: string;
  2104 + members?: Array<ResearchGroupMemberAddRequest>;
  2105 + /**
  2106 + * @description
  2107 + * 申请备注
  2108 + */
  2109 + requestNotes?: string;
  2110 +}
  2111 +
  2112 +export interface ResearchGroupMemberRequestDeleteRequest {
  2113 + /**
  2114 + * @description
  2115 + * 主键id
  2116 + */
  2117 + ids?: Array<number>;
  2118 +}
  2119 +
  2120 +export interface ResearchGroupMemberRequestDetailRequest {
  2121 + /**
  2122 + * @description
  2123 + * 主键id
  2124 + * @format int64
  2125 + */
  2126 + id?: number;
  2127 +}
  2128 +
  2129 +export interface ResearchGroupMemberRequestEditRequest {
  2130 + /**
  2131 + * @description
  2132 + * 课题组ID
  2133 + * @format int64
  2134 + */
  2135 + groupId?: number;
  2136 + /**
  2137 + * @description
  2138 + * 课题组名称
  2139 + */
  2140 + groupName?: string;
  2141 + /**
  2142 + * @description
  2143 + * 主键id
  2144 + * @format int64
  2145 + */
  2146 + id?: number;
  2147 + /**
  2148 + * @description
  2149 + * 成员名称
  2150 + */
  2151 + memberName?: string;
  2152 + /**
  2153 + * @description
  2154 + * 成员手机号
  2155 + */
  2156 + memberPhone?: string;
  2157 + /**
  2158 + * @description
  2159 + * 申请备注
  2160 + */
  2161 + requestNotes?: string;
  2162 +}
  2163 +
  2164 +export interface ResearchGroupMemberRequestsRequest {
  2165 + /**
  2166 + * @description
  2167 + * 审核备注
  2168 + */
  2169 + auditNotes?: string;
  2170 + /**
  2171 + * @description
  2172 + * 审核状态
  2173 + */
  2174 + auditStatus?: string;
  2175 + /**
  2176 + * @description
  2177 + * 创建人
  2178 + */
  2179 + createByName?: string;
  2180 + /** @format int32 */
  2181 + current?: number;
  2182 + /** @format int32 */
  2183 + end?: number;
  2184 + /**
  2185 + * @description
  2186 + * 课题组名称
  2187 + */
  2188 + groupName?: string;
  2189 + /**
  2190 + * @description
  2191 + * 成员名称
  2192 + */
  2193 + memberName?: string;
  2194 + /**
  2195 + * @description
  2196 + * 成员手机号
  2197 + */
  2198 + memberPhone?: string;
  2199 + /** @format int32 */
  2200 + pageSize?: number;
  2201 + /**
  2202 + * @description
  2203 + * 申请备注
  2204 + */
  2205 + requestNotes?: string;
  2206 + /** @format int32 */
  2207 + start?: number;
  2208 + /** @format int32 */
  2209 + total?: number;
  2210 +}
  2211 +
1787 export interface ResetPwdVO { 2212 export interface ResetPwdVO {
1788 /** @format int64 */ 2213 /** @format int64 */
1789 userId?: number; 2214 userId?: number;
@@ -1829,6 +2254,8 @@ export interface SysLogQueryVO { @@ -1829,6 +2254,8 @@ export interface SysLogQueryVO {
1829 /** @format int32 */ 2254 /** @format int32 */
1830 current?: number; 2255 current?: number;
1831 description?: string; 2256 description?: string;
  2257 + /** @format int32 */
  2258 + end?: number;
1832 exceptionDetail?: string; 2259 exceptionDetail?: string;
1833 /** @format int64 */ 2260 /** @format int64 */
1834 id?: number; 2261 id?: number;
@@ -1839,6 +2266,8 @@ export interface SysLogQueryVO { @@ -1839,6 +2266,8 @@ export interface SysLogQueryVO {
1839 pageSize?: number; 2266 pageSize?: number;
1840 params?: string; 2267 params?: string;
1841 requestIp?: string; 2268 requestIp?: string;
  2269 + /** @format int32 */
  2270 + start?: number;
1842 /** @format int64 */ 2271 /** @format int64 */
1843 time?: number; 2272 time?: number;
1844 /** @format int32 */ 2273 /** @format int32 */
@@ -2002,8 +2431,12 @@ export interface UserCenterInfoRequest { @@ -2002,8 +2431,12 @@ export interface UserCenterInfoRequest {
2002 /** @format int32 */ 2431 /** @format int32 */
2003 current?: number; 2432 current?: number;
2004 /** @format int32 */ 2433 /** @format int32 */
  2434 + end?: number;
  2435 + /** @format int32 */
2005 pageSize?: number; 2436 pageSize?: number;
2006 /** @format int32 */ 2437 /** @format int32 */
  2438 + start?: number;
  2439 + /** @format int32 */
2007 total?: number; 2440 total?: number;
2008 /** 2441 /**
2009 * @description 2442 * @description
@@ -2023,6 +2456,8 @@ export interface UserDetailRequest { @@ -2023,6 +2456,8 @@ export interface UserDetailRequest {
2023 /** @format int32 */ 2456 /** @format int32 */
2024 current?: number; 2457 current?: number;
2025 /** @format int32 */ 2458 /** @format int32 */
  2459 + end?: number;
  2460 + /** @format int32 */
2026 pageSize?: number; 2461 pageSize?: number;
2027 /** 2462 /**
2028 * @description 2463 * @description
@@ -2030,6 +2465,8 @@ export interface UserDetailRequest { @@ -2030,6 +2465,8 @@ export interface UserDetailRequest {
2030 */ 2465 */
2031 phone?: string; 2466 phone?: string;
2032 /** @format int32 */ 2467 /** @format int32 */
  2468 + start?: number;
  2469 + /** @format int32 */
2033 total?: number; 2470 total?: number;
2034 /** 2471 /**
2035 * @description 2472 * @description
@@ -2046,6 +2483,8 @@ export interface UserListRequest { @@ -2046,6 +2483,8 @@ export interface UserListRequest {
2046 * 创建日期开始时间 2483 * 创建日期开始时间
2047 */ 2484 */
2048 dateLimit?: string; 2485 dateLimit?: string;
  2486 + /** @format int32 */
  2487 + end?: number;
2049 /** 2488 /**
2050 * @description 2489 * @description
2051 * 单位 2490 * 单位
@@ -2070,10 +2509,23 @@ export interface UserListRequest { @@ -2070,10 +2509,23 @@ export interface UserListRequest {
2070 phone?: string; 2509 phone?: string;
2071 /** 2510 /**
2072 * @description 2511 * @description
  2512 + * phones
  2513 + */
  2514 + phones?: Array<string>;
  2515 + /**
  2516 + * @description
  2517 + * 内部订单系统课题组id
  2518 + * @format int64
  2519 + */
  2520 + researchGroupId?: number;
  2521 + /**
  2522 + * @description
2073 * salesCode 2523 * salesCode
2074 */ 2524 */
2075 salesCode?: string; 2525 salesCode?: string;
2076 /** @format int32 */ 2526 /** @format int32 */
  2527 + start?: number;
  2528 + /** @format int32 */
2077 total?: number; 2529 total?: number;
2078 /** 2530 /**
2079 * @description 2531 * @description
@@ -2083,11 +2535,23 @@ export interface UserListRequest { @@ -2083,11 +2535,23 @@ export interface UserListRequest {
2083 uid?: number; 2535 uid?: number;
2084 /** 2536 /**
2085 * @description 2537 * @description
  2538 + * ids
  2539 + */
  2540 + uids?: Array<number>;
  2541 + /**
  2542 + * @description
2086 * 用户名 2543 * 用户名
2087 */ 2544 */
2088 username?: string; 2545 username?: string;
2089 } 2546 }
2090 2547
  2548 +export interface UserNowMoneyCheckRequest {
  2549 + phone?: string;
  2550 + subPrice?: number;
  2551 + /** @format int64 */
  2552 + uid?: number;
  2553 +}
  2554 +
2091 export interface View { 2555 export interface View {
2092 contentType?: string; 2556 contentType?: string;
2093 } 2557 }
@@ -2152,6 +2616,11 @@ export interface SalesRechargePrepaymentAuditRequest { @@ -2152,6 +2616,11 @@ export interface SalesRechargePrepaymentAuditRequest {
2152 * 是否通过 2616 * 是否通过
2153 */ 2617 */
2154 pass?: boolean; 2618 pass?: boolean;
  2619 + /**
  2620 + * @description
  2621 + * 手机号
  2622 + */
  2623 + phone?: string;
2155 } 2624 }
2156 2625
2157 export interface SalesRechargePrepaymentCreateRequest { 2626 export interface SalesRechargePrepaymentCreateRequest {
@@ -2257,6 +2726,8 @@ export interface SalesRechargePrepaymentRequest { @@ -2257,6 +2726,8 @@ export interface SalesRechargePrepaymentRequest {
2257 * @format int32 2726 * @format int32
2258 */ 2727 */
2259 enableFlag?: number; 2728 enableFlag?: number;
  2729 + /** @format int32 */
  2730 + end?: number;
2260 /** 2731 /**
2261 * @description 2732 * @description
2262 * id 2733 * id
@@ -2301,6 +2772,8 @@ export interface SalesRechargePrepaymentRequest { @@ -2301,6 +2772,8 @@ export interface SalesRechargePrepaymentRequest {
2301 * 销售代表 2772 * 销售代表
2302 */ 2773 */
2303 salesCode?: string; 2774 salesCode?: string;
  2775 + /** @format int32 */
  2776 + start?: number;
2304 /** 2777 /**
2305 * @description 2778 * @description
2306 * 状态 2779 * 状态
@@ -2479,6 +2952,38 @@ export interface TsgURL { @@ -2479,6 +2952,38 @@ export interface TsgURL {
2479 userInfo?: string; 2952 userInfo?: string;
2480 } 2953 }
2481 2954
  2955 +/**
  2956 + * @description
  2957 + * 保存用户地址请求对象
  2958 + */
  2959 +export interface UserAddressSaveRequest {
  2960 + /**
  2961 + * @description
  2962 + * 联系电话
  2963 + */
  2964 + customerContactNumber: string;
  2965 + /**
  2966 + * @description
  2967 + * 客户姓名
  2968 + */
  2969 + customerName: string;
  2970 + /**
  2971 + * @description
  2972 + * 收货地址
  2973 + */
  2974 + customerShippingAddress?: string;
  2975 + /**
  2976 + * @description
  2977 + * 客户单位
  2978 + */
  2979 + institution?: string;
  2980 + /**
  2981 + * @description
  2982 + * 课题组老师
  2983 + */
  2984 + institutionContactName?: string;
  2985 +}
  2986 +
2482 export interface UploadPaymentReceiptDTO { 2987 export interface UploadPaymentReceiptDTO {
2483 /** 2988 /**
2484 * @description 2989 * @description
src/services/request.ts
@@ -34,6 +34,7 @@ import type { @@ -34,6 +34,7 @@ import type {
34 CancelInvoiceAndBankStatementDto, 34 CancelInvoiceAndBankStatementDto,
35 CancelSendOrderDto, 35 CancelSendOrderDto,
36 CaptchaMessageVO, 36 CaptchaMessageVO,
  37 + CommonAuditRequest,
37 CustomFieldRes, 38 CustomFieldRes,
38 CustomerCustomerListReq, 39 CustomerCustomerListReq,
39 CustomerDetailDto, 40 CustomerDetailDto,
@@ -43,6 +44,7 @@ import type { @@ -43,6 +44,7 @@ import type {
43 DictionaryQueryVO, 44 DictionaryQueryVO,
44 DictionaryVO, 45 DictionaryVO,
45 DistrictDo, 46 DistrictDo,
  47 + DistrictSearchDo,
46 Dto, 48 Dto,
47 InventoryMaterialStockReq, 49 InventoryMaterialStockReq,
48 InvoiceDto, 50 InvoiceDto,
@@ -54,10 +56,12 @@ import type { @@ -54,10 +56,12 @@ import type {
54 MaterialUnitListRes, 56 MaterialUnitListRes,
55 MeasureUnitListRes, 57 MeasureUnitListRes,
56 MessageQueryDTO, 58 MessageQueryDTO,
  59 + ModelAndView,
57 OrderAddVO, 60 OrderAddVO,
58 OrderAuditLogQueryVO, 61 OrderAuditLogQueryVO,
59 OrderBaseInfoQueryVO, 62 OrderBaseInfoQueryVO,
60 OrderFieldLockApplyQueryVO, 63 OrderFieldLockApplyQueryVO,
  64 + OrderMainProDo,
61 OrderOptLogQueryVO, 65 OrderOptLogQueryVO,
62 OrderProfitAnalysisVo, 66 OrderProfitAnalysisVo,
63 OrderStagesDelDo, 67 OrderStagesDelDo,
@@ -82,6 +86,16 @@ import type { @@ -82,6 +86,16 @@ import type {
82 QueryMainOrderDto, 86 QueryMainOrderDto,
83 QueryReportFormsDto, 87 QueryReportFormsDto,
84 ReissueInvoiceDto, 88 ReissueInvoiceDto,
  89 + ResearchGroupAddRequest,
  90 + ResearchGroupDeleteRequest,
  91 + ResearchGroupDetailRequest,
  92 + ResearchGroupEditRequest,
  93 + ResearchGroupListRequest,
  94 + ResearchGroupMemberRequestAddRequest,
  95 + ResearchGroupMemberRequestDeleteRequest,
  96 + ResearchGroupMemberRequestDetailRequest,
  97 + ResearchGroupMemberRequestEditRequest,
  98 + ResearchGroupMemberRequestsRequest,
85 ResetPwdVO, 99 ResetPwdVO,
86 SalOrderSaveDto, 100 SalOrderSaveDto,
87 SalesRechargePrepaymentAuditRequest, 101 SalesRechargePrepaymentAuditRequest,
@@ -103,9 +117,11 @@ import type { @@ -103,9 +117,11 @@ import type {
103 UpdatePwdVO, 117 UpdatePwdVO,
104 UploadPaymentReceiptDTO, 118 UploadPaymentReceiptDTO,
105 UserAddressListRequest, 119 UserAddressListRequest,
  120 + UserAddressSaveRequest,
106 UserCenterInfoRequest, 121 UserCenterInfoRequest,
107 UserDetailRequest, 122 UserDetailRequest,
108 UserListRequest, 123 UserListRequest,
  124 + UserNowMoneyCheckRequest,
109 } from './definition'; 125 } from './definition';
110 126
111 /** @description request parameter type for postApiLocalStorageUpload */ 127 /** @description request parameter type for postApiLocalStorageUpload */
@@ -1468,8 +1484,8 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() =&gt; { @@ -1468,8 +1484,8 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() =&gt; {
1468 return request; 1484 return request;
1469 })(); 1485 })();
1470 1486
1471 -/** @description request parameter type for postCanrdApiUserList */  
1472 -export interface PostCanrdApiUserListOption { 1487 +/** @description request parameter type for postCanrdApiUserInnerOrderSystemAddressSave */
  1488 +export interface PostCanrdApiUserInnerOrderSystemAddressSaveOption {
1473 /** 1489 /**
1474 * @description 1490 * @description
1475 * request 1491 * request
@@ -1478,12 +1494,12 @@ export interface PostCanrdApiUserListOption { @@ -1478,12 +1494,12 @@ export interface PostCanrdApiUserListOption {
1478 /** 1494 /**
1479 @description 1495 @description
1480 request */ 1496 request */
1481 - request: UserListRequest; 1497 + request: UserAddressSaveRequest;
1482 }; 1498 };
1483 } 1499 }
1484 1500
1485 -/** @description response type for postCanrdApiUserList */  
1486 -export interface PostCanrdApiUserListResponse { 1501 +/** @description response type for postCanrdApiUserInnerOrderSystemAddressSave */
  1502 +export interface PostCanrdApiUserInnerOrderSystemAddressSaveResponse {
1487 /** 1503 /**
1488 * @description 1504 * @description
1489 * OK 1505 * OK
@@ -1511,36 +1527,51 @@ export interface PostCanrdApiUserListResponse { @@ -1511,36 +1527,51 @@ export interface PostCanrdApiUserListResponse {
1511 404: any; 1527 404: any;
1512 } 1528 }
1513 1529
1514 -export type PostCanrdApiUserListResponseSuccess =  
1515 - PostCanrdApiUserListResponse[200]; 1530 +export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess =
  1531 + PostCanrdApiUserInnerOrderSystemAddressSaveResponse[200];
1516 /** 1532 /**
1517 * @description 1533 * @description
1518 - * 获取用户列表 1534 + * 查询地址信息
1519 * @tags canrd-mobile-api-controller 1535 * @tags canrd-mobile-api-controller
1520 * @produces * 1536 * @produces *
1521 * @consumes application/json 1537 * @consumes application/json
1522 */ 1538 */
1523 -export const postCanrdApiUserList = /* #__PURE__ */ (() => {  
1524 - const method = 'post';  
1525 - const url = '/canrd/api/user/list';  
1526 - function request(  
1527 - option: PostCanrdApiUserListOption,  
1528 - ): Promise<PostCanrdApiUserListResponseSuccess> {  
1529 - return requester(request.url, {  
1530 - method: request.method,  
1531 - ...option,  
1532 - }) as unknown as Promise<PostCanrdApiUserListResponseSuccess>;  
1533 - } 1539 +export const postCanrdApiUserInnerOrderSystemAddressSave =
  1540 + /* #__PURE__ */ (() => {
  1541 + const method = 'post';
  1542 + const url = '/canrd/api/user/innerOrderSystem/address/save';
  1543 + function request(
  1544 + option: PostCanrdApiUserInnerOrderSystemAddressSaveOption,
  1545 + ): Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess> {
  1546 + return requester(request.url, {
  1547 + method: request.method,
  1548 + ...option,
  1549 + }) as unknown as Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess>;
  1550 + }
1534 1551
1535 - /** http method */  
1536 - request.method = method;  
1537 - /** request url */  
1538 - request.url = url;  
1539 - return request;  
1540 -})(); 1552 + /** http method */
  1553 + request.method = method;
  1554 + /** request url */
  1555 + request.url = url;
  1556 + return request;
  1557 + })();
1541 1558
1542 -/** @description response type for getDistrictSelectAll */  
1543 -export interface GetDistrictSelectAllResponse { 1559 +/** @description request parameter type for postCanrdApiUserList */
  1560 +export interface PostCanrdApiUserListOption {
  1561 + /**
  1562 + * @description
  1563 + * request
  1564 + */
  1565 + body: {
  1566 + /**
  1567 + @description
  1568 + request */
  1569 + request: UserListRequest;
  1570 + };
  1571 +}
  1572 +
  1573 +/** @description response type for postCanrdApiUserList */
  1574 +export interface PostCanrdApiUserListResponse {
1544 /** 1575 /**
1545 * @description 1576 * @description
1546 * OK 1577 * OK
@@ -1548,6 +1579,11 @@ export interface GetDistrictSelectAllResponse { @@ -1548,6 +1579,11 @@ export interface GetDistrictSelectAllResponse {
1548 200: ServerResult; 1579 200: ServerResult;
1549 /** 1580 /**
1550 * @description 1581 * @description
  1582 + * Created
  1583 + */
  1584 + 201: any;
  1585 + /**
  1586 + * @description
1551 * Unauthorized 1587 * Unauthorized
1552 */ 1588 */
1553 401: any; 1589 401: any;
@@ -1563,21 +1599,25 @@ export interface GetDistrictSelectAllResponse { @@ -1563,21 +1599,25 @@ export interface GetDistrictSelectAllResponse {
1563 404: any; 1599 404: any;
1564 } 1600 }
1565 1601
1566 -export type GetDistrictSelectAllResponseSuccess =  
1567 - GetDistrictSelectAllResponse[200]; 1602 +export type PostCanrdApiUserListResponseSuccess =
  1603 + PostCanrdApiUserListResponse[200];
1568 /** 1604 /**
1569 * @description 1605 * @description
1570 - * 查询全部  
1571 - * @tags order-district-controller 1606 + * 获取用户列表
  1607 + * @tags canrd-mobile-api-controller
1572 * @produces * 1608 * @produces *
  1609 + * @consumes application/json
1573 */ 1610 */
1574 -export const getDistrictSelectAll = /* #__PURE__ */ (() => {  
1575 - const method = 'get';  
1576 - const url = '/district/selectAll';  
1577 - function request(): Promise<GetDistrictSelectAllResponseSuccess> { 1611 +export const postCanrdApiUserList = /* #__PURE__ */ (() => {
  1612 + const method = 'post';
  1613 + const url = '/canrd/api/user/list';
  1614 + function request(
  1615 + option: PostCanrdApiUserListOption,
  1616 + ): Promise<PostCanrdApiUserListResponseSuccess> {
1578 return requester(request.url, { 1617 return requester(request.url, {
1579 method: request.method, 1618 method: request.method,
1580 - }) as unknown as Promise<GetDistrictSelectAllResponseSuccess>; 1619 + ...option,
  1620 + }) as unknown as Promise<PostCanrdApiUserListResponseSuccess>;
1581 } 1621 }
1582 1622
1583 /** http method */ 1623 /** http method */
@@ -1587,22 +1627,22 @@ export const getDistrictSelectAll = /* #__PURE__ */ (() =&gt; { @@ -1587,22 +1627,22 @@ export const getDistrictSelectAll = /* #__PURE__ */ (() =&gt; {
1587 return request; 1627 return request;
1588 })(); 1628 })();
1589 1629
1590 -/** @description request parameter type for postDistrictSelectBelong */  
1591 -export interface PostDistrictSelectBelongOption { 1630 +/** @description request parameter type for postCanrdApiUserNowMoneyCheck */
  1631 +export interface PostCanrdApiUserNowMoneyCheckOption {
1592 /** 1632 /**
1593 * @description 1633 * @description
1594 - * pid 1634 + * request
1595 */ 1635 */
1596 body: { 1636 body: {
1597 /** 1637 /**
1598 @description 1638 @description
1599 - pid */  
1600 - pid: number; 1639 + request */
  1640 + request: UserNowMoneyCheckRequest;
1601 }; 1641 };
1602 } 1642 }
1603 1643
1604 -/** @description response type for postDistrictSelectBelong */  
1605 -export interface PostDistrictSelectBelongResponse { 1644 +/** @description response type for postCanrdApiUserNowMoneyCheck */
  1645 +export interface PostCanrdApiUserNowMoneyCheckResponse {
1606 /** 1646 /**
1607 * @description 1647 * @description
1608 * OK 1648 * OK
@@ -1630,25 +1670,25 @@ export interface PostDistrictSelectBelongResponse { @@ -1630,25 +1670,25 @@ export interface PostDistrictSelectBelongResponse {
1630 404: any; 1670 404: any;
1631 } 1671 }
1632 1672
1633 -export type PostDistrictSelectBelongResponseSuccess =  
1634 - PostDistrictSelectBelongResponse[200]; 1673 +export type PostCanrdApiUserNowMoneyCheckResponseSuccess =
  1674 + PostCanrdApiUserNowMoneyCheckResponse[200];
1635 /** 1675 /**
1636 * @description 1676 * @description
1637 - * 根据父级进行筛选  
1638 - * @tags order-district-controller 1677 + * 检查用户额度
  1678 + * @tags canrd-mobile-api-controller
1639 * @produces * 1679 * @produces *
1640 * @consumes application/json 1680 * @consumes application/json
1641 */ 1681 */
1642 -export const postDistrictSelectBelong = /* #__PURE__ */ (() => { 1682 +export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => {
1643 const method = 'post'; 1683 const method = 'post';
1644 - const url = '/district/selectBelong'; 1684 + const url = '/canrd/api/user/nowMoney/check';
1645 function request( 1685 function request(
1646 - option: PostDistrictSelectBelongOption,  
1647 - ): Promise<PostDistrictSelectBelongResponseSuccess> { 1686 + option: PostCanrdApiUserNowMoneyCheckOption,
  1687 + ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> {
1648 return requester(request.url, { 1688 return requester(request.url, {
1649 method: request.method, 1689 method: request.method,
1650 ...option, 1690 ...option,
1651 - }) as unknown as Promise<PostDistrictSelectBelongResponseSuccess>; 1691 + }) as unknown as Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess>;
1652 } 1692 }
1653 1693
1654 /** http method */ 1694 /** http method */
@@ -1658,22 +1698,22 @@ export const postDistrictSelectBelong = /* #__PURE__ */ (() =&gt; { @@ -1658,22 +1698,22 @@ export const postDistrictSelectBelong = /* #__PURE__ */ (() =&gt; {
1658 return request; 1698 return request;
1659 })(); 1699 })();
1660 1700
1661 -/** @description request parameter type for postDistrictSelectBelongAndLevel */  
1662 -export interface PostDistrictSelectBelongAndLevelOption { 1701 +/** @description request parameter type for postCommonAudit */
  1702 +export interface PostCommonAuditOption {
1663 /** 1703 /**
1664 * @description 1704 * @description
1665 - * districtDo 1705 + * request
1666 */ 1706 */
1667 body: { 1707 body: {
1668 /** 1708 /**
1669 @description 1709 @description
1670 - districtDo */  
1671 - districtDo: DistrictDo; 1710 + request */
  1711 + request: CommonAuditRequest;
1672 }; 1712 };
1673 } 1713 }
1674 1714
1675 -/** @description response type for postDistrictSelectBelongAndLevel */  
1676 -export interface PostDistrictSelectBelongAndLevelResponse { 1715 +/** @description response type for postCommonAudit */
  1716 +export interface PostCommonAuditResponse {
1677 /** 1717 /**
1678 * @description 1718 * @description
1679 * OK 1719 * OK
@@ -1701,25 +1741,24 @@ export interface PostDistrictSelectBelongAndLevelResponse { @@ -1701,25 +1741,24 @@ export interface PostDistrictSelectBelongAndLevelResponse {
1701 404: any; 1741 404: any;
1702 } 1742 }
1703 1743
1704 -export type PostDistrictSelectBelongAndLevelResponseSuccess =  
1705 - PostDistrictSelectBelongAndLevelResponse[200]; 1744 +export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200];
1706 /** 1745 /**
1707 * @description 1746 * @description
1708 - * 根据父级和等级进行筛选  
1709 - * @tags order-district-controller 1747 + * audit
  1748 + * @tags common-controller
1710 * @produces * 1749 * @produces *
1711 * @consumes application/json 1750 * @consumes application/json
1712 */ 1751 */
1713 -export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() => { 1752 +export const postCommonAudit = /* #__PURE__ */ (() => {
1714 const method = 'post'; 1753 const method = 'post';
1715 - const url = '/district/selectBelongAndLevel'; 1754 + const url = '/common/audit';
1716 function request( 1755 function request(
1717 - option: PostDistrictSelectBelongAndLevelOption,  
1718 - ): Promise<PostDistrictSelectBelongAndLevelResponseSuccess> { 1756 + option: PostCommonAuditOption,
  1757 + ): Promise<PostCommonAuditResponseSuccess> {
1719 return requester(request.url, { 1758 return requester(request.url, {
1720 method: request.method, 1759 method: request.method,
1721 ...option, 1760 ...option,
1722 - }) as unknown as Promise<PostDistrictSelectBelongAndLevelResponseSuccess>; 1761 + }) as unknown as Promise<PostCommonAuditResponseSuccess>;
1723 } 1762 }
1724 1763
1725 /** http method */ 1764 /** http method */
@@ -1729,22 +1768,22 @@ export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() =&gt; { @@ -1729,22 +1768,22 @@ export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() =&gt; {
1729 return request; 1768 return request;
1730 })(); 1769 })();
1731 1770
1732 -/** @description request parameter type for postDistrictSelectBelongByName */  
1733 -export interface PostDistrictSelectBelongByNameOption { 1771 +/** @description request parameter type for postDistrictAddOrderAndProvince */
  1772 +export interface PostDistrictAddOrderAndProvinceOption {
1734 /** 1773 /**
1735 * @description 1774 * @description
1736 - * district 1775 + * orderMainProDo
1737 */ 1776 */
1738 body: { 1777 body: {
1739 /** 1778 /**
1740 @description 1779 @description
1741 - district */  
1742 - district: string; 1780 + orderMainProDo */
  1781 + orderMainProDo: OrderMainProDo;
1743 }; 1782 };
1744 } 1783 }
1745 1784
1746 -/** @description response type for postDistrictSelectBelongByName */  
1747 -export interface PostDistrictSelectBelongByNameResponse { 1785 +/** @description response type for postDistrictAddOrderAndProvince */
  1786 +export interface PostDistrictAddOrderAndProvinceResponse {
1748 /** 1787 /**
1749 * @description 1788 * @description
1750 * OK 1789 * OK
@@ -1772,25 +1811,25 @@ export interface PostDistrictSelectBelongByNameResponse { @@ -1772,25 +1811,25 @@ export interface PostDistrictSelectBelongByNameResponse {
1772 404: any; 1811 404: any;
1773 } 1812 }
1774 1813
1775 -export type PostDistrictSelectBelongByNameResponseSuccess =  
1776 - PostDistrictSelectBelongByNameResponse[200]; 1814 +export type PostDistrictAddOrderAndProvinceResponseSuccess =
  1815 + PostDistrictAddOrderAndProvinceResponse[200];
1777 /** 1816 /**
1778 * @description 1817 * @description
1779 - * 根据父级名字进行筛选 1818 + * 添加到订单省市区关系表
1780 * @tags order-district-controller 1819 * @tags order-district-controller
1781 * @produces * 1820 * @produces *
1782 * @consumes application/json 1821 * @consumes application/json
1783 */ 1822 */
1784 -export const postDistrictSelectBelongByName = /* #__PURE__ */ (() => { 1823 +export const postDistrictAddOrderAndProvince = /* #__PURE__ */ (() => {
1785 const method = 'post'; 1824 const method = 'post';
1786 - const url = '/district/selectBelongByName'; 1825 + const url = '/district/addOrderAndProvince';
1787 function request( 1826 function request(
1788 - option: PostDistrictSelectBelongByNameOption,  
1789 - ): Promise<PostDistrictSelectBelongByNameResponseSuccess> { 1827 + option: PostDistrictAddOrderAndProvinceOption,
  1828 + ): Promise<PostDistrictAddOrderAndProvinceResponseSuccess> {
1790 return requester(request.url, { 1829 return requester(request.url, {
1791 method: request.method, 1830 method: request.method,
1792 ...option, 1831 ...option,
1793 - }) as unknown as Promise<PostDistrictSelectBelongByNameResponseSuccess>; 1832 + }) as unknown as Promise<PostDistrictAddOrderAndProvinceResponseSuccess>;
1794 } 1833 }
1795 1834
1796 /** http method */ 1835 /** http method */
@@ -1800,22 +1839,22 @@ export const postDistrictSelectBelongByName = /* #__PURE__ */ (() =&gt; { @@ -1800,22 +1839,22 @@ export const postDistrictSelectBelongByName = /* #__PURE__ */ (() =&gt; {
1800 return request; 1839 return request;
1801 })(); 1840 })();
1802 1841
1803 -/** @description request parameter type for postDistrictSelectByLevel */  
1804 -export interface PostDistrictSelectByLevelOption { 1842 +/** @description request parameter type for postDistrictSelOrderProvince */
  1843 +export interface PostDistrictSelOrderProvinceOption {
1805 /** 1844 /**
1806 * @description 1845 * @description
1807 - * level 1846 + * oId
1808 */ 1847 */
1809 body: { 1848 body: {
1810 /** 1849 /**
1811 @description 1850 @description
1812 - level */  
1813 - level: number; 1851 + oId */
  1852 + oId: number;
1814 }; 1853 };
1815 } 1854 }
1816 1855
1817 -/** @description response type for postDistrictSelectByLevel */  
1818 -export interface PostDistrictSelectByLevelResponse { 1856 +/** @description response type for postDistrictSelOrderProvince */
  1857 +export interface PostDistrictSelOrderProvinceResponse {
1819 /** 1858 /**
1820 * @description 1859 * @description
1821 * OK 1860 * OK
@@ -1843,25 +1882,25 @@ export interface PostDistrictSelectByLevelResponse { @@ -1843,25 +1882,25 @@ export interface PostDistrictSelectByLevelResponse {
1843 404: any; 1882 404: any;
1844 } 1883 }
1845 1884
1846 -export type PostDistrictSelectByLevelResponseSuccess =  
1847 - PostDistrictSelectByLevelResponse[200]; 1885 +export type PostDistrictSelOrderProvinceResponseSuccess =
  1886 + PostDistrictSelOrderProvinceResponse[200];
1848 /** 1887 /**
1849 * @description 1888 * @description
1850 - * 根据等级查询 1889 + * 查询订单的省市区
1851 * @tags order-district-controller 1890 * @tags order-district-controller
1852 * @produces * 1891 * @produces *
1853 * @consumes application/json 1892 * @consumes application/json
1854 */ 1893 */
1855 -export const postDistrictSelectByLevel = /* #__PURE__ */ (() => { 1894 +export const postDistrictSelOrderProvince = /* #__PURE__ */ (() => {
1856 const method = 'post'; 1895 const method = 'post';
1857 - const url = '/district/selectByLevel'; 1896 + const url = '/district/selOrderProvince';
1858 function request( 1897 function request(
1859 - option: PostDistrictSelectByLevelOption,  
1860 - ): Promise<PostDistrictSelectByLevelResponseSuccess> { 1898 + option: PostDistrictSelOrderProvinceOption,
  1899 + ): Promise<PostDistrictSelOrderProvinceResponseSuccess> {
1861 return requester(request.url, { 1900 return requester(request.url, {
1862 method: request.method, 1901 method: request.method,
1863 ...option, 1902 ...option,
1864 - }) as unknown as Promise<PostDistrictSelectByLevelResponseSuccess>; 1903 + }) as unknown as Promise<PostDistrictSelOrderProvinceResponseSuccess>;
1865 } 1904 }
1866 1905
1867 /** http method */ 1906 /** http method */
@@ -1871,15 +1910,13 @@ export const postDistrictSelectByLevel = /* #__PURE__ */ (() =&gt; { @@ -1871,15 +1910,13 @@ export const postDistrictSelectByLevel = /* #__PURE__ */ (() =&gt; {
1871 return request; 1910 return request;
1872 })(); 1911 })();
1873 1912
1874 -/** @description response type for getError */  
1875 -export interface GetErrorResponse { 1913 +/** @description response type for getDistrictSelectAll */
  1914 +export interface GetDistrictSelectAllResponse {
1876 /** 1915 /**
1877 * @description 1916 * @description
1878 * OK 1917 * OK
1879 */ 1918 */
1880 - 200: {  
1881 - [propertyName: string]: any;  
1882 - }; 1919 + 200: ServerResult;
1883 /** 1920 /**
1884 * @description 1921 * @description
1885 * Unauthorized 1922 * Unauthorized
@@ -1897,20 +1934,21 @@ export interface GetErrorResponse { @@ -1897,20 +1934,21 @@ export interface GetErrorResponse {
1897 404: any; 1934 404: any;
1898 } 1935 }
1899 1936
1900 -export type GetErrorResponseSuccess = GetErrorResponse[200]; 1937 +export type GetDistrictSelectAllResponseSuccess =
  1938 + GetDistrictSelectAllResponse[200];
1901 /** 1939 /**
1902 * @description 1940 * @description
1903 - * error  
1904 - * @tags basic-error-controller 1941 + * 查询全部
  1942 + * @tags order-district-controller
1905 * @produces * 1943 * @produces *
1906 */ 1944 */
1907 -export const getError = /* #__PURE__ */ (() => { 1945 +export const getDistrictSelectAll = /* #__PURE__ */ (() => {
1908 const method = 'get'; 1946 const method = 'get';
1909 - const url = '/error';  
1910 - function request(): Promise<GetErrorResponseSuccess> { 1947 + const url = '/district/selectAll';
  1948 + function request(): Promise<GetDistrictSelectAllResponseSuccess> {
1911 return requester(request.url, { 1949 return requester(request.url, {
1912 method: request.method, 1950 method: request.method,
1913 - }) as unknown as Promise<GetErrorResponseSuccess>; 1951 + }) as unknown as Promise<GetDistrictSelectAllResponseSuccess>;
1914 } 1952 }
1915 1953
1916 /** http method */ 1954 /** http method */
@@ -1920,15 +1958,27 @@ export const getError = /* #__PURE__ */ (() =&gt; { @@ -1920,15 +1958,27 @@ export const getError = /* #__PURE__ */ (() =&gt; {
1920 return request; 1958 return request;
1921 })(); 1959 })();
1922 1960
1923 -/** @description response type for putError */  
1924 -export interface PutErrorResponse { 1961 +/** @description request parameter type for postDistrictSelectBelong */
  1962 +export interface PostDistrictSelectBelongOption {
1925 /** 1963 /**
1926 * @description 1964 * @description
1927 - * OK 1965 + * pid
1928 */ 1966 */
1929 - 200: {  
1930 - [propertyName: string]: any; 1967 + body: {
  1968 + /**
  1969 + @description
  1970 + pid */
  1971 + pid: number;
1931 }; 1972 };
  1973 +}
  1974 +
  1975 +/** @description response type for postDistrictSelectBelong */
  1976 +export interface PostDistrictSelectBelongResponse {
  1977 + /**
  1978 + * @description
  1979 + * OK
  1980 + */
  1981 + 200: ServerResult;
1932 /** 1982 /**
1933 * @description 1983 * @description
1934 * Created 1984 * Created
@@ -1951,21 +2001,25 @@ export interface PutErrorResponse { @@ -1951,21 +2001,25 @@ export interface PutErrorResponse {
1951 404: any; 2001 404: any;
1952 } 2002 }
1953 2003
1954 -export type PutErrorResponseSuccess = PutErrorResponse[200]; 2004 +export type PostDistrictSelectBelongResponseSuccess =
  2005 + PostDistrictSelectBelongResponse[200];
1955 /** 2006 /**
1956 * @description 2007 * @description
1957 - * error  
1958 - * @tags basic-error-controller 2008 + * 根据父级进行筛选
  2009 + * @tags order-district-controller
1959 * @produces * 2010 * @produces *
1960 * @consumes application/json 2011 * @consumes application/json
1961 */ 2012 */
1962 -export const putError = /* #__PURE__ */ (() => {  
1963 - const method = 'put';  
1964 - const url = '/error';  
1965 - function request(): Promise<PutErrorResponseSuccess> { 2013 +export const postDistrictSelectBelong = /* #__PURE__ */ (() => {
  2014 + const method = 'post';
  2015 + const url = '/district/selectBelong';
  2016 + function request(
  2017 + option: PostDistrictSelectBelongOption,
  2018 + ): Promise<PostDistrictSelectBelongResponseSuccess> {
1966 return requester(request.url, { 2019 return requester(request.url, {
1967 method: request.method, 2020 method: request.method,
1968 - }) as unknown as Promise<PutErrorResponseSuccess>; 2021 + ...option,
  2022 + }) as unknown as Promise<PostDistrictSelectBelongResponseSuccess>;
1969 } 2023 }
1970 2024
1971 /** http method */ 2025 /** http method */
@@ -1975,15 +2029,27 @@ export const putError = /* #__PURE__ */ (() =&gt; { @@ -1975,15 +2029,27 @@ export const putError = /* #__PURE__ */ (() =&gt; {
1975 return request; 2029 return request;
1976 })(); 2030 })();
1977 2031
1978 -/** @description response type for postError */  
1979 -export interface PostErrorResponse { 2032 +/** @description request parameter type for postDistrictSelectBelongAndLevel */
  2033 +export interface PostDistrictSelectBelongAndLevelOption {
1980 /** 2034 /**
1981 * @description 2035 * @description
1982 - * OK 2036 + * districtDo
1983 */ 2037 */
1984 - 200: {  
1985 - [propertyName: string]: any; 2038 + body: {
  2039 + /**
  2040 + @description
  2041 + districtDo */
  2042 + districtDo: DistrictDo;
1986 }; 2043 };
  2044 +}
  2045 +
  2046 +/** @description response type for postDistrictSelectBelongAndLevel */
  2047 +export interface PostDistrictSelectBelongAndLevelResponse {
  2048 + /**
  2049 + * @description
  2050 + * OK
  2051 + */
  2052 + 200: ServerResult;
1987 /** 2053 /**
1988 * @description 2054 * @description
1989 * Created 2055 * Created
@@ -2006,21 +2072,25 @@ export interface PostErrorResponse { @@ -2006,21 +2072,25 @@ export interface PostErrorResponse {
2006 404: any; 2072 404: any;
2007 } 2073 }
2008 2074
2009 -export type PostErrorResponseSuccess = PostErrorResponse[200]; 2075 +export type PostDistrictSelectBelongAndLevelResponseSuccess =
  2076 + PostDistrictSelectBelongAndLevelResponse[200];
2010 /** 2077 /**
2011 * @description 2078 * @description
2012 - * error  
2013 - * @tags basic-error-controller 2079 + * 根据父级和等级进行筛选
  2080 + * @tags order-district-controller
2014 * @produces * 2081 * @produces *
2015 * @consumes application/json 2082 * @consumes application/json
2016 */ 2083 */
2017 -export const postError = /* #__PURE__ */ (() => { 2084 +export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() => {
2018 const method = 'post'; 2085 const method = 'post';
2019 - const url = '/error';  
2020 - function request(): Promise<PostErrorResponseSuccess> { 2086 + const url = '/district/selectBelongAndLevel';
  2087 + function request(
  2088 + option: PostDistrictSelectBelongAndLevelOption,
  2089 + ): Promise<PostDistrictSelectBelongAndLevelResponseSuccess> {
2021 return requester(request.url, { 2090 return requester(request.url, {
2022 method: request.method, 2091 method: request.method,
2023 - }) as unknown as Promise<PostErrorResponseSuccess>; 2092 + ...option,
  2093 + }) as unknown as Promise<PostDistrictSelectBelongAndLevelResponseSuccess>;
2024 } 2094 }
2025 2095
2026 /** http method */ 2096 /** http method */
@@ -2030,20 +2100,873 @@ export const postError = /* #__PURE__ */ (() =&gt; { @@ -2030,20 +2100,873 @@ export const postError = /* #__PURE__ */ (() =&gt; {
2030 return request; 2100 return request;
2031 })(); 2101 })();
2032 2102
2033 -/** @description response type for deleteError */  
2034 -export interface DeleteErrorResponse { 2103 +/** @description request parameter type for postDistrictSelectBelongByName */
  2104 +export interface PostDistrictSelectBelongByNameOption {
2035 /** 2105 /**
2036 * @description 2106 * @description
2037 - * OK 2107 + * district
2038 */ 2108 */
2039 - 200: {  
2040 - [propertyName: string]: any;  
2041 - };  
2042 - /**  
2043 - * @description 2109 + body: {
  2110 + /**
  2111 + @description
  2112 + district */
  2113 + district: string;
  2114 + };
  2115 +}
  2116 +
  2117 +/** @description response type for postDistrictSelectBelongByName */
  2118 +export interface PostDistrictSelectBelongByNameResponse {
  2119 + /**
  2120 + * @description
  2121 + * OK
  2122 + */
  2123 + 200: ServerResult;
  2124 + /**
  2125 + * @description
  2126 + * Created
  2127 + */
  2128 + 201: any;
  2129 + /**
  2130 + * @description
  2131 + * Unauthorized
  2132 + */
  2133 + 401: any;
  2134 + /**
  2135 + * @description
  2136 + * Forbidden
  2137 + */
  2138 + 403: any;
  2139 + /**
  2140 + * @description
  2141 + * Not Found
  2142 + */
  2143 + 404: any;
  2144 +}
  2145 +
  2146 +export type PostDistrictSelectBelongByNameResponseSuccess =
  2147 + PostDistrictSelectBelongByNameResponse[200];
  2148 +/**
  2149 + * @description
  2150 + * 根据父级名字进行筛选
  2151 + * @tags order-district-controller
  2152 + * @produces *
  2153 + * @consumes application/json
  2154 + */
  2155 +export const postDistrictSelectBelongByName = /* #__PURE__ */ (() => {
  2156 + const method = 'post';
  2157 + const url = '/district/selectBelongByName';
  2158 + function request(
  2159 + option: PostDistrictSelectBelongByNameOption,
  2160 + ): Promise<PostDistrictSelectBelongByNameResponseSuccess> {
  2161 + return requester(request.url, {
  2162 + method: request.method,
  2163 + ...option,
  2164 + }) as unknown as Promise<PostDistrictSelectBelongByNameResponseSuccess>;
  2165 + }
  2166 +
  2167 + /** http method */
  2168 + request.method = method;
  2169 + /** request url */
  2170 + request.url = url;
  2171 + return request;
  2172 +})();
  2173 +
  2174 +/** @description request parameter type for postDistrictSelectByLevel */
  2175 +export interface PostDistrictSelectByLevelOption {
  2176 + /**
  2177 + * @description
  2178 + * level
  2179 + */
  2180 + body: {
  2181 + /**
  2182 + @description
  2183 + level */
  2184 + level: number;
  2185 + };
  2186 +}
  2187 +
  2188 +/** @description response type for postDistrictSelectByLevel */
  2189 +export interface PostDistrictSelectByLevelResponse {
  2190 + /**
  2191 + * @description
  2192 + * OK
  2193 + */
  2194 + 200: ServerResult;
  2195 + /**
  2196 + * @description
  2197 + * Created
  2198 + */
  2199 + 201: any;
  2200 + /**
  2201 + * @description
  2202 + * Unauthorized
  2203 + */
  2204 + 401: any;
  2205 + /**
  2206 + * @description
  2207 + * Forbidden
  2208 + */
  2209 + 403: any;
  2210 + /**
  2211 + * @description
  2212 + * Not Found
  2213 + */
  2214 + 404: any;
  2215 +}
  2216 +
  2217 +export type PostDistrictSelectByLevelResponseSuccess =
  2218 + PostDistrictSelectByLevelResponse[200];
  2219 +/**
  2220 + * @description
  2221 + * 根据等级查询
  2222 + * @tags order-district-controller
  2223 + * @produces *
  2224 + * @consumes application/json
  2225 + */
  2226 +export const postDistrictSelectByLevel = /* #__PURE__ */ (() => {
  2227 + const method = 'post';
  2228 + const url = '/district/selectByLevel';
  2229 + function request(
  2230 + option: PostDistrictSelectByLevelOption,
  2231 + ): Promise<PostDistrictSelectByLevelResponseSuccess> {
  2232 + return requester(request.url, {
  2233 + method: request.method,
  2234 + ...option,
  2235 + }) as unknown as Promise<PostDistrictSelectByLevelResponseSuccess>;
  2236 + }
  2237 +
  2238 + /** http method */
  2239 + request.method = method;
  2240 + /** request url */
  2241 + request.url = url;
  2242 + return request;
  2243 +})();
  2244 +
  2245 +/** @description request parameter type for postDistrictSelectByNameAndLevel */
  2246 +export interface PostDistrictSelectByNameAndLevelOption {
  2247 + /**
  2248 + * @description
  2249 + * districtSearchDo
  2250 + */
  2251 + body: {
  2252 + /**
  2253 + @description
  2254 + districtSearchDo */
  2255 + districtSearchDo: DistrictSearchDo;
  2256 + };
  2257 +}
  2258 +
  2259 +/** @description response type for postDistrictSelectByNameAndLevel */
  2260 +export interface PostDistrictSelectByNameAndLevelResponse {
  2261 + /**
  2262 + * @description
  2263 + * OK
  2264 + */
  2265 + 200: ServerResult;
  2266 + /**
  2267 + * @description
  2268 + * Created
  2269 + */
  2270 + 201: any;
  2271 + /**
  2272 + * @description
  2273 + * Unauthorized
  2274 + */
  2275 + 401: any;
  2276 + /**
  2277 + * @description
  2278 + * Forbidden
  2279 + */
  2280 + 403: any;
  2281 + /**
  2282 + * @description
  2283 + * Not Found
  2284 + */
  2285 + 404: any;
  2286 +}
  2287 +
  2288 +export type PostDistrictSelectByNameAndLevelResponseSuccess =
  2289 + PostDistrictSelectByNameAndLevelResponse[200];
  2290 +/**
  2291 + * @description
  2292 + * 根据名字和级别进行筛选
  2293 + * @tags order-district-controller
  2294 + * @produces *
  2295 + * @consumes application/json
  2296 + */
  2297 +export const postDistrictSelectByNameAndLevel = /* #__PURE__ */ (() => {
  2298 + const method = 'post';
  2299 + const url = '/district/selectByNameAndLevel';
  2300 + function request(
  2301 + option: PostDistrictSelectByNameAndLevelOption,
  2302 + ): Promise<PostDistrictSelectByNameAndLevelResponseSuccess> {
  2303 + return requester(request.url, {
  2304 + method: request.method,
  2305 + ...option,
  2306 + }) as unknown as Promise<PostDistrictSelectByNameAndLevelResponseSuccess>;
  2307 + }
  2308 +
  2309 + /** http method */
  2310 + request.method = method;
  2311 + /** request url */
  2312 + request.url = url;
  2313 + return request;
  2314 +})();
  2315 +
  2316 +/** @description response type for getError */
  2317 +export interface GetErrorResponse {
  2318 + /**
  2319 + * @description
  2320 + * OK
  2321 + */
  2322 + 200: ModelAndView;
  2323 + /**
  2324 + * @description
  2325 + * Unauthorized
  2326 + */
  2327 + 401: any;
  2328 + /**
  2329 + * @description
  2330 + * Forbidden
  2331 + */
  2332 + 403: any;
  2333 + /**
  2334 + * @description
  2335 + * Not Found
  2336 + */
  2337 + 404: any;
  2338 +}
  2339 +
  2340 +export type GetErrorResponseSuccess = GetErrorResponse[200];
  2341 +/**
  2342 + * @description
  2343 + * errorHtml
  2344 + * @tags basic-error-controller
  2345 + * @produces text/html
  2346 + */
  2347 +export const getError = /* #__PURE__ */ (() => {
  2348 + const method = 'get';
  2349 + const url = '/error';
  2350 + function request(): Promise<GetErrorResponseSuccess> {
  2351 + return requester(request.url, {
  2352 + method: request.method,
  2353 + }) as unknown as Promise<GetErrorResponseSuccess>;
  2354 + }
  2355 +
  2356 + /** http method */
  2357 + request.method = method;
  2358 + /** request url */
  2359 + request.url = url;
  2360 + return request;
  2361 +})();
  2362 +
  2363 +/** @description response type for putError */
  2364 +export interface PutErrorResponse {
  2365 + /**
  2366 + * @description
  2367 + * OK
  2368 + */
  2369 + 200: ModelAndView;
  2370 + /**
  2371 + * @description
  2372 + * Created
  2373 + */
  2374 + 201: any;
  2375 + /**
  2376 + * @description
  2377 + * Unauthorized
  2378 + */
  2379 + 401: any;
  2380 + /**
  2381 + * @description
  2382 + * Forbidden
  2383 + */
  2384 + 403: any;
  2385 + /**
  2386 + * @description
  2387 + * Not Found
  2388 + */
  2389 + 404: any;
  2390 +}
  2391 +
  2392 +export type PutErrorResponseSuccess = PutErrorResponse[200];
  2393 +/**
  2394 + * @description
  2395 + * errorHtml
  2396 + * @tags basic-error-controller
  2397 + * @produces text/html
  2398 + * @consumes application/json
  2399 + */
  2400 +export const putError = /* #__PURE__ */ (() => {
  2401 + const method = 'put';
  2402 + const url = '/error';
  2403 + function request(): Promise<PutErrorResponseSuccess> {
  2404 + return requester(request.url, {
  2405 + method: request.method,
  2406 + }) as unknown as Promise<PutErrorResponseSuccess>;
  2407 + }
  2408 +
  2409 + /** http method */
  2410 + request.method = method;
  2411 + /** request url */
  2412 + request.url = url;
  2413 + return request;
  2414 +})();
  2415 +
  2416 +/** @description response type for postError */
  2417 +export interface PostErrorResponse {
  2418 + /**
  2419 + * @description
  2420 + * OK
  2421 + */
  2422 + 200: ModelAndView;
  2423 + /**
  2424 + * @description
  2425 + * Created
  2426 + */
  2427 + 201: any;
  2428 + /**
  2429 + * @description
  2430 + * Unauthorized
  2431 + */
  2432 + 401: any;
  2433 + /**
  2434 + * @description
  2435 + * Forbidden
  2436 + */
  2437 + 403: any;
  2438 + /**
  2439 + * @description
  2440 + * Not Found
  2441 + */
  2442 + 404: any;
  2443 +}
  2444 +
  2445 +export type PostErrorResponseSuccess = PostErrorResponse[200];
  2446 +/**
  2447 + * @description
  2448 + * errorHtml
  2449 + * @tags basic-error-controller
  2450 + * @produces text/html
  2451 + * @consumes application/json
  2452 + */
  2453 +export const postError = /* #__PURE__ */ (() => {
  2454 + const method = 'post';
  2455 + const url = '/error';
  2456 + function request(): Promise<PostErrorResponseSuccess> {
  2457 + return requester(request.url, {
  2458 + method: request.method,
  2459 + }) as unknown as Promise<PostErrorResponseSuccess>;
  2460 + }
  2461 +
  2462 + /** http method */
  2463 + request.method = method;
  2464 + /** request url */
  2465 + request.url = url;
  2466 + return request;
  2467 +})();
  2468 +
  2469 +/** @description response type for deleteError */
  2470 +export interface DeleteErrorResponse {
  2471 + /**
  2472 + * @description
  2473 + * OK
  2474 + */
  2475 + 200: ModelAndView;
  2476 + /**
  2477 + * @description
  2478 + * No Content
  2479 + */
  2480 + 204: any;
  2481 + /**
  2482 + * @description
  2483 + * Unauthorized
  2484 + */
  2485 + 401: any;
  2486 + /**
  2487 + * @description
  2488 + * Forbidden
  2489 + */
  2490 + 403: any;
  2491 +}
  2492 +
  2493 +export type DeleteErrorResponseSuccess = DeleteErrorResponse[200];
  2494 +/**
  2495 + * @description
  2496 + * errorHtml
  2497 + * @tags basic-error-controller
  2498 + * @produces text/html
  2499 + */
  2500 +export const deleteError = /* #__PURE__ */ (() => {
  2501 + const method = 'delete';
  2502 + const url = '/error';
  2503 + function request(): Promise<DeleteErrorResponseSuccess> {
  2504 + return requester(request.url, {
  2505 + method: request.method,
  2506 + }) as unknown as Promise<DeleteErrorResponseSuccess>;
  2507 + }
  2508 +
  2509 + /** http method */
  2510 + request.method = method;
  2511 + /** request url */
  2512 + request.url = url;
  2513 + return request;
  2514 +})();
  2515 +
  2516 +/** @description response type for optionsError */
  2517 +export interface OptionsErrorResponse {
  2518 + /**
  2519 + * @description
  2520 + * OK
  2521 + */
  2522 + 200: ModelAndView;
  2523 + /**
  2524 + * @description
  2525 + * No Content
  2526 + */
  2527 + 204: any;
  2528 + /**
  2529 + * @description
  2530 + * Unauthorized
  2531 + */
  2532 + 401: any;
  2533 + /**
  2534 + * @description
  2535 + * Forbidden
  2536 + */
  2537 + 403: any;
  2538 +}
  2539 +
  2540 +export type OptionsErrorResponseSuccess = OptionsErrorResponse[200];
  2541 +/**
  2542 + * @description
  2543 + * errorHtml
  2544 + * @tags basic-error-controller
  2545 + * @produces text/html
  2546 + * @consumes application/json
  2547 + */
  2548 +export const optionsError = /* #__PURE__ */ (() => {
  2549 + const method = 'options';
  2550 + const url = '/error';
  2551 + function request(): Promise<OptionsErrorResponseSuccess> {
  2552 + return requester(request.url, {
  2553 + method: request.method,
  2554 + }) as unknown as Promise<OptionsErrorResponseSuccess>;
  2555 + }
  2556 +
  2557 + /** http method */
  2558 + request.method = method;
  2559 + /** request url */
  2560 + request.url = url;
  2561 + return request;
  2562 +})();
  2563 +
  2564 +/** @description response type for headError */
  2565 +export interface HeadErrorResponse {
  2566 + /**
  2567 + * @description
  2568 + * OK
  2569 + */
  2570 + 200: ModelAndView;
  2571 + /**
  2572 + * @description
  2573 + * No Content
  2574 + */
  2575 + 204: any;
  2576 + /**
  2577 + * @description
  2578 + * Unauthorized
  2579 + */
  2580 + 401: any;
  2581 + /**
  2582 + * @description
  2583 + * Forbidden
  2584 + */
  2585 + 403: any;
  2586 +}
  2587 +
  2588 +export type HeadErrorResponseSuccess = HeadErrorResponse[200];
  2589 +/**
  2590 + * @description
  2591 + * errorHtml
  2592 + * @tags basic-error-controller
  2593 + * @produces text/html
  2594 + * @consumes application/json
  2595 + */
  2596 +export const headError = /* #__PURE__ */ (() => {
  2597 + const method = 'head';
  2598 + const url = '/error';
  2599 + function request(): Promise<HeadErrorResponseSuccess> {
  2600 + return requester(request.url, {
  2601 + method: request.method,
  2602 + }) as unknown as Promise<HeadErrorResponseSuccess>;
  2603 + }
  2604 +
  2605 + /** http method */
  2606 + request.method = method;
  2607 + /** request url */
  2608 + request.url = url;
  2609 + return request;
  2610 +})();
  2611 +
  2612 +/** @description response type for patchError */
  2613 +export interface PatchErrorResponse {
  2614 + /**
  2615 + * @description
  2616 + * OK
  2617 + */
  2618 + 200: ModelAndView;
  2619 + /**
  2620 + * @description
2044 * No Content 2621 * No Content
2045 */ 2622 */
2046 - 204: any; 2623 + 204: any;
  2624 + /**
  2625 + * @description
  2626 + * Unauthorized
  2627 + */
  2628 + 401: any;
  2629 + /**
  2630 + * @description
  2631 + * Forbidden
  2632 + */
  2633 + 403: any;
  2634 +}
  2635 +
  2636 +export type PatchErrorResponseSuccess = PatchErrorResponse[200];
  2637 +/**
  2638 + * @description
  2639 + * errorHtml
  2640 + * @tags basic-error-controller
  2641 + * @produces text/html
  2642 + * @consumes application/json
  2643 + */
  2644 +export const patchError = /* #__PURE__ */ (() => {
  2645 + const method = 'patch';
  2646 + const url = '/error';
  2647 + function request(): Promise<PatchErrorResponseSuccess> {
  2648 + return requester(request.url, {
  2649 + method: request.method,
  2650 + }) as unknown as Promise<PatchErrorResponseSuccess>;
  2651 + }
  2652 +
  2653 + /** http method */
  2654 + request.method = method;
  2655 + /** request url */
  2656 + request.url = url;
  2657 + return request;
  2658 +})();
  2659 +
  2660 +/** @description request parameter type for postKingdeeRepCustomer */
  2661 +export interface PostKingdeeRepCustomerOption {
  2662 + /**
  2663 + * @description
  2664 + * req
  2665 + */
  2666 + body: {
  2667 + /**
  2668 + @description
  2669 + req */
  2670 + req: CustomerCustomerListReq;
  2671 + };
  2672 +}
  2673 +
  2674 +/** @description response type for postKingdeeRepCustomer */
  2675 +export interface PostKingdeeRepCustomerResponse {
  2676 + /**
  2677 + * @description
  2678 + * OK
  2679 + */
  2680 + 200: CustomerListRes;
  2681 + /**
  2682 + * @description
  2683 + * Created
  2684 + */
  2685 + 201: any;
  2686 + /**
  2687 + * @description
  2688 + * Unauthorized
  2689 + */
  2690 + 401: any;
  2691 + /**
  2692 + * @description
  2693 + * Forbidden
  2694 + */
  2695 + 403: any;
  2696 + /**
  2697 + * @description
  2698 + * Not Found
  2699 + */
  2700 + 404: any;
  2701 +}
  2702 +
  2703 +export type PostKingdeeRepCustomerResponseSuccess =
  2704 + PostKingdeeRepCustomerResponse[200];
  2705 +/**
  2706 + * @description
  2707 + * listCustomers
  2708 + * @tags kingdee-erp-controller
  2709 + * @produces *
  2710 + * @consumes application/json
  2711 + */
  2712 +export const postKingdeeRepCustomer = /* #__PURE__ */ (() => {
  2713 + const method = 'post';
  2714 + const url = '/kingdee/rep/customer';
  2715 + function request(
  2716 + option: PostKingdeeRepCustomerOption,
  2717 + ): Promise<PostKingdeeRepCustomerResponseSuccess> {
  2718 + return requester(request.url, {
  2719 + method: request.method,
  2720 + ...option,
  2721 + }) as unknown as Promise<PostKingdeeRepCustomerResponseSuccess>;
  2722 + }
  2723 +
  2724 + /** http method */
  2725 + request.method = method;
  2726 + /** request url */
  2727 + request.url = url;
  2728 + return request;
  2729 +})();
  2730 +
  2731 +/** @description request parameter type for postKingdeeRepCustomerDetail */
  2732 +export interface PostKingdeeRepCustomerDetailOption {
  2733 + /**
  2734 + * @description
  2735 + * dto
  2736 + */
  2737 + body: {
  2738 + /**
  2739 + @description
  2740 + dto */
  2741 + dto: CustomerDetailDto;
  2742 + };
  2743 +}
  2744 +
  2745 +/** @description response type for postKingdeeRepCustomerDetail */
  2746 +export interface PostKingdeeRepCustomerDetailResponse {
  2747 + /**
  2748 + * @description
  2749 + * OK
  2750 + */
  2751 + 200: CustomerDetailRes;
  2752 + /**
  2753 + * @description
  2754 + * Created
  2755 + */
  2756 + 201: any;
  2757 + /**
  2758 + * @description
  2759 + * Unauthorized
  2760 + */
  2761 + 401: any;
  2762 + /**
  2763 + * @description
  2764 + * Forbidden
  2765 + */
  2766 + 403: any;
  2767 + /**
  2768 + * @description
  2769 + * Not Found
  2770 + */
  2771 + 404: any;
  2772 +}
  2773 +
  2774 +export type PostKingdeeRepCustomerDetailResponseSuccess =
  2775 + PostKingdeeRepCustomerDetailResponse[200];
  2776 +/**
  2777 + * @description
  2778 + * getCustomerDetail
  2779 + * @tags kingdee-erp-controller
  2780 + * @produces *
  2781 + * @consumes application/json
  2782 + */
  2783 +export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() => {
  2784 + const method = 'post';
  2785 + const url = '/kingdee/rep/customerDetail';
  2786 + function request(
  2787 + option: PostKingdeeRepCustomerDetailOption,
  2788 + ): Promise<PostKingdeeRepCustomerDetailResponseSuccess> {
  2789 + return requester(request.url, {
  2790 + method: request.method,
  2791 + ...option,
  2792 + }) as unknown as Promise<PostKingdeeRepCustomerDetailResponseSuccess>;
  2793 + }
  2794 +
  2795 + /** http method */
  2796 + request.method = method;
  2797 + /** request url */
  2798 + request.url = url;
  2799 + return request;
  2800 +})();
  2801 +
  2802 +/** @description request parameter type for postKingdeeRepCustomerSave */
  2803 +export interface PostKingdeeRepCustomerSaveOption {
  2804 + /**
  2805 + * @description
  2806 + * req
  2807 + */
  2808 + body: {
  2809 + /**
  2810 + @description
  2811 + req */
  2812 + req: CustomerSaveReq;
  2813 + };
  2814 +}
  2815 +
  2816 +/** @description response type for postKingdeeRepCustomerSave */
  2817 +export interface PostKingdeeRepCustomerSaveResponse {
  2818 + /**
  2819 + * @description
  2820 + * OK
  2821 + */
  2822 + 200: SaveReply;
  2823 + /**
  2824 + * @description
  2825 + * Created
  2826 + */
  2827 + 201: any;
  2828 + /**
  2829 + * @description
  2830 + * Unauthorized
  2831 + */
  2832 + 401: any;
  2833 + /**
  2834 + * @description
  2835 + * Forbidden
  2836 + */
  2837 + 403: any;
  2838 + /**
  2839 + * @description
  2840 + * Not Found
  2841 + */
  2842 + 404: any;
  2843 +}
  2844 +
  2845 +export type PostKingdeeRepCustomerSaveResponseSuccess =
  2846 + PostKingdeeRepCustomerSaveResponse[200];
  2847 +/**
  2848 + * @description
  2849 + * customerSave
  2850 + * @tags kingdee-erp-controller
  2851 + * @produces *
  2852 + * @consumes application/json
  2853 + */
  2854 +export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() => {
  2855 + const method = 'post';
  2856 + const url = '/kingdee/rep/customerSave';
  2857 + function request(
  2858 + option: PostKingdeeRepCustomerSaveOption,
  2859 + ): Promise<PostKingdeeRepCustomerSaveResponseSuccess> {
  2860 + return requester(request.url, {
  2861 + method: request.method,
  2862 + ...option,
  2863 + }) as unknown as Promise<PostKingdeeRepCustomerSaveResponseSuccess>;
  2864 + }
  2865 +
  2866 + /** http method */
  2867 + request.method = method;
  2868 + /** request url */
  2869 + request.url = url;
  2870 + return request;
  2871 +})();
  2872 +
  2873 +/** @description request parameter type for postKingdeeRepMaterial */
  2874 +export interface PostKingdeeRepMaterialOption {
  2875 + /**
  2876 + * @description
  2877 + * req
  2878 + */
  2879 + body: {
  2880 + /**
  2881 + @description
  2882 + req */
  2883 + req: MaterialMaterialListReq;
  2884 + };
  2885 +}
  2886 +
  2887 +/** @description response type for postKingdeeRepMaterial */
  2888 +export interface PostKingdeeRepMaterialResponse {
  2889 + /**
  2890 + * @description
  2891 + * OK
  2892 + */
  2893 + 200: MaterialListReply;
  2894 + /**
  2895 + * @description
  2896 + * Created
  2897 + */
  2898 + 201: any;
  2899 + /**
  2900 + * @description
  2901 + * Unauthorized
  2902 + */
  2903 + 401: any;
  2904 + /**
  2905 + * @description
  2906 + * Forbidden
  2907 + */
  2908 + 403: any;
  2909 + /**
  2910 + * @description
  2911 + * Not Found
  2912 + */
  2913 + 404: any;
  2914 +}
  2915 +
  2916 +export type PostKingdeeRepMaterialResponseSuccess =
  2917 + PostKingdeeRepMaterialResponse[200];
  2918 +/**
  2919 + * @description
  2920 + * listMaterial
  2921 + * @tags kingdee-erp-controller
  2922 + * @produces *
  2923 + * @consumes application/json
  2924 + */
  2925 +export const postKingdeeRepMaterial = /* #__PURE__ */ (() => {
  2926 + const method = 'post';
  2927 + const url = '/kingdee/rep/material';
  2928 + function request(
  2929 + option: PostKingdeeRepMaterialOption,
  2930 + ): Promise<PostKingdeeRepMaterialResponseSuccess> {
  2931 + return requester(request.url, {
  2932 + method: request.method,
  2933 + ...option,
  2934 + }) as unknown as Promise<PostKingdeeRepMaterialResponseSuccess>;
  2935 + }
  2936 +
  2937 + /** http method */
  2938 + request.method = method;
  2939 + /** request url */
  2940 + request.url = url;
  2941 + return request;
  2942 +})();
  2943 +
  2944 +/** @description request parameter type for postKingdeeRepMaterialStock */
  2945 +export interface PostKingdeeRepMaterialStockOption {
  2946 + /**
  2947 + * @description
  2948 + * req
  2949 + */
  2950 + body: {
  2951 + /**
  2952 + @description
  2953 + req */
  2954 + req: InventoryMaterialStockReq;
  2955 + };
  2956 +}
  2957 +
  2958 +/** @description response type for postKingdeeRepMaterialStock */
  2959 +export interface PostKingdeeRepMaterialStockResponse {
  2960 + /**
  2961 + * @description
  2962 + * OK
  2963 + */
  2964 + 200: MaterialStockRes;
  2965 + /**
  2966 + * @description
  2967 + * Created
  2968 + */
  2969 + 201: any;
2047 /** 2970 /**
2048 * @description 2971 * @description
2049 * Unauthorized 2972 * Unauthorized
@@ -2054,22 +2977,245 @@ export interface DeleteErrorResponse { @@ -2054,22 +2977,245 @@ export interface DeleteErrorResponse {
2054 * Forbidden 2977 * Forbidden
2055 */ 2978 */
2056 403: any; 2979 403: any;
  2980 + /**
  2981 + * @description
  2982 + * Not Found
  2983 + */
  2984 + 404: any;
2057 } 2985 }
2058 2986
2059 -export type DeleteErrorResponseSuccess = DeleteErrorResponse[200]; 2987 +export type PostKingdeeRepMaterialStockResponseSuccess =
  2988 + PostKingdeeRepMaterialStockResponse[200];
  2989 +/**
  2990 + * @description
  2991 + * listMaterialStock
  2992 + * @tags kingdee-erp-controller
  2993 + * @produces *
  2994 + * @consumes application/json
  2995 + */
  2996 +export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() => {
  2997 + const method = 'post';
  2998 + const url = '/kingdee/rep/materialStock';
  2999 + function request(
  3000 + option: PostKingdeeRepMaterialStockOption,
  3001 + ): Promise<PostKingdeeRepMaterialStockResponseSuccess> {
  3002 + return requester(request.url, {
  3003 + method: request.method,
  3004 + ...option,
  3005 + }) as unknown as Promise<PostKingdeeRepMaterialStockResponseSuccess>;
  3006 + }
  3007 +
  3008 + /** http method */
  3009 + request.method = method;
  3010 + /** request url */
  3011 + request.url = url;
  3012 + return request;
  3013 +})();
  3014 +
  3015 +/** @description request parameter type for postKingdeeRepMaterialUnit */
  3016 +export interface PostKingdeeRepMaterialUnitOption {
  3017 + /**
  3018 + * @description
  3019 + * req
  3020 + */
  3021 + body: {
  3022 + /**
  3023 + @description
  3024 + req */
  3025 + req: UnitMaterialUnitListReq;
  3026 + };
  3027 +}
  3028 +
  3029 +/** @description response type for postKingdeeRepMaterialUnit */
  3030 +export interface PostKingdeeRepMaterialUnitResponse {
  3031 + /**
  3032 + * @description
  3033 + * OK
  3034 + */
  3035 + 200: MaterialUnitListRes;
  3036 + /**
  3037 + * @description
  3038 + * Created
  3039 + */
  3040 + 201: any;
  3041 + /**
  3042 + * @description
  3043 + * Unauthorized
  3044 + */
  3045 + 401: any;
  3046 + /**
  3047 + * @description
  3048 + * Forbidden
  3049 + */
  3050 + 403: any;
  3051 + /**
  3052 + * @description
  3053 + * Not Found
  3054 + */
  3055 + 404: any;
  3056 +}
  3057 +
  3058 +export type PostKingdeeRepMaterialUnitResponseSuccess =
  3059 + PostKingdeeRepMaterialUnitResponse[200];
  3060 +/**
  3061 + * @description
  3062 + * getMaterialDetail
  3063 + * @tags kingdee-erp-controller
  3064 + * @produces *
  3065 + * @consumes application/json
  3066 + */
  3067 +export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() => {
  3068 + const method = 'post';
  3069 + const url = '/kingdee/rep/materialUnit';
  3070 + function request(
  3071 + option: PostKingdeeRepMaterialUnitOption,
  3072 + ): Promise<PostKingdeeRepMaterialUnitResponseSuccess> {
  3073 + return requester(request.url, {
  3074 + method: request.method,
  3075 + ...option,
  3076 + }) as unknown as Promise<PostKingdeeRepMaterialUnitResponseSuccess>;
  3077 + }
  3078 +
  3079 + /** http method */
  3080 + request.method = method;
  3081 + /** request url */
  3082 + request.url = url;
  3083 + return request;
  3084 +})();
  3085 +
  3086 +/** @description request parameter type for postKingdeeRepMeasureUnit */
  3087 +export interface PostKingdeeRepMeasureUnitOption {
  3088 + /**
  3089 + * @description
  3090 + * req
  3091 + */
  3092 + body: {
  3093 + /**
  3094 + @description
  3095 + req */
  3096 + req: UnitMeasureUnitListReq;
  3097 + };
  3098 +}
  3099 +
  3100 +/** @description response type for postKingdeeRepMeasureUnit */
  3101 +export interface PostKingdeeRepMeasureUnitResponse {
  3102 + /**
  3103 + * @description
  3104 + * OK
  3105 + */
  3106 + 200: MeasureUnitListRes;
  3107 + /**
  3108 + * @description
  3109 + * Created
  3110 + */
  3111 + 201: any;
  3112 + /**
  3113 + * @description
  3114 + * Unauthorized
  3115 + */
  3116 + 401: any;
  3117 + /**
  3118 + * @description
  3119 + * Forbidden
  3120 + */
  3121 + 403: any;
  3122 + /**
  3123 + * @description
  3124 + * Not Found
  3125 + */
  3126 + 404: any;
  3127 +}
  3128 +
  3129 +export type PostKingdeeRepMeasureUnitResponseSuccess =
  3130 + PostKingdeeRepMeasureUnitResponse[200];
  3131 +/**
  3132 + * @description
  3133 + * getCustomerDetail
  3134 + * @tags kingdee-erp-controller
  3135 + * @produces *
  3136 + * @consumes application/json
  3137 + */
  3138 +export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() => {
  3139 + const method = 'post';
  3140 + const url = '/kingdee/rep/measureUnit';
  3141 + function request(
  3142 + option: PostKingdeeRepMeasureUnitOption,
  3143 + ): Promise<PostKingdeeRepMeasureUnitResponseSuccess> {
  3144 + return requester(request.url, {
  3145 + method: request.method,
  3146 + ...option,
  3147 + }) as unknown as Promise<PostKingdeeRepMeasureUnitResponseSuccess>;
  3148 + }
  3149 +
  3150 + /** http method */
  3151 + request.method = method;
  3152 + /** request url */
  3153 + request.url = url;
  3154 + return request;
  3155 +})();
  3156 +
  3157 +/** @description request parameter type for postKingdeeRepSalBillOutbound */
  3158 +export interface PostKingdeeRepSalBillOutboundOption {
  3159 + /**
  3160 + * @description
  3161 + * salOrderSaveDto
  3162 + */
  3163 + body: {
  3164 + /**
  3165 + @description
  3166 + salOrderSaveDto */
  3167 + salOrderSaveDto: SalOrderSaveDto;
  3168 + };
  3169 +}
  3170 +
  3171 +/** @description response type for postKingdeeRepSalBillOutbound */
  3172 +export interface PostKingdeeRepSalBillOutboundResponse {
  3173 + /**
  3174 + * @description
  3175 + * OK
  3176 + */
  3177 + 200: ServerResult;
  3178 + /**
  3179 + * @description
  3180 + * Created
  3181 + */
  3182 + 201: any;
  3183 + /**
  3184 + * @description
  3185 + * Unauthorized
  3186 + */
  3187 + 401: any;
  3188 + /**
  3189 + * @description
  3190 + * Forbidden
  3191 + */
  3192 + 403: any;
  3193 + /**
  3194 + * @description
  3195 + * Not Found
  3196 + */
  3197 + 404: any;
  3198 +}
  3199 +
  3200 +export type PostKingdeeRepSalBillOutboundResponseSuccess =
  3201 + PostKingdeeRepSalBillOutboundResponse[200];
2060 /** 3202 /**
2061 * @description 3203 * @description
2062 - * error  
2063 - * @tags basic-error-controller 3204 + * salBillOutbound
  3205 + * @tags kingdee-erp-controller
2064 * @produces * 3206 * @produces *
  3207 + * @consumes application/json
2065 */ 3208 */
2066 -export const deleteError = /* #__PURE__ */ (() => {  
2067 - const method = 'delete';  
2068 - const url = '/error';  
2069 - function request(): Promise<DeleteErrorResponseSuccess> { 3209 +export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() => {
  3210 + const method = 'post';
  3211 + const url = '/kingdee/rep/salBillOutbound';
  3212 + function request(
  3213 + option: PostKingdeeRepSalBillOutboundOption,
  3214 + ): Promise<PostKingdeeRepSalBillOutboundResponseSuccess> {
2070 return requester(request.url, { 3215 return requester(request.url, {
2071 method: request.method, 3216 method: request.method,
2072 - }) as unknown as Promise<DeleteErrorResponseSuccess>; 3217 + ...option,
  3218 + }) as unknown as Promise<PostKingdeeRepSalBillOutboundResponseSuccess>;
2073 } 3219 }
2074 3220
2075 /** http method */ 3221 /** http method */
@@ -2079,20 +3225,32 @@ export const deleteError = /* #__PURE__ */ (() =&gt; { @@ -2079,20 +3225,32 @@ export const deleteError = /* #__PURE__ */ (() =&gt; {
2079 return request; 3225 return request;
2080 })(); 3226 })();
2081 3227
2082 -/** @description response type for optionsError */  
2083 -export interface OptionsErrorResponse { 3228 +/** @description request parameter type for postKingdeeRepSalOrderSave */
  3229 +export interface PostKingdeeRepSalOrderSaveOption {
2084 /** 3230 /**
2085 * @description 3231 * @description
2086 - * OK 3232 + * salOrderSaveDto
2087 */ 3233 */
2088 - 200: {  
2089 - [propertyName: string]: any; 3234 + body: {
  3235 + /**
  3236 + @description
  3237 + salOrderSaveDto */
  3238 + salOrderSaveDto: SalOrderSaveDto;
2090 }; 3239 };
  3240 +}
  3241 +
  3242 +/** @description response type for postKingdeeRepSalOrderSave */
  3243 +export interface PostKingdeeRepSalOrderSaveResponse {
2091 /** 3244 /**
2092 * @description 3245 * @description
2093 - * No Content 3246 + * OK
2094 */ 3247 */
2095 - 204: any; 3248 + 200: ServerResult;
  3249 + /**
  3250 + * @description
  3251 + * Created
  3252 + */
  3253 + 201: any;
2096 /** 3254 /**
2097 * @description 3255 * @description
2098 * Unauthorized 3256 * Unauthorized
@@ -2103,23 +3261,32 @@ export interface OptionsErrorResponse { @@ -2103,23 +3261,32 @@ export interface OptionsErrorResponse {
2103 * Forbidden 3261 * Forbidden
2104 */ 3262 */
2105 403: any; 3263 403: any;
  3264 + /**
  3265 + * @description
  3266 + * Not Found
  3267 + */
  3268 + 404: any;
2106 } 3269 }
2107 3270
2108 -export type OptionsErrorResponseSuccess = OptionsErrorResponse[200]; 3271 +export type PostKingdeeRepSalOrderSaveResponseSuccess =
  3272 + PostKingdeeRepSalOrderSaveResponse[200];
2109 /** 3273 /**
2110 * @description 3274 * @description
2111 - * error  
2112 - * @tags basic-error-controller 3275 + * salOrderSave
  3276 + * @tags kingdee-erp-controller
2113 * @produces * 3277 * @produces *
2114 * @consumes application/json 3278 * @consumes application/json
2115 */ 3279 */
2116 -export const optionsError = /* #__PURE__ */ (() => {  
2117 - const method = 'options';  
2118 - const url = '/error';  
2119 - function request(): Promise<OptionsErrorResponseSuccess> { 3280 +export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() => {
  3281 + const method = 'post';
  3282 + const url = '/kingdee/rep/salOrderSave';
  3283 + function request(
  3284 + option: PostKingdeeRepSalOrderSaveOption,
  3285 + ): Promise<PostKingdeeRepSalOrderSaveResponseSuccess> {
2120 return requester(request.url, { 3286 return requester(request.url, {
2121 method: request.method, 3287 method: request.method,
2122 - }) as unknown as Promise<OptionsErrorResponseSuccess>; 3288 + ...option,
  3289 + }) as unknown as Promise<PostKingdeeRepSalOrderSaveResponseSuccess>;
2123 } 3290 }
2124 3291
2125 /** http method */ 3292 /** http method */
@@ -2129,20 +3296,32 @@ export const optionsError = /* #__PURE__ */ (() =&gt; { @@ -2129,20 +3296,32 @@ export const optionsError = /* #__PURE__ */ (() =&gt; {
2129 return request; 3296 return request;
2130 })(); 3297 })();
2131 3298
2132 -/** @description response type for headError */  
2133 -export interface HeadErrorResponse { 3299 +/** @description request parameter type for postKingdeeRepSystemCustomField */
  3300 +export interface PostKingdeeRepSystemCustomFieldOption {
2134 /** 3301 /**
2135 * @description 3302 * @description
2136 - * OK 3303 + * req
2137 */ 3304 */
2138 - 200: {  
2139 - [propertyName: string]: any; 3305 + body: {
  3306 + /**
  3307 + @description
  3308 + req */
  3309 + req: SystemCustomFieldReq;
2140 }; 3310 };
  3311 +}
  3312 +
  3313 +/** @description response type for postKingdeeRepSystemCustomField */
  3314 +export interface PostKingdeeRepSystemCustomFieldResponse {
2141 /** 3315 /**
2142 * @description 3316 * @description
2143 - * No Content 3317 + * OK
2144 */ 3318 */
2145 - 204: any; 3319 + 200: CustomFieldRes;
  3320 + /**
  3321 + * @description
  3322 + * Created
  3323 + */
  3324 + 201: any;
2146 /** 3325 /**
2147 * @description 3326 * @description
2148 * Unauthorized 3327 * Unauthorized
@@ -2153,23 +3332,32 @@ export interface HeadErrorResponse { @@ -2153,23 +3332,32 @@ export interface HeadErrorResponse {
2153 * Forbidden 3332 * Forbidden
2154 */ 3333 */
2155 403: any; 3334 403: any;
  3335 + /**
  3336 + * @description
  3337 + * Not Found
  3338 + */
  3339 + 404: any;
2156 } 3340 }
2157 3341
2158 -export type HeadErrorResponseSuccess = HeadErrorResponse[200]; 3342 +export type PostKingdeeRepSystemCustomFieldResponseSuccess =
  3343 + PostKingdeeRepSystemCustomFieldResponse[200];
2159 /** 3344 /**
2160 * @description 3345 * @description
2161 - * error  
2162 - * @tags basic-error-controller 3346 + * listCustomFields
  3347 + * @tags kingdee-erp-controller
2163 * @produces * 3348 * @produces *
2164 * @consumes application/json 3349 * @consumes application/json
2165 */ 3350 */
2166 -export const headError = /* #__PURE__ */ (() => {  
2167 - const method = 'head';  
2168 - const url = '/error';  
2169 - function request(): Promise<HeadErrorResponseSuccess> { 3351 +export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() => {
  3352 + const method = 'post';
  3353 + const url = '/kingdee/rep/systemCustomField';
  3354 + function request(
  3355 + option: PostKingdeeRepSystemCustomFieldOption,
  3356 + ): Promise<PostKingdeeRepSystemCustomFieldResponseSuccess> {
2170 return requester(request.url, { 3357 return requester(request.url, {
2171 method: request.method, 3358 method: request.method,
2172 - }) as unknown as Promise<HeadErrorResponseSuccess>; 3359 + ...option,
  3360 + }) as unknown as Promise<PostKingdeeRepSystemCustomFieldResponseSuccess>;
2173 } 3361 }
2174 3362
2175 /** http method */ 3363 /** http method */
@@ -2179,20 +3367,32 @@ export const headError = /* #__PURE__ */ (() =&gt; { @@ -2179,20 +3367,32 @@ export const headError = /* #__PURE__ */ (() =&gt; {
2179 return request; 3367 return request;
2180 })(); 3368 })();
2181 3369
2182 -/** @description response type for patchError */  
2183 -export interface PatchErrorResponse { 3370 +/** @description request parameter type for postOfficialWebsiteUploadAliOss */
  3371 +export interface PostOfficialWebsiteUploadAliOssOption {
2184 /** 3372 /**
2185 * @description 3373 * @description
2186 - * OK 3374 + * files
2187 */ 3375 */
2188 - 200: {  
2189 - [propertyName: string]: any; 3376 + formData: {
  3377 + /**
  3378 + @description
  3379 + files */
  3380 + files: Array<File>;
2190 }; 3381 };
  3382 +}
  3383 +
  3384 +/** @description response type for postOfficialWebsiteUploadAliOss */
  3385 +export interface PostOfficialWebsiteUploadAliOssResponse {
2191 /** 3386 /**
2192 * @description 3387 * @description
2193 - * No Content 3388 + * OK
2194 */ 3389 */
2195 - 204: any; 3390 + 200: ServerResult;
  3391 + /**
  3392 + * @description
  3393 + * Created
  3394 + */
  3395 + 201: any;
2196 /** 3396 /**
2197 * @description 3397 * @description
2198 * Unauthorized 3398 * Unauthorized
@@ -2203,23 +3403,32 @@ export interface PatchErrorResponse { @@ -2203,23 +3403,32 @@ export interface PatchErrorResponse {
2203 * Forbidden 3403 * Forbidden
2204 */ 3404 */
2205 403: any; 3405 403: any;
  3406 + /**
  3407 + * @description
  3408 + * Not Found
  3409 + */
  3410 + 404: any;
2206 } 3411 }
2207 3412
2208 -export type PatchErrorResponseSuccess = PatchErrorResponse[200]; 3413 +export type PostOfficialWebsiteUploadAliOssResponseSuccess =
  3414 + PostOfficialWebsiteUploadAliOssResponse[200];
2209 /** 3415 /**
2210 * @description 3416 * @description
2211 - * error  
2212 - * @tags basic-error-controller 3417 + * 为官网提供上传文件的接口
  3418 + * @tags 官网
2213 * @produces * 3419 * @produces *
2214 * @consumes application/json 3420 * @consumes application/json
2215 */ 3421 */
2216 -export const patchError = /* #__PURE__ */ (() => {  
2217 - const method = 'patch';  
2218 - const url = '/error';  
2219 - function request(): Promise<PatchErrorResponseSuccess> { 3422 +export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() => {
  3423 + const method = 'post';
  3424 + const url = '/official/website/uploadAliOss';
  3425 + function request(
  3426 + option: PostOfficialWebsiteUploadAliOssOption,
  3427 + ): Promise<PostOfficialWebsiteUploadAliOssResponseSuccess> {
2220 return requester(request.url, { 3428 return requester(request.url, {
2221 method: request.method, 3429 method: request.method,
2222 - }) as unknown as Promise<PatchErrorResponseSuccess>; 3430 + ...option,
  3431 + }) as unknown as Promise<PostOfficialWebsiteUploadAliOssResponseSuccess>;
2223 } 3432 }
2224 3433
2225 /** http method */ 3434 /** http method */
@@ -2229,27 +3438,27 @@ export const patchError = /* #__PURE__ */ (() =&gt; { @@ -2229,27 +3438,27 @@ export const patchError = /* #__PURE__ */ (() =&gt; {
2229 return request; 3438 return request;
2230 })(); 3439 })();
2231 3440
2232 -/** @description request parameter type for postKingdeeRepCustomer */  
2233 -export interface PostKingdeeRepCustomerOption { 3441 +/** @description request parameter type for postOrderErpApplyList */
  3442 +export interface PostOrderErpApplyListOption {
2234 /** 3443 /**
2235 * @description 3444 * @description
2236 - * req 3445 + * orderFieldLockApplyQueryVO
2237 */ 3446 */
2238 body: { 3447 body: {
2239 /** 3448 /**
2240 @description 3449 @description
2241 - req */  
2242 - req: CustomerCustomerListReq; 3450 + orderFieldLockApplyQueryVO */
  3451 + orderFieldLockApplyQueryVO: OrderFieldLockApplyQueryVO;
2243 }; 3452 };
2244 } 3453 }
2245 3454
2246 -/** @description response type for postKingdeeRepCustomer */  
2247 -export interface PostKingdeeRepCustomerResponse { 3455 +/** @description response type for postOrderErpApplyList */
  3456 +export interface PostOrderErpApplyListResponse {
2248 /** 3457 /**
2249 * @description 3458 * @description
2250 * OK 3459 * OK
2251 */ 3460 */
2252 - 200: CustomerListRes; 3461 + 200: ServerResult;
2253 /** 3462 /**
2254 * @description 3463 * @description
2255 * Created 3464 * Created
@@ -2272,25 +3481,25 @@ export interface PostKingdeeRepCustomerResponse { @@ -2272,25 +3481,25 @@ export interface PostKingdeeRepCustomerResponse {
2272 404: any; 3481 404: any;
2273 } 3482 }
2274 3483
2275 -export type PostKingdeeRepCustomerResponseSuccess =  
2276 - PostKingdeeRepCustomerResponse[200]; 3484 +export type PostOrderErpApplyListResponseSuccess =
  3485 + PostOrderErpApplyListResponse[200];
2277 /** 3486 /**
2278 * @description 3487 * @description
2279 - * listCustomers  
2280 - * @tags kingdee-erp-controller 3488 + * 分页查询
  3489 + * @tags 用户订单-字段锁定申请(忽略)
2281 * @produces * 3490 * @produces *
2282 * @consumes application/json 3491 * @consumes application/json
2283 */ 3492 */
2284 -export const postKingdeeRepCustomer = /* #__PURE__ */ (() => { 3493 +export const postOrderErpApplyList = /* #__PURE__ */ (() => {
2285 const method = 'post'; 3494 const method = 'post';
2286 - const url = '/kingdee/rep/customer'; 3495 + const url = '/order/erp/apply/list';
2287 function request( 3496 function request(
2288 - option: PostKingdeeRepCustomerOption,  
2289 - ): Promise<PostKingdeeRepCustomerResponseSuccess> { 3497 + option: PostOrderErpApplyListOption,
  3498 + ): Promise<PostOrderErpApplyListResponseSuccess> {
2290 return requester(request.url, { 3499 return requester(request.url, {
2291 method: request.method, 3500 method: request.method,
2292 ...option, 3501 ...option,
2293 - }) as unknown as Promise<PostKingdeeRepCustomerResponseSuccess>; 3502 + }) as unknown as Promise<PostOrderErpApplyListResponseSuccess>;
2294 } 3503 }
2295 3504
2296 /** http method */ 3505 /** http method */
@@ -2300,27 +3509,27 @@ export const postKingdeeRepCustomer = /* #__PURE__ */ (() =&gt; { @@ -2300,27 +3509,27 @@ export const postKingdeeRepCustomer = /* #__PURE__ */ (() =&gt; {
2300 return request; 3509 return request;
2301 })(); 3510 })();
2302 3511
2303 -/** @description request parameter type for postKingdeeRepCustomerDetail */  
2304 -export interface PostKingdeeRepCustomerDetailOption { 3512 +/** @description request parameter type for postOrderErpAuditAuditList */
  3513 +export interface PostOrderErpAuditAuditListOption {
2305 /** 3514 /**
2306 * @description 3515 * @description
2307 - * dto 3516 + * queryVO
2308 */ 3517 */
2309 body: { 3518 body: {
2310 /** 3519 /**
2311 @description 3520 @description
2312 - dto */  
2313 - dto: CustomerDetailDto; 3521 + queryVO */
  3522 + queryVO: OrderFieldLockApplyQueryVO;
2314 }; 3523 };
2315 } 3524 }
2316 3525
2317 -/** @description response type for postKingdeeRepCustomerDetail */  
2318 -export interface PostKingdeeRepCustomerDetailResponse { 3526 +/** @description response type for postOrderErpAuditAuditList */
  3527 +export interface PostOrderErpAuditAuditListResponse {
2319 /** 3528 /**
2320 * @description 3529 * @description
2321 * OK 3530 * OK
2322 */ 3531 */
2323 - 200: CustomerDetailRes; 3532 + 200: ServerResult;
2324 /** 3533 /**
2325 * @description 3534 * @description
2326 * Created 3535 * Created
@@ -2343,25 +3552,25 @@ export interface PostKingdeeRepCustomerDetailResponse { @@ -2343,25 +3552,25 @@ export interface PostKingdeeRepCustomerDetailResponse {
2343 404: any; 3552 404: any;
2344 } 3553 }
2345 3554
2346 -export type PostKingdeeRepCustomerDetailResponseSuccess =  
2347 - PostKingdeeRepCustomerDetailResponse[200]; 3555 +export type PostOrderErpAuditAuditListResponseSuccess =
  3556 + PostOrderErpAuditAuditListResponse[200];
2348 /** 3557 /**
2349 * @description 3558 * @description
2350 - * getCustomerDetail  
2351 - * @tags kingdee-erp-controller 3559 + * 已审批列表
  3560 + * @tags 审批管理
2352 * @produces * 3561 * @produces *
2353 * @consumes application/json 3562 * @consumes application/json
2354 */ 3563 */
2355 -export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() => { 3564 +export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => {
2356 const method = 'post'; 3565 const method = 'post';
2357 - const url = '/kingdee/rep/customerDetail'; 3566 + const url = '/order/erp/audit/audit_list';
2358 function request( 3567 function request(
2359 - option: PostKingdeeRepCustomerDetailOption,  
2360 - ): Promise<PostKingdeeRepCustomerDetailResponseSuccess> { 3568 + option: PostOrderErpAuditAuditListOption,
  3569 + ): Promise<PostOrderErpAuditAuditListResponseSuccess> {
2361 return requester(request.url, { 3570 return requester(request.url, {
2362 method: request.method, 3571 method: request.method,
2363 ...option, 3572 ...option,
2364 - }) as unknown as Promise<PostKingdeeRepCustomerDetailResponseSuccess>; 3573 + }) as unknown as Promise<PostOrderErpAuditAuditListResponseSuccess>;
2365 } 3574 }
2366 3575
2367 /** http method */ 3576 /** http method */
@@ -2371,27 +3580,27 @@ export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() =&gt; { @@ -2371,27 +3580,27 @@ export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() =&gt; {
2371 return request; 3580 return request;
2372 })(); 3581 })();
2373 3582
2374 -/** @description request parameter type for postKingdeeRepCustomerSave */  
2375 -export interface PostKingdeeRepCustomerSaveOption { 3583 +/** @description request parameter type for postOrderErpAuditDoAudit */
  3584 +export interface PostOrderErpAuditDoAuditOption {
2376 /** 3585 /**
2377 * @description 3586 * @description
2378 - * req 3587 + * auditVO
2379 */ 3588 */
2380 body: { 3589 body: {
2381 /** 3590 /**
2382 @description 3591 @description
2383 - req */  
2384 - req: CustomerSaveReq; 3592 + auditVO */
  3593 + auditVO: AuditVO;
2385 }; 3594 };
2386 } 3595 }
2387 3596
2388 -/** @description response type for postKingdeeRepCustomerSave */  
2389 -export interface PostKingdeeRepCustomerSaveResponse { 3597 +/** @description response type for postOrderErpAuditDoAudit */
  3598 +export interface PostOrderErpAuditDoAuditResponse {
2390 /** 3599 /**
2391 * @description 3600 * @description
2392 * OK 3601 * OK
2393 */ 3602 */
2394 - 200: SaveReply; 3603 + 200: ServerResult;
2395 /** 3604 /**
2396 * @description 3605 * @description
2397 * Created 3606 * Created
@@ -2414,25 +3623,25 @@ export interface PostKingdeeRepCustomerSaveResponse { @@ -2414,25 +3623,25 @@ export interface PostKingdeeRepCustomerSaveResponse {
2414 404: any; 3623 404: any;
2415 } 3624 }
2416 3625
2417 -export type PostKingdeeRepCustomerSaveResponseSuccess =  
2418 - PostKingdeeRepCustomerSaveResponse[200]; 3626 +export type PostOrderErpAuditDoAuditResponseSuccess =
  3627 + PostOrderErpAuditDoAuditResponse[200];
2419 /** 3628 /**
2420 * @description 3629 * @description
2421 - * customerSave  
2422 - * @tags kingdee-erp-controller 3630 + * 审核
  3631 + * @tags 审批管理
2423 * @produces * 3632 * @produces *
2424 * @consumes application/json 3633 * @consumes application/json
2425 */ 3634 */
2426 -export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() => { 3635 +export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => {
2427 const method = 'post'; 3636 const method = 'post';
2428 - const url = '/kingdee/rep/customerSave'; 3637 + const url = '/order/erp/audit/do_audit';
2429 function request( 3638 function request(
2430 - option: PostKingdeeRepCustomerSaveOption,  
2431 - ): Promise<PostKingdeeRepCustomerSaveResponseSuccess> { 3639 + option: PostOrderErpAuditDoAuditOption,
  3640 + ): Promise<PostOrderErpAuditDoAuditResponseSuccess> {
2432 return requester(request.url, { 3641 return requester(request.url, {
2433 method: request.method, 3642 method: request.method,
2434 ...option, 3643 ...option,
2435 - }) as unknown as Promise<PostKingdeeRepCustomerSaveResponseSuccess>; 3644 + }) as unknown as Promise<PostOrderErpAuditDoAuditResponseSuccess>;
2436 } 3645 }
2437 3646
2438 /** http method */ 3647 /** http method */
@@ -2442,27 +3651,27 @@ export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() =&gt; { @@ -2442,27 +3651,27 @@ export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() =&gt; {
2442 return request; 3651 return request;
2443 })(); 3652 })();
2444 3653
2445 -/** @description request parameter type for postKingdeeRepMaterial */  
2446 -export interface PostKingdeeRepMaterialOption { 3654 +/** @description request parameter type for postOrderErpAuditListByPage */
  3655 +export interface PostOrderErpAuditListByPageOption {
2447 /** 3656 /**
2448 * @description 3657 * @description
2449 - * req 3658 + * queryVO
2450 */ 3659 */
2451 body: { 3660 body: {
2452 /** 3661 /**
2453 @description 3662 @description
2454 - req */  
2455 - req: MaterialMaterialListReq; 3663 + queryVO */
  3664 + queryVO: OrderFieldLockApplyQueryVO;
2456 }; 3665 };
2457 } 3666 }
2458 3667
2459 -/** @description response type for postKingdeeRepMaterial */  
2460 -export interface PostKingdeeRepMaterialResponse { 3668 +/** @description response type for postOrderErpAuditListByPage */
  3669 +export interface PostOrderErpAuditListByPageResponse {
2461 /** 3670 /**
2462 * @description 3671 * @description
2463 * OK 3672 * OK
2464 */ 3673 */
2465 - 200: MaterialListReply; 3674 + 200: ServerResult;
2466 /** 3675 /**
2467 * @description 3676 * @description
2468 * Created 3677 * Created
@@ -2485,25 +3694,25 @@ export interface PostKingdeeRepMaterialResponse { @@ -2485,25 +3694,25 @@ export interface PostKingdeeRepMaterialResponse {
2485 404: any; 3694 404: any;
2486 } 3695 }
2487 3696
2488 -export type PostKingdeeRepMaterialResponseSuccess =  
2489 - PostKingdeeRepMaterialResponse[200]; 3697 +export type PostOrderErpAuditListByPageResponseSuccess =
  3698 + PostOrderErpAuditListByPageResponse[200];
2490 /** 3699 /**
2491 * @description 3700 * @description
2492 - * listMaterial  
2493 - * @tags kingdee-erp-controller 3701 + * 分页查询
  3702 + * @tags 审批管理
2494 * @produces * 3703 * @produces *
2495 * @consumes application/json 3704 * @consumes application/json
2496 */ 3705 */
2497 -export const postKingdeeRepMaterial = /* #__PURE__ */ (() => { 3706 +export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => {
2498 const method = 'post'; 3707 const method = 'post';
2499 - const url = '/kingdee/rep/material'; 3708 + const url = '/order/erp/audit/list_by_page';
2500 function request( 3709 function request(
2501 - option: PostKingdeeRepMaterialOption,  
2502 - ): Promise<PostKingdeeRepMaterialResponseSuccess> { 3710 + option: PostOrderErpAuditListByPageOption,
  3711 + ): Promise<PostOrderErpAuditListByPageResponseSuccess> {
2503 return requester(request.url, { 3712 return requester(request.url, {
2504 method: request.method, 3713 method: request.method,
2505 ...option, 3714 ...option,
2506 - }) as unknown as Promise<PostKingdeeRepMaterialResponseSuccess>; 3715 + }) as unknown as Promise<PostOrderErpAuditListByPageResponseSuccess>;
2507 } 3716 }
2508 3717
2509 /** http method */ 3718 /** http method */
@@ -2513,27 +3722,27 @@ export const postKingdeeRepMaterial = /* #__PURE__ */ (() =&gt; { @@ -2513,27 +3722,27 @@ export const postKingdeeRepMaterial = /* #__PURE__ */ (() =&gt; {
2513 return request; 3722 return request;
2514 })(); 3723 })();
2515 3724
2516 -/** @description request parameter type for postKingdeeRepMaterialStock */  
2517 -export interface PostKingdeeRepMaterialStockOption { 3725 +/** @description request parameter type for postOrderErpAuditLogListByPage */
  3726 +export interface PostOrderErpAuditLogListByPageOption {
2518 /** 3727 /**
2519 * @description 3728 * @description
2520 - * req 3729 + * orderAuditLogQueryVO
2521 */ 3730 */
2522 body: { 3731 body: {
2523 /** 3732 /**
2524 @description 3733 @description
2525 - req */  
2526 - req: InventoryMaterialStockReq; 3734 + orderAuditLogQueryVO */
  3735 + orderAuditLogQueryVO: OrderAuditLogQueryVO;
2527 }; 3736 };
2528 } 3737 }
2529 3738
2530 -/** @description response type for postKingdeeRepMaterialStock */  
2531 -export interface PostKingdeeRepMaterialStockResponse { 3739 +/** @description response type for postOrderErpAuditLogListByPage */
  3740 +export interface PostOrderErpAuditLogListByPageResponse {
2532 /** 3741 /**
2533 * @description 3742 * @description
2534 * OK 3743 * OK
2535 */ 3744 */
2536 - 200: MaterialStockRes; 3745 + 200: ServerResult;
2537 /** 3746 /**
2538 * @description 3747 * @description
2539 * Created 3748 * Created
@@ -2556,25 +3765,25 @@ export interface PostKingdeeRepMaterialStockResponse { @@ -2556,25 +3765,25 @@ export interface PostKingdeeRepMaterialStockResponse {
2556 404: any; 3765 404: any;
2557 } 3766 }
2558 3767
2559 -export type PostKingdeeRepMaterialStockResponseSuccess =  
2560 - PostKingdeeRepMaterialStockResponse[200]; 3768 +export type PostOrderErpAuditLogListByPageResponseSuccess =
  3769 + PostOrderErpAuditLogListByPageResponse[200];
2561 /** 3770 /**
2562 * @description 3771 * @description
2563 - * listMaterialStock  
2564 - * @tags kingdee-erp-controller 3772 + * 分页查询
  3773 + * @tags 用户订单审批日志
2565 * @produces * 3774 * @produces *
2566 * @consumes application/json 3775 * @consumes application/json
2567 */ 3776 */
2568 -export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() => { 3777 +export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => {
2569 const method = 'post'; 3778 const method = 'post';
2570 - const url = '/kingdee/rep/materialStock'; 3779 + const url = '/order/erp/audit/log/list_by_page';
2571 function request( 3780 function request(
2572 - option: PostKingdeeRepMaterialStockOption,  
2573 - ): Promise<PostKingdeeRepMaterialStockResponseSuccess> { 3781 + option: PostOrderErpAuditLogListByPageOption,
  3782 + ): Promise<PostOrderErpAuditLogListByPageResponseSuccess> {
2574 return requester(request.url, { 3783 return requester(request.url, {
2575 method: request.method, 3784 method: request.method,
2576 ...option, 3785 ...option,
2577 - }) as unknown as Promise<PostKingdeeRepMaterialStockResponseSuccess>; 3786 + }) as unknown as Promise<PostOrderErpAuditLogListByPageResponseSuccess>;
2578 } 3787 }
2579 3788
2580 /** http method */ 3789 /** http method */
@@ -2584,27 +3793,27 @@ export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() =&gt; { @@ -2584,27 +3793,27 @@ export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() =&gt; {
2584 return request; 3793 return request;
2585 })(); 3794 })();
2586 3795
2587 -/** @description request parameter type for postKingdeeRepMaterialUnit */  
2588 -export interface PostKingdeeRepMaterialUnitOption { 3796 +/** @description request parameter type for postOrderErpAuditLogQueryById */
  3797 +export interface PostOrderErpAuditLogQueryByIdOption {
2589 /** 3798 /**
2590 * @description 3799 * @description
2591 - * req 3800 + * orderAuditLogQueryVO
2592 */ 3801 */
2593 body: { 3802 body: {
2594 /** 3803 /**
2595 @description 3804 @description
2596 - req */  
2597 - req: UnitMaterialUnitListReq; 3805 + orderAuditLogQueryVO */
  3806 + orderAuditLogQueryVO: OrderAuditLogQueryVO;
2598 }; 3807 };
2599 } 3808 }
2600 3809
2601 -/** @description response type for postKingdeeRepMaterialUnit */  
2602 -export interface PostKingdeeRepMaterialUnitResponse { 3810 +/** @description response type for postOrderErpAuditLogQueryById */
  3811 +export interface PostOrderErpAuditLogQueryByIdResponse {
2603 /** 3812 /**
2604 * @description 3813 * @description
2605 * OK 3814 * OK
2606 */ 3815 */
2607 - 200: MaterialUnitListRes; 3816 + 200: ServerResult;
2608 /** 3817 /**
2609 * @description 3818 * @description
2610 * Created 3819 * Created
@@ -2627,25 +3836,25 @@ export interface PostKingdeeRepMaterialUnitResponse { @@ -2627,25 +3836,25 @@ export interface PostKingdeeRepMaterialUnitResponse {
2627 404: any; 3836 404: any;
2628 } 3837 }
2629 3838
2630 -export type PostKingdeeRepMaterialUnitResponseSuccess =  
2631 - PostKingdeeRepMaterialUnitResponse[200]; 3839 +export type PostOrderErpAuditLogQueryByIdResponseSuccess =
  3840 + PostOrderErpAuditLogQueryByIdResponse[200];
2632 /** 3841 /**
2633 * @description 3842 * @description
2634 - * getMaterialDetail  
2635 - * @tags kingdee-erp-controller 3843 + * 通过主键查询单条数据
  3844 + * @tags 用户订单审批日志
2636 * @produces * 3845 * @produces *
2637 * @consumes application/json 3846 * @consumes application/json
2638 */ 3847 */
2639 -export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() => { 3848 +export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() => {
2640 const method = 'post'; 3849 const method = 'post';
2641 - const url = '/kingdee/rep/materialUnit'; 3850 + const url = '/order/erp/audit/log/query_by_id';
2642 function request( 3851 function request(
2643 - option: PostKingdeeRepMaterialUnitOption,  
2644 - ): Promise<PostKingdeeRepMaterialUnitResponseSuccess> { 3852 + option: PostOrderErpAuditLogQueryByIdOption,
  3853 + ): Promise<PostOrderErpAuditLogQueryByIdResponseSuccess> {
2645 return requester(request.url, { 3854 return requester(request.url, {
2646 method: request.method, 3855 method: request.method,
2647 ...option, 3856 ...option,
2648 - }) as unknown as Promise<PostKingdeeRepMaterialUnitResponseSuccess>; 3857 + }) as unknown as Promise<PostOrderErpAuditLogQueryByIdResponseSuccess>;
2649 } 3858 }
2650 3859
2651 /** http method */ 3860 /** http method */
@@ -2655,27 +3864,27 @@ export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() =&gt; { @@ -2655,27 +3864,27 @@ export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() =&gt; {
2655 return request; 3864 return request;
2656 })(); 3865 })();
2657 3866
2658 -/** @description request parameter type for postKingdeeRepMeasureUnit */  
2659 -export interface PostKingdeeRepMeasureUnitOption { 3867 +/** @description request parameter type for postOrderErpAuditWaitAuditList */
  3868 +export interface PostOrderErpAuditWaitAuditListOption {
2660 /** 3869 /**
2661 * @description 3870 * @description
2662 - * req 3871 + * queryVO
2663 */ 3872 */
2664 body: { 3873 body: {
2665 /** 3874 /**
2666 @description 3875 @description
2667 - req */  
2668 - req: UnitMeasureUnitListReq; 3876 + queryVO */
  3877 + queryVO: OrderFieldLockApplyQueryVO;
2669 }; 3878 };
2670 } 3879 }
2671 3880
2672 -/** @description response type for postKingdeeRepMeasureUnit */  
2673 -export interface PostKingdeeRepMeasureUnitResponse { 3881 +/** @description response type for postOrderErpAuditWaitAuditList */
  3882 +export interface PostOrderErpAuditWaitAuditListResponse {
2674 /** 3883 /**
2675 * @description 3884 * @description
2676 * OK 3885 * OK
2677 */ 3886 */
2678 - 200: MeasureUnitListRes; 3887 + 200: ServerResult;
2679 /** 3888 /**
2680 * @description 3889 * @description
2681 * Created 3890 * Created
@@ -2698,25 +3907,25 @@ export interface PostKingdeeRepMeasureUnitResponse { @@ -2698,25 +3907,25 @@ export interface PostKingdeeRepMeasureUnitResponse {
2698 404: any; 3907 404: any;
2699 } 3908 }
2700 3909
2701 -export type PostKingdeeRepMeasureUnitResponseSuccess =  
2702 - PostKingdeeRepMeasureUnitResponse[200]; 3910 +export type PostOrderErpAuditWaitAuditListResponseSuccess =
  3911 + PostOrderErpAuditWaitAuditListResponse[200];
2703 /** 3912 /**
2704 * @description 3913 * @description
2705 - * getCustomerDetail  
2706 - * @tags kingdee-erp-controller 3914 + * 待审批列表
  3915 + * @tags 审批管理
2707 * @produces * 3916 * @produces *
2708 * @consumes application/json 3917 * @consumes application/json
2709 */ 3918 */
2710 -export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() => { 3919 +export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() => {
2711 const method = 'post'; 3920 const method = 'post';
2712 - const url = '/kingdee/rep/measureUnit'; 3921 + const url = '/order/erp/audit/wait_audit_list';
2713 function request( 3922 function request(
2714 - option: PostKingdeeRepMeasureUnitOption,  
2715 - ): Promise<PostKingdeeRepMeasureUnitResponseSuccess> { 3923 + option: PostOrderErpAuditWaitAuditListOption,
  3924 + ): Promise<PostOrderErpAuditWaitAuditListResponseSuccess> {
2716 return requester(request.url, { 3925 return requester(request.url, {
2717 method: request.method, 3926 method: request.method,
2718 ...option, 3927 ...option,
2719 - }) as unknown as Promise<PostKingdeeRepMeasureUnitResponseSuccess>; 3928 + }) as unknown as Promise<PostOrderErpAuditWaitAuditListResponseSuccess>;
2720 } 3929 }
2721 3930
2722 /** http method */ 3931 /** http method */
@@ -2726,22 +3935,22 @@ export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() =&gt; { @@ -2726,22 +3935,22 @@ export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() =&gt; {
2726 return request; 3935 return request;
2727 })(); 3936 })();
2728 3937
2729 -/** @description request parameter type for postKingdeeRepSalBillOutbound */  
2730 -export interface PostKingdeeRepSalBillOutboundOption { 3938 +/** @description request parameter type for postOrderErpAuthLoginByPhone */
  3939 +export interface PostOrderErpAuthLoginByPhoneOption {
2731 /** 3940 /**
2732 * @description 3941 * @description
2733 - * salOrderSaveDto 3942 + * loginByPhoneVO
2734 */ 3943 */
2735 body: { 3944 body: {
2736 /** 3945 /**
2737 @description 3946 @description
2738 - salOrderSaveDto */  
2739 - salOrderSaveDto: SalOrderSaveDto; 3947 + loginByPhoneVO */
  3948 + loginByPhoneVO: AdminUserLoginByPhoneVO;
2740 }; 3949 };
2741 } 3950 }
2742 3951
2743 -/** @description response type for postKingdeeRepSalBillOutbound */  
2744 -export interface PostKingdeeRepSalBillOutboundResponse { 3952 +/** @description response type for postOrderErpAuthLoginByPhone */
  3953 +export interface PostOrderErpAuthLoginByPhoneResponse {
2745 /** 3954 /**
2746 * @description 3955 * @description
2747 * OK 3956 * OK
@@ -2769,25 +3978,25 @@ export interface PostKingdeeRepSalBillOutboundResponse { @@ -2769,25 +3978,25 @@ export interface PostKingdeeRepSalBillOutboundResponse {
2769 404: any; 3978 404: any;
2770 } 3979 }
2771 3980
2772 -export type PostKingdeeRepSalBillOutboundResponseSuccess =  
2773 - PostKingdeeRepSalBillOutboundResponse[200]; 3981 +export type PostOrderErpAuthLoginByPhoneResponseSuccess =
  3982 + PostOrderErpAuthLoginByPhoneResponse[200];
2774 /** 3983 /**
2775 * @description 3984 * @description
2776 - * salBillOutbound  
2777 - * @tags kingdee-erp-controller 3985 + * 手机登录
  3986 + * @tags login-controller
2778 * @produces * 3987 * @produces *
2779 * @consumes application/json 3988 * @consumes application/json
2780 */ 3989 */
2781 -export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() => { 3990 +export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => {
2782 const method = 'post'; 3991 const method = 'post';
2783 - const url = '/kingdee/rep/salBillOutbound'; 3992 + const url = '/order/erp/auth/login_by_phone';
2784 function request( 3993 function request(
2785 - option: PostKingdeeRepSalBillOutboundOption,  
2786 - ): Promise<PostKingdeeRepSalBillOutboundResponseSuccess> { 3994 + option: PostOrderErpAuthLoginByPhoneOption,
  3995 + ): Promise<PostOrderErpAuthLoginByPhoneResponseSuccess> {
2787 return requester(request.url, { 3996 return requester(request.url, {
2788 method: request.method, 3997 method: request.method,
2789 ...option, 3998 ...option,
2790 - }) as unknown as Promise<PostKingdeeRepSalBillOutboundResponseSuccess>; 3999 + }) as unknown as Promise<PostOrderErpAuthLoginByPhoneResponseSuccess>;
2791 } 4000 }
2792 4001
2793 /** http method */ 4002 /** http method */
@@ -2797,22 +4006,22 @@ export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() =&gt; { @@ -2797,22 +4006,22 @@ export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() =&gt; {
2797 return request; 4006 return request;
2798 })(); 4007 })();
2799 4008
2800 -/** @description request parameter type for postKingdeeRepSalOrderSave */  
2801 -export interface PostKingdeeRepSalOrderSaveOption { 4009 +/** @description request parameter type for postOrderErpAuthLoginByPwd */
  4010 +export interface PostOrderErpAuthLoginByPwdOption {
2802 /** 4011 /**
2803 * @description 4012 * @description
2804 - * salOrderSaveDto 4013 + * loginByPwdVO
2805 */ 4014 */
2806 body: { 4015 body: {
2807 /** 4016 /**
2808 @description 4017 @description
2809 - salOrderSaveDto */  
2810 - salOrderSaveDto: SalOrderSaveDto; 4018 + loginByPwdVO */
  4019 + loginByPwdVO: AdminUserLoginByPwdVO;
2811 }; 4020 };
2812 } 4021 }
2813 4022
2814 -/** @description response type for postKingdeeRepSalOrderSave */  
2815 -export interface PostKingdeeRepSalOrderSaveResponse { 4023 +/** @description response type for postOrderErpAuthLoginByPwd */
  4024 +export interface PostOrderErpAuthLoginByPwdResponse {
2816 /** 4025 /**
2817 * @description 4026 * @description
2818 * OK 4027 * OK
@@ -2840,25 +4049,25 @@ export interface PostKingdeeRepSalOrderSaveResponse { @@ -2840,25 +4049,25 @@ export interface PostKingdeeRepSalOrderSaveResponse {
2840 404: any; 4049 404: any;
2841 } 4050 }
2842 4051
2843 -export type PostKingdeeRepSalOrderSaveResponseSuccess =  
2844 - PostKingdeeRepSalOrderSaveResponse[200]; 4052 +export type PostOrderErpAuthLoginByPwdResponseSuccess =
  4053 + PostOrderErpAuthLoginByPwdResponse[200];
2845 /** 4054 /**
2846 * @description 4055 * @description
2847 - * salOrderSave  
2848 - * @tags kingdee-erp-controller 4056 + * 用户登录
  4057 + * @tags login-controller
2849 * @produces * 4058 * @produces *
2850 * @consumes application/json 4059 * @consumes application/json
2851 */ 4060 */
2852 -export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() => { 4061 +export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => {
2853 const method = 'post'; 4062 const method = 'post';
2854 - const url = '/kingdee/rep/salOrderSave'; 4063 + const url = '/order/erp/auth/login_by_pwd';
2855 function request( 4064 function request(
2856 - option: PostKingdeeRepSalOrderSaveOption,  
2857 - ): Promise<PostKingdeeRepSalOrderSaveResponseSuccess> { 4065 + option: PostOrderErpAuthLoginByPwdOption,
  4066 + ): Promise<PostOrderErpAuthLoginByPwdResponseSuccess> {
2858 return requester(request.url, { 4067 return requester(request.url, {
2859 method: request.method, 4068 method: request.method,
2860 ...option, 4069 ...option,
2861 - }) as unknown as Promise<PostKingdeeRepSalOrderSaveResponseSuccess>; 4070 + }) as unknown as Promise<PostOrderErpAuthLoginByPwdResponseSuccess>;
2862 } 4071 }
2863 4072
2864 /** http method */ 4073 /** http method */
@@ -2868,27 +4077,13 @@ export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() =&gt; { @@ -2868,27 +4077,13 @@ export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() =&gt; {
2868 return request; 4077 return request;
2869 })(); 4078 })();
2870 4079
2871 -/** @description request parameter type for postKingdeeRepSystemCustomField */  
2872 -export interface PostKingdeeRepSystemCustomFieldOption {  
2873 - /**  
2874 - * @description  
2875 - * req  
2876 - */  
2877 - body: {  
2878 - /**  
2879 - @description  
2880 - req */  
2881 - req: SystemCustomFieldReq;  
2882 - };  
2883 -}  
2884 -  
2885 -/** @description response type for postKingdeeRepSystemCustomField */  
2886 -export interface PostKingdeeRepSystemCustomFieldResponse { 4080 +/** @description response type for postOrderErpAuthLoginOut */
  4081 +export interface PostOrderErpAuthLoginOutResponse {
2887 /** 4082 /**
2888 * @description 4083 * @description
2889 * OK 4084 * OK
2890 */ 4085 */
2891 - 200: CustomFieldRes; 4086 + 200: ServerResult;
2892 /** 4087 /**
2893 * @description 4088 * @description
2894 * Created 4089 * Created
@@ -2911,25 +4106,22 @@ export interface PostKingdeeRepSystemCustomFieldResponse { @@ -2911,25 +4106,22 @@ export interface PostKingdeeRepSystemCustomFieldResponse {
2911 404: any; 4106 404: any;
2912 } 4107 }
2913 4108
2914 -export type PostKingdeeRepSystemCustomFieldResponseSuccess =  
2915 - PostKingdeeRepSystemCustomFieldResponse[200]; 4109 +export type PostOrderErpAuthLoginOutResponseSuccess =
  4110 + PostOrderErpAuthLoginOutResponse[200];
2916 /** 4111 /**
2917 * @description 4112 * @description
2918 - * listCustomFields  
2919 - * @tags kingdee-erp-controller 4113 + * 退出登录
  4114 + * @tags login-controller
2920 * @produces * 4115 * @produces *
2921 * @consumes application/json 4116 * @consumes application/json
2922 */ 4117 */
2923 -export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() => { 4118 +export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => {
2924 const method = 'post'; 4119 const method = 'post';
2925 - const url = '/kingdee/rep/systemCustomField';  
2926 - function request(  
2927 - option: PostKingdeeRepSystemCustomFieldOption,  
2928 - ): Promise<PostKingdeeRepSystemCustomFieldResponseSuccess> { 4120 + const url = '/order/erp/auth/login_out';
  4121 + function request(): Promise<PostOrderErpAuthLoginOutResponseSuccess> {
2929 return requester(request.url, { 4122 return requester(request.url, {
2930 method: request.method, 4123 method: request.method,
2931 - ...option,  
2932 - }) as unknown as Promise<PostKingdeeRepSystemCustomFieldResponseSuccess>; 4124 + }) as unknown as Promise<PostOrderErpAuthLoginOutResponseSuccess>;
2933 } 4125 }
2934 4126
2935 /** http method */ 4127 /** http method */
@@ -2939,22 +4131,22 @@ export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() =&gt; { @@ -2939,22 +4131,22 @@ export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() =&gt; {
2939 return request; 4131 return request;
2940 })(); 4132 })();
2941 4133
2942 -/** @description request parameter type for postOfficialWebsiteUploadAliOss */  
2943 -export interface PostOfficialWebsiteUploadAliOssOption { 4134 +/** @description request parameter type for postOrderErpAuthPasswordModify */
  4135 +export interface PostOrderErpAuthPasswordModifyOption {
2944 /** 4136 /**
2945 * @description 4137 * @description
2946 - * files 4138 + * modifyPwdVO
2947 */ 4139 */
2948 - formData: { 4140 + body: {
2949 /** 4141 /**
2950 @description 4142 @description
2951 - files */  
2952 - files: Array<File>; 4143 + modifyPwdVO */
  4144 + modifyPwdVO: AdminUserModifyPwdVO;
2953 }; 4145 };
2954 } 4146 }
2955 4147
2956 -/** @description response type for postOfficialWebsiteUploadAliOss */  
2957 -export interface PostOfficialWebsiteUploadAliOssResponse { 4148 +/** @description response type for postOrderErpAuthPasswordModify */
  4149 +export interface PostOrderErpAuthPasswordModifyResponse {
2958 /** 4150 /**
2959 * @description 4151 * @description
2960 * OK 4152 * OK
@@ -2982,25 +4174,25 @@ export interface PostOfficialWebsiteUploadAliOssResponse { @@ -2982,25 +4174,25 @@ export interface PostOfficialWebsiteUploadAliOssResponse {
2982 404: any; 4174 404: any;
2983 } 4175 }
2984 4176
2985 -export type PostOfficialWebsiteUploadAliOssResponseSuccess =  
2986 - PostOfficialWebsiteUploadAliOssResponse[200]; 4177 +export type PostOrderErpAuthPasswordModifyResponseSuccess =
  4178 + PostOrderErpAuthPasswordModifyResponse[200];
2987 /** 4179 /**
2988 * @description 4180 * @description
2989 - * 为官网提供上传文件的接口  
2990 - * @tags 官网 4181 + * 用户登录
  4182 + * @tags login-controller
2991 * @produces * 4183 * @produces *
2992 * @consumes application/json 4184 * @consumes application/json
2993 */ 4185 */
2994 -export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() => { 4186 +export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => {
2995 const method = 'post'; 4187 const method = 'post';
2996 - const url = '/official/website/uploadAliOss'; 4188 + const url = '/order/erp/auth/password_modify';
2997 function request( 4189 function request(
2998 - option: PostOfficialWebsiteUploadAliOssOption,  
2999 - ): Promise<PostOfficialWebsiteUploadAliOssResponseSuccess> { 4190 + option: PostOrderErpAuthPasswordModifyOption,
  4191 + ): Promise<PostOrderErpAuthPasswordModifyResponseSuccess> {
3000 return requester(request.url, { 4192 return requester(request.url, {
3001 method: request.method, 4193 method: request.method,
3002 ...option, 4194 ...option,
3003 - }) as unknown as Promise<PostOfficialWebsiteUploadAliOssResponseSuccess>; 4195 + }) as unknown as Promise<PostOrderErpAuthPasswordModifyResponseSuccess>;
3004 } 4196 }
3005 4197
3006 /** http method */ 4198 /** http method */
@@ -3010,22 +4202,22 @@ export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() =&gt; { @@ -3010,22 +4202,22 @@ export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() =&gt; {
3010 return request; 4202 return request;
3011 })(); 4203 })();
3012 4204
3013 -/** @description request parameter type for postOrderErpApplyList */  
3014 -export interface PostOrderErpApplyListOption { 4205 +/** @description request parameter type for postOrderErpAuthPhoneRegister */
  4206 +export interface PostOrderErpAuthPhoneRegisterOption {
3015 /** 4207 /**
3016 * @description 4208 * @description
3017 - * orderFieldLockApplyQueryVO 4209 + * registerVO
3018 */ 4210 */
3019 body: { 4211 body: {
3020 /** 4212 /**
3021 @description 4213 @description
3022 - orderFieldLockApplyQueryVO */  
3023 - orderFieldLockApplyQueryVO: OrderFieldLockApplyQueryVO; 4214 + registerVO */
  4215 + registerVO: AdminUserRegisterVO;
3024 }; 4216 };
3025 } 4217 }
3026 4218
3027 -/** @description response type for postOrderErpApplyList */  
3028 -export interface PostOrderErpApplyListResponse { 4219 +/** @description response type for postOrderErpAuthPhoneRegister */
  4220 +export interface PostOrderErpAuthPhoneRegisterResponse {
3029 /** 4221 /**
3030 * @description 4222 * @description
3031 * OK 4223 * OK
@@ -3053,25 +4245,25 @@ export interface PostOrderErpApplyListResponse { @@ -3053,25 +4245,25 @@ export interface PostOrderErpApplyListResponse {
3053 404: any; 4245 404: any;
3054 } 4246 }
3055 4247
3056 -export type PostOrderErpApplyListResponseSuccess =  
3057 - PostOrderErpApplyListResponse[200]; 4248 +export type PostOrderErpAuthPhoneRegisterResponseSuccess =
  4249 + PostOrderErpAuthPhoneRegisterResponse[200];
3058 /** 4250 /**
3059 * @description 4251 * @description
3060 - * 分页查询  
3061 - * @tags 用户订单-字段锁定申请(忽略) 4252 + * 手机注册
  4253 + * @tags login-controller
3062 * @produces * 4254 * @produces *
3063 * @consumes application/json 4255 * @consumes application/json
3064 */ 4256 */
3065 -export const postOrderErpApplyList = /* #__PURE__ */ (() => { 4257 +export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => {
3066 const method = 'post'; 4258 const method = 'post';
3067 - const url = '/order/erp/apply/list'; 4259 + const url = '/order/erp/auth/phone_register';
3068 function request( 4260 function request(
3069 - option: PostOrderErpApplyListOption,  
3070 - ): Promise<PostOrderErpApplyListResponseSuccess> { 4261 + option: PostOrderErpAuthPhoneRegisterOption,
  4262 + ): Promise<PostOrderErpAuthPhoneRegisterResponseSuccess> {
3071 return requester(request.url, { 4263 return requester(request.url, {
3072 method: request.method, 4264 method: request.method,
3073 ...option, 4265 ...option,
3074 - }) as unknown as Promise<PostOrderErpApplyListResponseSuccess>; 4266 + }) as unknown as Promise<PostOrderErpAuthPhoneRegisterResponseSuccess>;
3075 } 4267 }
3076 4268
3077 /** http method */ 4269 /** http method */
@@ -3081,22 +4273,22 @@ export const postOrderErpApplyList = /* #__PURE__ */ (() =&gt; { @@ -3081,22 +4273,22 @@ export const postOrderErpApplyList = /* #__PURE__ */ (() =&gt; {
3081 return request; 4273 return request;
3082 })(); 4274 })();
3083 4275
3084 -/** @description request parameter type for postOrderErpAuditAuditList */  
3085 -export interface PostOrderErpAuditAuditListOption { 4276 +/** @description request parameter type for postOrderErpAuthSendPasswordRecoverMail */
  4277 +export interface PostOrderErpAuthSendPasswordRecoverMailOption {
3086 /** 4278 /**
3087 * @description 4279 * @description
3088 - * queryVO 4280 + * recoverEmailVO
3089 */ 4281 */
3090 body: { 4282 body: {
3091 /** 4283 /**
3092 @description 4284 @description
3093 - queryVO */  
3094 - queryVO: OrderFieldLockApplyQueryVO; 4285 + recoverEmailVO */
  4286 + recoverEmailVO: AdminUserPasswordRecoverEmailVO;
3095 }; 4287 };
3096 } 4288 }
3097 4289
3098 -/** @description response type for postOrderErpAuditAuditList */  
3099 -export interface PostOrderErpAuditAuditListResponse { 4290 +/** @description response type for postOrderErpAuthSendPasswordRecoverMail */
  4291 +export interface PostOrderErpAuthSendPasswordRecoverMailResponse {
3100 /** 4292 /**
3101 * @description 4293 * @description
3102 * OK 4294 * OK
@@ -3124,25 +4316,25 @@ export interface PostOrderErpAuditAuditListResponse { @@ -3124,25 +4316,25 @@ export interface PostOrderErpAuditAuditListResponse {
3124 404: any; 4316 404: any;
3125 } 4317 }
3126 4318
3127 -export type PostOrderErpAuditAuditListResponseSuccess =  
3128 - PostOrderErpAuditAuditListResponse[200]; 4319 +export type PostOrderErpAuthSendPasswordRecoverMailResponseSuccess =
  4320 + PostOrderErpAuthSendPasswordRecoverMailResponse[200];
3129 /** 4321 /**
3130 * @description 4322 * @description
3131 - * 已审批列表  
3132 - * @tags 审批管理 4323 + * sendPasswordRecoverMail
  4324 + * @tags login-controller
3133 * @produces * 4325 * @produces *
3134 * @consumes application/json 4326 * @consumes application/json
3135 */ 4327 */
3136 -export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => { 4328 +export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => {
3137 const method = 'post'; 4329 const method = 'post';
3138 - const url = '/order/erp/audit/audit_list'; 4330 + const url = '/order/erp/auth/send_password_recover_mail';
3139 function request( 4331 function request(
3140 - option: PostOrderErpAuditAuditListOption,  
3141 - ): Promise<PostOrderErpAuditAuditListResponseSuccess> { 4332 + option: PostOrderErpAuthSendPasswordRecoverMailOption,
  4333 + ): Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess> {
3142 return requester(request.url, { 4334 return requester(request.url, {
3143 method: request.method, 4335 method: request.method,
3144 ...option, 4336 ...option,
3145 - }) as unknown as Promise<PostOrderErpAuditAuditListResponseSuccess>; 4337 + }) as unknown as Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess>;
3146 } 4338 }
3147 4339
3148 /** http method */ 4340 /** http method */
@@ -3152,22 +4344,22 @@ export const postOrderErpAuditAuditList = /* #__PURE__ */ (() =&gt; { @@ -3152,22 +4344,22 @@ export const postOrderErpAuditAuditList = /* #__PURE__ */ (() =&gt; {
3152 return request; 4344 return request;
3153 })(); 4345 })();
3154 4346
3155 -/** @description request parameter type for postOrderErpAuditDoAudit */  
3156 -export interface PostOrderErpAuditDoAuditOption { 4347 +/** @description request parameter type for postOrderErpAuthToken */
  4348 +export interface PostOrderErpAuthTokenOption {
3157 /** 4349 /**
3158 * @description 4350 * @description
3159 - * auditVO 4351 + * tokenApiDto
3160 */ 4352 */
3161 body: { 4353 body: {
3162 /** 4354 /**
3163 @description 4355 @description
3164 - auditVO */  
3165 - auditVO: AuditVO; 4356 + tokenApiDto */
  4357 + tokenApiDto: TokenApiDto;
3166 }; 4358 };
3167 } 4359 }
3168 4360
3169 -/** @description response type for postOrderErpAuditDoAudit */  
3170 -export interface PostOrderErpAuditDoAuditResponse { 4361 +/** @description response type for postOrderErpAuthToken */
  4362 +export interface PostOrderErpAuthTokenResponse {
3171 /** 4363 /**
3172 * @description 4364 * @description
3173 * OK 4365 * OK
@@ -3195,25 +4387,25 @@ export interface PostOrderErpAuditDoAuditResponse { @@ -3195,25 +4387,25 @@ export interface PostOrderErpAuditDoAuditResponse {
3195 404: any; 4387 404: any;
3196 } 4388 }
3197 4389
3198 -export type PostOrderErpAuditDoAuditResponseSuccess =  
3199 - PostOrderErpAuditDoAuditResponse[200]; 4390 +export type PostOrderErpAuthTokenResponseSuccess =
  4391 + PostOrderErpAuthTokenResponse[200];
3200 /** 4392 /**
3201 * @description 4393 * @description
3202 - * 审核  
3203 - * @tags 审批管理 4394 + * 获取token
  4395 + * @tags login-controller
3204 * @produces * 4396 * @produces *
3205 * @consumes application/json 4397 * @consumes application/json
3206 */ 4398 */
3207 -export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => { 4399 +export const postOrderErpAuthToken = /* #__PURE__ */ (() => {
3208 const method = 'post'; 4400 const method = 'post';
3209 - const url = '/order/erp/audit/do_audit'; 4401 + const url = '/order/erp/auth/token';
3210 function request( 4402 function request(
3211 - option: PostOrderErpAuditDoAuditOption,  
3212 - ): Promise<PostOrderErpAuditDoAuditResponseSuccess> { 4403 + option: PostOrderErpAuthTokenOption,
  4404 + ): Promise<PostOrderErpAuthTokenResponseSuccess> {
3213 return requester(request.url, { 4405 return requester(request.url, {
3214 method: request.method, 4406 method: request.method,
3215 ...option, 4407 ...option,
3216 - }) as unknown as Promise<PostOrderErpAuditDoAuditResponseSuccess>; 4408 + }) as unknown as Promise<PostOrderErpAuthTokenResponseSuccess>;
3217 } 4409 }
3218 4410
3219 /** http method */ 4411 /** http method */
@@ -3223,22 +4415,8 @@ export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() =&gt; { @@ -3223,22 +4415,8 @@ export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() =&gt; {
3223 return request; 4415 return request;
3224 })(); 4416 })();
3225 4417
3226 -/** @description request parameter type for postOrderErpAuditListByPage */  
3227 -export interface PostOrderErpAuditListByPageOption {  
3228 - /**  
3229 - * @description  
3230 - * queryVO  
3231 - */  
3232 - body: {  
3233 - /**  
3234 - @description  
3235 - queryVO */  
3236 - queryVO: OrderFieldLockApplyQueryVO;  
3237 - };  
3238 -}  
3239 -  
3240 -/** @description response type for postOrderErpAuditListByPage */  
3241 -export interface PostOrderErpAuditListByPageResponse { 4418 +/** @description response type for postOrderErpCaptchaGetImgCaptchaCode */
  4419 +export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse {
3242 /** 4420 /**
3243 * @description 4421 * @description
3244 * OK 4422 * OK
@@ -3266,25 +4444,22 @@ export interface PostOrderErpAuditListByPageResponse { @@ -3266,25 +4444,22 @@ export interface PostOrderErpAuditListByPageResponse {
3266 404: any; 4444 404: any;
3267 } 4445 }
3268 4446
3269 -export type PostOrderErpAuditListByPageResponseSuccess =  
3270 - PostOrderErpAuditListByPageResponse[200]; 4447 +export type PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess =
  4448 + PostOrderErpCaptchaGetImgCaptchaCodeResponse[200];
3271 /** 4449 /**
3272 * @description 4450 * @description
3273 - * 分页查询  
3274 - * @tags 审批管理 4451 + * 获取图片验证码
  4452 + * @tags 验证码
3275 * @produces * 4453 * @produces *
3276 * @consumes application/json 4454 * @consumes application/json
3277 */ 4455 */
3278 -export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => { 4456 +export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() => {
3279 const method = 'post'; 4457 const method = 'post';
3280 - const url = '/order/erp/audit/list_by_page';  
3281 - function request(  
3282 - option: PostOrderErpAuditListByPageOption,  
3283 - ): Promise<PostOrderErpAuditListByPageResponseSuccess> { 4458 + const url = '/order/erp/captcha/get_img_captcha_code';
  4459 + function request(): Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess> {
3284 return requester(request.url, { 4460 return requester(request.url, {
3285 method: request.method, 4461 method: request.method,
3286 - ...option,  
3287 - }) as unknown as Promise<PostOrderErpAuditListByPageResponseSuccess>; 4462 + }) as unknown as Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess>;
3288 } 4463 }
3289 4464
3290 /** http method */ 4465 /** http method */
@@ -3294,22 +4469,22 @@ export const postOrderErpAuditListByPage = /* #__PURE__ */ (() =&gt; { @@ -3294,22 +4469,22 @@ export const postOrderErpAuditListByPage = /* #__PURE__ */ (() =&gt; {
3294 return request; 4469 return request;
3295 })(); 4470 })();
3296 4471
3297 -/** @description request parameter type for postOrderErpAuditLogListByPage */  
3298 -export interface PostOrderErpAuditLogListByPageOption { 4472 +/** @description request parameter type for postOrderErpCaptchaSendCaptchaCode */
  4473 +export interface PostOrderErpCaptchaSendCaptchaCodeOption {
3299 /** 4474 /**
3300 * @description 4475 * @description
3301 - * orderAuditLogQueryVO 4476 + * msgVo
3302 */ 4477 */
3303 body: { 4478 body: {
3304 /** 4479 /**
3305 @description 4480 @description
3306 - orderAuditLogQueryVO */  
3307 - orderAuditLogQueryVO: OrderAuditLogQueryVO; 4481 + msgVo */
  4482 + msgVo: CaptchaMessageVO;
3308 }; 4483 };
3309 } 4484 }
3310 4485
3311 -/** @description response type for postOrderErpAuditLogListByPage */  
3312 -export interface PostOrderErpAuditLogListByPageResponse { 4486 +/** @description response type for postOrderErpCaptchaSendCaptchaCode */
  4487 +export interface PostOrderErpCaptchaSendCaptchaCodeResponse {
3313 /** 4488 /**
3314 * @description 4489 * @description
3315 * OK 4490 * OK
@@ -3337,25 +4512,25 @@ export interface PostOrderErpAuditLogListByPageResponse { @@ -3337,25 +4512,25 @@ export interface PostOrderErpAuditLogListByPageResponse {
3337 404: any; 4512 404: any;
3338 } 4513 }
3339 4514
3340 -export type PostOrderErpAuditLogListByPageResponseSuccess =  
3341 - PostOrderErpAuditLogListByPageResponse[200]; 4515 +export type PostOrderErpCaptchaSendCaptchaCodeResponseSuccess =
  4516 + PostOrderErpCaptchaSendCaptchaCodeResponse[200];
3342 /** 4517 /**
3343 * @description 4518 * @description
3344 - * 分页查询  
3345 - * @tags 用户订单审批日志 4519 + * 获取验证码
  4520 + * @tags 验证码
3346 * @produces * 4521 * @produces *
3347 * @consumes application/json 4522 * @consumes application/json
3348 */ 4523 */
3349 -export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => { 4524 +export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() => {
3350 const method = 'post'; 4525 const method = 'post';
3351 - const url = '/order/erp/audit/log/list_by_page'; 4526 + const url = '/order/erp/captcha/send_captcha_code';
3352 function request( 4527 function request(
3353 - option: PostOrderErpAuditLogListByPageOption,  
3354 - ): Promise<PostOrderErpAuditLogListByPageResponseSuccess> { 4528 + option: PostOrderErpCaptchaSendCaptchaCodeOption,
  4529 + ): Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess> {
3355 return requester(request.url, { 4530 return requester(request.url, {
3356 method: request.method, 4531 method: request.method,
3357 ...option, 4532 ...option,
3358 - }) as unknown as Promise<PostOrderErpAuditLogListByPageResponseSuccess>; 4533 + }) as unknown as Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess>;
3359 } 4534 }
3360 4535
3361 /** http method */ 4536 /** http method */
@@ -3365,22 +4540,22 @@ export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() =&gt; { @@ -3365,22 +4540,22 @@ export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() =&gt; {
3365 return request; 4540 return request;
3366 })(); 4541 })();
3367 4542
3368 -/** @description request parameter type for postOrderErpAuditLogQueryById */  
3369 -export interface PostOrderErpAuditLogQueryByIdOption { 4543 +/** @description request parameter type for putOrderErpDepts */
  4544 +export interface PutOrderErpDeptsOption {
3370 /** 4545 /**
3371 * @description 4546 * @description
3372 - * orderAuditLogQueryVO 4547 + * deptVO
3373 */ 4548 */
3374 body: { 4549 body: {
3375 /** 4550 /**
3376 @description 4551 @description
3377 - orderAuditLogQueryVO */  
3378 - orderAuditLogQueryVO: OrderAuditLogQueryVO; 4552 + deptVO */
  4553 + deptVO: AdminDeptVO;
3379 }; 4554 };
3380 } 4555 }
3381 4556
3382 -/** @description response type for postOrderErpAuditLogQueryById */  
3383 -export interface PostOrderErpAuditLogQueryByIdResponse { 4557 +/** @description response type for putOrderErpDepts */
  4558 +export interface PutOrderErpDeptsResponse {
3384 /** 4559 /**
3385 * @description 4560 * @description
3386 * OK 4561 * OK
@@ -3408,25 +4583,24 @@ export interface PostOrderErpAuditLogQueryByIdResponse { @@ -3408,25 +4583,24 @@ export interface PostOrderErpAuditLogQueryByIdResponse {
3408 404: any; 4583 404: any;
3409 } 4584 }
3410 4585
3411 -export type PostOrderErpAuditLogQueryByIdResponseSuccess =  
3412 - PostOrderErpAuditLogQueryByIdResponse[200]; 4586 +export type PutOrderErpDeptsResponseSuccess = PutOrderErpDeptsResponse[200];
3413 /** 4587 /**
3414 * @description 4588 * @description
3415 - * 通过主键查询单条数据  
3416 - * @tags 用户订单审批日志 4589 + * 修改部门
  4590 + * @tags 系统:部门管理
3417 * @produces * 4591 * @produces *
3418 * @consumes application/json 4592 * @consumes application/json
3419 */ 4593 */
3420 -export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() => {  
3421 - const method = 'post';  
3422 - const url = '/order/erp/audit/log/query_by_id'; 4594 +export const putOrderErpDepts = /* #__PURE__ */ (() => {
  4595 + const method = 'put';
  4596 + const url = '/order/erp/depts';
3423 function request( 4597 function request(
3424 - option: PostOrderErpAuditLogQueryByIdOption,  
3425 - ): Promise<PostOrderErpAuditLogQueryByIdResponseSuccess> { 4598 + option: PutOrderErpDeptsOption,
  4599 + ): Promise<PutOrderErpDeptsResponseSuccess> {
3426 return requester(request.url, { 4600 return requester(request.url, {
3427 method: request.method, 4601 method: request.method,
3428 ...option, 4602 ...option,
3429 - }) as unknown as Promise<PostOrderErpAuditLogQueryByIdResponseSuccess>; 4603 + }) as unknown as Promise<PutOrderErpDeptsResponseSuccess>;
3430 } 4604 }
3431 4605
3432 /** http method */ 4606 /** http method */
@@ -3436,8 +4610,8 @@ export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() =&gt; { @@ -3436,8 +4610,8 @@ export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() =&gt; {
3436 return request; 4610 return request;
3437 })(); 4611 })();
3438 4612
3439 -/** @description request parameter type for postOrderErpAuditWaitAuditList */  
3440 -export interface PostOrderErpAuditWaitAuditListOption { 4613 +/** @description request parameter type for deleteOrderErpDepts */
  4614 +export interface DeleteOrderErpDeptsOption {
3441 /** 4615 /**
3442 * @description 4616 * @description
3443 * queryVO 4617 * queryVO
@@ -3446,12 +4620,12 @@ export interface PostOrderErpAuditWaitAuditListOption { @@ -3446,12 +4620,12 @@ export interface PostOrderErpAuditWaitAuditListOption {
3446 /** 4620 /**
3447 @description 4621 @description
3448 queryVO */ 4622 queryVO */
3449 - queryVO: OrderFieldLockApplyQueryVO; 4623 + queryVO: AdminDeptQueryVO;
3450 }; 4624 };
3451 } 4625 }
3452 4626
3453 -/** @description response type for postOrderErpAuditWaitAuditList */  
3454 -export interface PostOrderErpAuditWaitAuditListResponse { 4627 +/** @description response type for deleteOrderErpDepts */
  4628 +export interface DeleteOrderErpDeptsResponse {
3455 /** 4629 /**
3456 * @description 4630 * @description
3457 * OK 4631 * OK
@@ -3459,9 +4633,9 @@ export interface PostOrderErpAuditWaitAuditListResponse { @@ -3459,9 +4633,9 @@ export interface PostOrderErpAuditWaitAuditListResponse {
3459 200: ServerResult; 4633 200: ServerResult;
3460 /** 4634 /**
3461 * @description 4635 * @description
3462 - * Created 4636 + * No Content
3463 */ 4637 */
3464 - 201: any; 4638 + 204: any;
3465 /** 4639 /**
3466 * @description 4640 * @description
3467 * Unauthorized 4641 * Unauthorized
@@ -3472,32 +4646,26 @@ export interface PostOrderErpAuditWaitAuditListResponse { @@ -3472,32 +4646,26 @@ export interface PostOrderErpAuditWaitAuditListResponse {
3472 * Forbidden 4646 * Forbidden
3473 */ 4647 */
3474 403: any; 4648 403: any;
3475 - /**  
3476 - * @description  
3477 - * Not Found  
3478 - */  
3479 - 404: any;  
3480 } 4649 }
3481 4650
3482 -export type PostOrderErpAuditWaitAuditListResponseSuccess =  
3483 - PostOrderErpAuditWaitAuditListResponse[200]; 4651 +export type DeleteOrderErpDeptsResponseSuccess =
  4652 + DeleteOrderErpDeptsResponse[200];
3484 /** 4653 /**
3485 * @description 4654 * @description
3486 - * 待审批列表  
3487 - * @tags 审批管理 4655 + * 删除部门
  4656 + * @tags 系统:部门管理
3488 * @produces * 4657 * @produces *
3489 - * @consumes application/json  
3490 - */  
3491 -export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() => {  
3492 - const method = 'post';  
3493 - const url = '/order/erp/audit/wait_audit_list'; 4658 + */
  4659 +export const deleteOrderErpDepts = /* #__PURE__ */ (() => {
  4660 + const method = 'delete';
  4661 + const url = '/order/erp/depts';
3494 function request( 4662 function request(
3495 - option: PostOrderErpAuditWaitAuditListOption,  
3496 - ): Promise<PostOrderErpAuditWaitAuditListResponseSuccess> { 4663 + option: DeleteOrderErpDeptsOption,
  4664 + ): Promise<DeleteOrderErpDeptsResponseSuccess> {
3497 return requester(request.url, { 4665 return requester(request.url, {
3498 method: request.method, 4666 method: request.method,
3499 ...option, 4667 ...option,
3500 - }) as unknown as Promise<PostOrderErpAuditWaitAuditListResponseSuccess>; 4668 + }) as unknown as Promise<DeleteOrderErpDeptsResponseSuccess>;
3501 } 4669 }
3502 4670
3503 /** http method */ 4671 /** http method */
@@ -3507,22 +4675,22 @@ export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() =&gt; { @@ -3507,22 +4675,22 @@ export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() =&gt; {
3507 return request; 4675 return request;
3508 })(); 4676 })();
3509 4677
3510 -/** @description request parameter type for postOrderErpAuthLoginByPhone */  
3511 -export interface PostOrderErpAuthLoginByPhoneOption { 4678 +/** @description request parameter type for postOrderErpDeptsAdd */
  4679 +export interface PostOrderErpDeptsAddOption {
3512 /** 4680 /**
3513 * @description 4681 * @description
3514 - * loginByPhoneVO 4682 + * deptVO
3515 */ 4683 */
3516 body: { 4684 body: {
3517 /** 4685 /**
3518 @description 4686 @description
3519 - loginByPhoneVO */  
3520 - loginByPhoneVO: AdminUserLoginByPhoneVO; 4687 + deptVO */
  4688 + deptVO: AdminDeptVO;
3521 }; 4689 };
3522 } 4690 }
3523 4691
3524 -/** @description response type for postOrderErpAuthLoginByPhone */  
3525 -export interface PostOrderErpAuthLoginByPhoneResponse { 4692 +/** @description response type for postOrderErpDeptsAdd */
  4693 +export interface PostOrderErpDeptsAddResponse {
3526 /** 4694 /**
3527 * @description 4695 * @description
3528 * OK 4696 * OK
@@ -3550,25 +4718,25 @@ export interface PostOrderErpAuthLoginByPhoneResponse { @@ -3550,25 +4718,25 @@ export interface PostOrderErpAuthLoginByPhoneResponse {
3550 404: any; 4718 404: any;
3551 } 4719 }
3552 4720
3553 -export type PostOrderErpAuthLoginByPhoneResponseSuccess =  
3554 - PostOrderErpAuthLoginByPhoneResponse[200]; 4721 +export type PostOrderErpDeptsAddResponseSuccess =
  4722 + PostOrderErpDeptsAddResponse[200];
3555 /** 4723 /**
3556 * @description 4724 * @description
3557 - * 手机登录  
3558 - * @tags login-controller 4725 + * 新增部门
  4726 + * @tags 系统:部门管理
3559 * @produces * 4727 * @produces *
3560 * @consumes application/json 4728 * @consumes application/json
3561 */ 4729 */
3562 -export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => { 4730 +export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => {
3563 const method = 'post'; 4731 const method = 'post';
3564 - const url = '/order/erp/auth/login_by_phone'; 4732 + const url = '/order/erp/depts/add';
3565 function request( 4733 function request(
3566 - option: PostOrderErpAuthLoginByPhoneOption,  
3567 - ): Promise<PostOrderErpAuthLoginByPhoneResponseSuccess> { 4734 + option: PostOrderErpDeptsAddOption,
  4735 + ): Promise<PostOrderErpDeptsAddResponseSuccess> {
3568 return requester(request.url, { 4736 return requester(request.url, {
3569 method: request.method, 4737 method: request.method,
3570 ...option, 4738 ...option,
3571 - }) as unknown as Promise<PostOrderErpAuthLoginByPhoneResponseSuccess>; 4739 + }) as unknown as Promise<PostOrderErpDeptsAddResponseSuccess>;
3572 } 4740 }
3573 4741
3574 /** http method */ 4742 /** http method */
@@ -3578,22 +4746,22 @@ export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() =&gt; { @@ -3578,22 +4746,22 @@ export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() =&gt; {
3578 return request; 4746 return request;
3579 })(); 4747 })();
3580 4748
3581 -/** @description request parameter type for postOrderErpAuthLoginByPwd */  
3582 -export interface PostOrderErpAuthLoginByPwdOption { 4749 +/** @description request parameter type for postOrderErpDeptsListByPage */
  4750 +export interface PostOrderErpDeptsListByPageOption {
3583 /** 4751 /**
3584 * @description 4752 * @description
3585 - * loginByPwdVO 4753 + * queryVO
3586 */ 4754 */
3587 body: { 4755 body: {
3588 /** 4756 /**
3589 @description 4757 @description
3590 - loginByPwdVO */  
3591 - loginByPwdVO: AdminUserLoginByPwdVO; 4758 + queryVO */
  4759 + queryVO: AdminDeptQueryVO;
3592 }; 4760 };
3593 } 4761 }
3594 4762
3595 -/** @description response type for postOrderErpAuthLoginByPwd */  
3596 -export interface PostOrderErpAuthLoginByPwdResponse { 4763 +/** @description response type for postOrderErpDeptsListByPage */
  4764 +export interface PostOrderErpDeptsListByPageResponse {
3597 /** 4765 /**
3598 * @description 4766 * @description
3599 * OK 4767 * OK
@@ -3621,25 +4789,25 @@ export interface PostOrderErpAuthLoginByPwdResponse { @@ -3621,25 +4789,25 @@ export interface PostOrderErpAuthLoginByPwdResponse {
3621 404: any; 4789 404: any;
3622 } 4790 }
3623 4791
3624 -export type PostOrderErpAuthLoginByPwdResponseSuccess =  
3625 - PostOrderErpAuthLoginByPwdResponse[200]; 4792 +export type PostOrderErpDeptsListByPageResponseSuccess =
  4793 + PostOrderErpDeptsListByPageResponse[200];
3626 /** 4794 /**
3627 * @description 4795 * @description
3628 - * 用户登录  
3629 - * @tags login-controller 4796 + * 查询部门
  4797 + * @tags 系统:部门管理
3630 * @produces * 4798 * @produces *
3631 * @consumes application/json 4799 * @consumes application/json
3632 */ 4800 */
3633 -export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => { 4801 +export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => {
3634 const method = 'post'; 4802 const method = 'post';
3635 - const url = '/order/erp/auth/login_by_pwd'; 4803 + const url = '/order/erp/depts/list_by_page';
3636 function request( 4804 function request(
3637 - option: PostOrderErpAuthLoginByPwdOption,  
3638 - ): Promise<PostOrderErpAuthLoginByPwdResponseSuccess> { 4805 + option: PostOrderErpDeptsListByPageOption,
  4806 + ): Promise<PostOrderErpDeptsListByPageResponseSuccess> {
3639 return requester(request.url, { 4807 return requester(request.url, {
3640 method: request.method, 4808 method: request.method,
3641 ...option, 4809 ...option,
3642 - }) as unknown as Promise<PostOrderErpAuthLoginByPwdResponseSuccess>; 4810 + }) as unknown as Promise<PostOrderErpDeptsListByPageResponseSuccess>;
3643 } 4811 }
3644 4812
3645 /** http method */ 4813 /** http method */
@@ -3649,8 +4817,22 @@ export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() =&gt; { @@ -3649,8 +4817,22 @@ export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() =&gt; {
3649 return request; 4817 return request;
3650 })(); 4818 })();
3651 4819
3652 -/** @description response type for postOrderErpAuthLoginOut */  
3653 -export interface PostOrderErpAuthLoginOutResponse { 4820 +/** @description request parameter type for postOrderErpDictionaryAdd */
  4821 +export interface PostOrderErpDictionaryAddOption {
  4822 + /**
  4823 + * @description
  4824 + * dictionaryVO
  4825 + */
  4826 + body: {
  4827 + /**
  4828 + @description
  4829 + dictionaryVO */
  4830 + dictionaryVO: DictionaryVO;
  4831 + };
  4832 +}
  4833 +
  4834 +/** @description response type for postOrderErpDictionaryAdd */
  4835 +export interface PostOrderErpDictionaryAddResponse {
3654 /** 4836 /**
3655 * @description 4837 * @description
3656 * OK 4838 * OK
@@ -3678,22 +4860,25 @@ export interface PostOrderErpAuthLoginOutResponse { @@ -3678,22 +4860,25 @@ export interface PostOrderErpAuthLoginOutResponse {
3678 404: any; 4860 404: any;
3679 } 4861 }
3680 4862
3681 -export type PostOrderErpAuthLoginOutResponseSuccess =  
3682 - PostOrderErpAuthLoginOutResponse[200]; 4863 +export type PostOrderErpDictionaryAddResponseSuccess =
  4864 + PostOrderErpDictionaryAddResponse[200];
3683 /** 4865 /**
3684 * @description 4866 * @description
3685 - * 退出登录  
3686 - * @tags login-controller 4867 + * 新增字典
  4868 + * @tags 系统:字典管理
3687 * @produces * 4869 * @produces *
3688 * @consumes application/json 4870 * @consumes application/json
3689 */ 4871 */
3690 -export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => { 4872 +export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => {
3691 const method = 'post'; 4873 const method = 'post';
3692 - const url = '/order/erp/auth/login_out';  
3693 - function request(): Promise<PostOrderErpAuthLoginOutResponseSuccess> { 4874 + const url = '/order/erp/dictionary/add';
  4875 + function request(
  4876 + option: PostOrderErpDictionaryAddOption,
  4877 + ): Promise<PostOrderErpDictionaryAddResponseSuccess> {
3694 return requester(request.url, { 4878 return requester(request.url, {
3695 method: request.method, 4879 method: request.method,
3696 - }) as unknown as Promise<PostOrderErpAuthLoginOutResponseSuccess>; 4880 + ...option,
  4881 + }) as unknown as Promise<PostOrderErpDictionaryAddResponseSuccess>;
3697 } 4882 }
3698 4883
3699 /** http method */ 4884 /** http method */
@@ -3703,22 +4888,22 @@ export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() =&gt; { @@ -3703,22 +4888,22 @@ export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() =&gt; {
3703 return request; 4888 return request;
3704 })(); 4889 })();
3705 4890
3706 -/** @description request parameter type for postOrderErpAuthPasswordModify */  
3707 -export interface PostOrderErpAuthPasswordModifyOption { 4891 +/** @description request parameter type for postOrderErpDictionaryDelete */
  4892 +export interface PostOrderErpDictionaryDeleteOption {
3708 /** 4893 /**
3709 * @description 4894 * @description
3710 - * modifyPwdVO 4895 + * queryVO
3711 */ 4896 */
3712 body: { 4897 body: {
3713 /** 4898 /**
3714 @description 4899 @description
3715 - modifyPwdVO */  
3716 - modifyPwdVO: AdminUserModifyPwdVO; 4900 + queryVO */
  4901 + queryVO: DictionaryQueryVO;
3717 }; 4902 };
3718 } 4903 }
3719 4904
3720 -/** @description response type for postOrderErpAuthPasswordModify */  
3721 -export interface PostOrderErpAuthPasswordModifyResponse { 4905 +/** @description response type for postOrderErpDictionaryDelete */
  4906 +export interface PostOrderErpDictionaryDeleteResponse {
3722 /** 4907 /**
3723 * @description 4908 * @description
3724 * OK 4909 * OK
@@ -3746,25 +4931,25 @@ export interface PostOrderErpAuthPasswordModifyResponse { @@ -3746,25 +4931,25 @@ export interface PostOrderErpAuthPasswordModifyResponse {
3746 404: any; 4931 404: any;
3747 } 4932 }
3748 4933
3749 -export type PostOrderErpAuthPasswordModifyResponseSuccess =  
3750 - PostOrderErpAuthPasswordModifyResponse[200]; 4934 +export type PostOrderErpDictionaryDeleteResponseSuccess =
  4935 + PostOrderErpDictionaryDeleteResponse[200];
3751 /** 4936 /**
3752 * @description 4937 * @description
3753 - * 用户登录  
3754 - * @tags login-controller 4938 + * 删除字典
  4939 + * @tags 系统:字典管理
3755 * @produces * 4940 * @produces *
3756 * @consumes application/json 4941 * @consumes application/json
3757 */ 4942 */
3758 -export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => { 4943 +export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => {
3759 const method = 'post'; 4944 const method = 'post';
3760 - const url = '/order/erp/auth/password_modify'; 4945 + const url = '/order/erp/dictionary/delete';
3761 function request( 4946 function request(
3762 - option: PostOrderErpAuthPasswordModifyOption,  
3763 - ): Promise<PostOrderErpAuthPasswordModifyResponseSuccess> { 4947 + option: PostOrderErpDictionaryDeleteOption,
  4948 + ): Promise<PostOrderErpDictionaryDeleteResponseSuccess> {
3764 return requester(request.url, { 4949 return requester(request.url, {
3765 method: request.method, 4950 method: request.method,
3766 ...option, 4951 ...option,
3767 - }) as unknown as Promise<PostOrderErpAuthPasswordModifyResponseSuccess>; 4952 + }) as unknown as Promise<PostOrderErpDictionaryDeleteResponseSuccess>;
3768 } 4953 }
3769 4954
3770 /** http method */ 4955 /** http method */
@@ -3774,22 +4959,22 @@ export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() =&gt; { @@ -3774,22 +4959,22 @@ export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() =&gt; {
3774 return request; 4959 return request;
3775 })(); 4960 })();
3776 4961
3777 -/** @description request parameter type for postOrderErpAuthPhoneRegister */  
3778 -export interface PostOrderErpAuthPhoneRegisterOption { 4962 +/** @description request parameter type for postOrderErpDictionaryEdit */
  4963 +export interface PostOrderErpDictionaryEditOption {
3779 /** 4964 /**
3780 * @description 4965 * @description
3781 - * registerVO 4966 + * dictionaryVO
3782 */ 4967 */
3783 body: { 4968 body: {
3784 /** 4969 /**
3785 @description 4970 @description
3786 - registerVO */  
3787 - registerVO: AdminUserRegisterVO; 4971 + dictionaryVO */
  4972 + dictionaryVO: DictionaryVO;
3788 }; 4973 };
3789 } 4974 }
3790 4975
3791 -/** @description response type for postOrderErpAuthPhoneRegister */  
3792 -export interface PostOrderErpAuthPhoneRegisterResponse { 4976 +/** @description response type for postOrderErpDictionaryEdit */
  4977 +export interface PostOrderErpDictionaryEditResponse {
3793 /** 4978 /**
3794 * @description 4979 * @description
3795 * OK 4980 * OK
@@ -3817,25 +5002,25 @@ export interface PostOrderErpAuthPhoneRegisterResponse { @@ -3817,25 +5002,25 @@ export interface PostOrderErpAuthPhoneRegisterResponse {
3817 404: any; 5002 404: any;
3818 } 5003 }
3819 5004
3820 -export type PostOrderErpAuthPhoneRegisterResponseSuccess =  
3821 - PostOrderErpAuthPhoneRegisterResponse[200]; 5005 +export type PostOrderErpDictionaryEditResponseSuccess =
  5006 + PostOrderErpDictionaryEditResponse[200];
3822 /** 5007 /**
3823 * @description 5008 * @description
3824 - * 手机注册  
3825 - * @tags login-controller 5009 + * 修改字典
  5010 + * @tags 系统:字典管理
3826 * @produces * 5011 * @produces *
3827 * @consumes application/json 5012 * @consumes application/json
3828 */ 5013 */
3829 -export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => { 5014 +export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => {
3830 const method = 'post'; 5015 const method = 'post';
3831 - const url = '/order/erp/auth/phone_register'; 5016 + const url = '/order/erp/dictionary/edit';
3832 function request( 5017 function request(
3833 - option: PostOrderErpAuthPhoneRegisterOption,  
3834 - ): Promise<PostOrderErpAuthPhoneRegisterResponseSuccess> { 5018 + option: PostOrderErpDictionaryEditOption,
  5019 + ): Promise<PostOrderErpDictionaryEditResponseSuccess> {
3835 return requester(request.url, { 5020 return requester(request.url, {
3836 method: request.method, 5021 method: request.method,
3837 ...option, 5022 ...option,
3838 - }) as unknown as Promise<PostOrderErpAuthPhoneRegisterResponseSuccess>; 5023 + }) as unknown as Promise<PostOrderErpDictionaryEditResponseSuccess>;
3839 } 5024 }
3840 5025
3841 /** http method */ 5026 /** http method */
@@ -3845,22 +5030,22 @@ export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() =&gt; { @@ -3845,22 +5030,22 @@ export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() =&gt; {
3845 return request; 5030 return request;
3846 })(); 5031 })();
3847 5032
3848 -/** @description request parameter type for postOrderErpAuthSendPasswordRecoverMail */  
3849 -export interface PostOrderErpAuthSendPasswordRecoverMailOption { 5033 +/** @description request parameter type for postOrderErpDictionaryGetAll */
  5034 +export interface PostOrderErpDictionaryGetAllOption {
3850 /** 5035 /**
3851 * @description 5036 * @description
3852 - * recoverEmailVO 5037 + * queryVO
3853 */ 5038 */
3854 body: { 5039 body: {
3855 /** 5040 /**
3856 @description 5041 @description
3857 - recoverEmailVO */  
3858 - recoverEmailVO: AdminUserPasswordRecoverEmailVO; 5042 + queryVO */
  5043 + queryVO: DictionaryQueryVO;
3859 }; 5044 };
3860 } 5045 }
3861 5046
3862 -/** @description response type for postOrderErpAuthSendPasswordRecoverMail */  
3863 -export interface PostOrderErpAuthSendPasswordRecoverMailResponse { 5047 +/** @description response type for postOrderErpDictionaryGetAll */
  5048 +export interface PostOrderErpDictionaryGetAllResponse {
3864 /** 5049 /**
3865 * @description 5050 * @description
3866 * OK 5051 * OK
@@ -3888,25 +5073,25 @@ export interface PostOrderErpAuthSendPasswordRecoverMailResponse { @@ -3888,25 +5073,25 @@ export interface PostOrderErpAuthSendPasswordRecoverMailResponse {
3888 404: any; 5073 404: any;
3889 } 5074 }
3890 5075
3891 -export type PostOrderErpAuthSendPasswordRecoverMailResponseSuccess =  
3892 - PostOrderErpAuthSendPasswordRecoverMailResponse[200]; 5076 +export type PostOrderErpDictionaryGetAllResponseSuccess =
  5077 + PostOrderErpDictionaryGetAllResponse[200];
3893 /** 5078 /**
3894 * @description 5079 * @description
3895 - * sendPasswordRecoverMail  
3896 - * @tags login-controller 5080 + * 获取所有字典
  5081 + * @tags 系统:字典管理
3897 * @produces * 5082 * @produces *
3898 * @consumes application/json 5083 * @consumes application/json
3899 */ 5084 */
3900 -export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => { 5085 +export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => {
3901 const method = 'post'; 5086 const method = 'post';
3902 - const url = '/order/erp/auth/send_password_recover_mail'; 5087 + const url = '/order/erp/dictionary/get_all';
3903 function request( 5088 function request(
3904 - option: PostOrderErpAuthSendPasswordRecoverMailOption,  
3905 - ): Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess> { 5089 + option: PostOrderErpDictionaryGetAllOption,
  5090 + ): Promise<PostOrderErpDictionaryGetAllResponseSuccess> {
3906 return requester(request.url, { 5091 return requester(request.url, {
3907 method: request.method, 5092 method: request.method,
3908 ...option, 5093 ...option,
3909 - }) as unknown as Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess>; 5094 + }) as unknown as Promise<PostOrderErpDictionaryGetAllResponseSuccess>;
3910 } 5095 }
3911 5096
3912 /** http method */ 5097 /** http method */
@@ -3916,22 +5101,22 @@ export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() =&gt; { @@ -3916,22 +5101,22 @@ export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() =&gt; {
3916 return request; 5101 return request;
3917 })(); 5102 })();
3918 5103
3919 -/** @description request parameter type for postOrderErpAuthToken */  
3920 -export interface PostOrderErpAuthTokenOption { 5104 +/** @description request parameter type for postOrderErpDictionaryListByPage */
  5105 +export interface PostOrderErpDictionaryListByPageOption {
3921 /** 5106 /**
3922 * @description 5107 * @description
3923 - * tokenApiDto 5108 + * queryVO
3924 */ 5109 */
3925 body: { 5110 body: {
3926 /** 5111 /**
3927 @description 5112 @description
3928 - tokenApiDto */  
3929 - tokenApiDto: TokenApiDto; 5113 + queryVO */
  5114 + queryVO: DictionaryQueryVO;
3930 }; 5115 };
3931 } 5116 }
3932 5117
3933 -/** @description response type for postOrderErpAuthToken */  
3934 -export interface PostOrderErpAuthTokenResponse { 5118 +/** @description response type for postOrderErpDictionaryListByPage */
  5119 +export interface PostOrderErpDictionaryListByPageResponse {
3935 /** 5120 /**
3936 * @description 5121 * @description
3937 * OK 5122 * OK
@@ -3959,25 +5144,25 @@ export interface PostOrderErpAuthTokenResponse { @@ -3959,25 +5144,25 @@ export interface PostOrderErpAuthTokenResponse {
3959 404: any; 5144 404: any;
3960 } 5145 }
3961 5146
3962 -export type PostOrderErpAuthTokenResponseSuccess =  
3963 - PostOrderErpAuthTokenResponse[200]; 5147 +export type PostOrderErpDictionaryListByPageResponseSuccess =
  5148 + PostOrderErpDictionaryListByPageResponse[200];
3964 /** 5149 /**
3965 * @description 5150 * @description
3966 - * 获取token  
3967 - * @tags login-controller 5151 + * 查询字典列表
  5152 + * @tags 系统:字典管理
3968 * @produces * 5153 * @produces *
3969 * @consumes application/json 5154 * @consumes application/json
3970 */ 5155 */
3971 -export const postOrderErpAuthToken = /* #__PURE__ */ (() => { 5156 +export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => {
3972 const method = 'post'; 5157 const method = 'post';
3973 - const url = '/order/erp/auth/token'; 5158 + const url = '/order/erp/dictionary/list_by_page';
3974 function request( 5159 function request(
3975 - option: PostOrderErpAuthTokenOption,  
3976 - ): Promise<PostOrderErpAuthTokenResponseSuccess> { 5160 + option: PostOrderErpDictionaryListByPageOption,
  5161 + ): Promise<PostOrderErpDictionaryListByPageResponseSuccess> {
3977 return requester(request.url, { 5162 return requester(request.url, {
3978 method: request.method, 5163 method: request.method,
3979 ...option, 5164 ...option,
3980 - }) as unknown as Promise<PostOrderErpAuthTokenResponseSuccess>; 5165 + }) as unknown as Promise<PostOrderErpDictionaryListByPageResponseSuccess>;
3981 } 5166 }
3982 5167
3983 /** http method */ 5168 /** http method */
@@ -3987,8 +5172,8 @@ export const postOrderErpAuthToken = /* #__PURE__ */ (() =&gt; { @@ -3987,8 +5172,8 @@ export const postOrderErpAuthToken = /* #__PURE__ */ (() =&gt; {
3987 return request; 5172 return request;
3988 })(); 5173 })();
3989 5174
3990 -/** @description response type for postOrderErpCaptchaGetImgCaptchaCode */  
3991 -export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse { 5175 +/** @description response type for getOrderErpIndexChartData */
  5176 +export interface GetOrderErpIndexChartDataResponse {
3992 /** 5177 /**
3993 * @description 5178 * @description
3994 * OK 5179 * OK
@@ -3996,11 +5181,6 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse { @@ -3996,11 +5181,6 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse {
3996 200: ServerResult; 5181 200: ServerResult;
3997 /** 5182 /**
3998 * @description 5183 * @description
3999 - * Created  
4000 - */  
4001 - 201: any;  
4002 - /**  
4003 - * @description  
4004 * Unauthorized 5184 * Unauthorized
4005 */ 5185 */
4006 401: any; 5186 401: any;
@@ -4016,22 +5196,21 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse { @@ -4016,22 +5196,21 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse {
4016 404: any; 5196 404: any;
4017 } 5197 }
4018 5198
4019 -export type PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess =  
4020 - PostOrderErpCaptchaGetImgCaptchaCodeResponse[200]; 5199 +export type GetOrderErpIndexChartDataResponseSuccess =
  5200 + GetOrderErpIndexChartDataResponse[200];
4021 /** 5201 /**
4022 * @description 5202 * @description
4023 - * 获取图片验证码  
4024 - * @tags 验证码 5203 + * 首页订单趋势
  5204 + * @tags 首页
4025 * @produces * 5205 * @produces *
4026 - * @consumes application/json  
4027 */ 5206 */
4028 -export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() => {  
4029 - const method = 'post';  
4030 - const url = '/order/erp/captcha/get_img_captcha_code';  
4031 - function request(): Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess> { 5207 +export const getOrderErpIndexChartData = /* #__PURE__ */ (() => {
  5208 + const method = 'get';
  5209 + const url = '/order/erp/index/chartData';
  5210 + function request(): Promise<GetOrderErpIndexChartDataResponseSuccess> {
4032 return requester(request.url, { 5211 return requester(request.url, {
4033 method: request.method, 5212 method: request.method,
4034 - }) as unknown as Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess>; 5213 + }) as unknown as Promise<GetOrderErpIndexChartDataResponseSuccess>;
4035 } 5214 }
4036 5215
4037 /** http method */ 5216 /** http method */
@@ -4041,22 +5220,8 @@ export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() =&gt; { @@ -4041,22 +5220,8 @@ export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() =&gt; {
4041 return request; 5220 return request;
4042 })(); 5221 })();
4043 5222
4044 -/** @description request parameter type for postOrderErpCaptchaSendCaptchaCode */  
4045 -export interface PostOrderErpCaptchaSendCaptchaCodeOption {  
4046 - /**  
4047 - * @description  
4048 - * msgVo  
4049 - */  
4050 - body: {  
4051 - /**  
4052 - @description  
4053 - msgVo */  
4054 - msgVo: CaptchaMessageVO;  
4055 - };  
4056 -}  
4057 -  
4058 -/** @description response type for postOrderErpCaptchaSendCaptchaCode */  
4059 -export interface PostOrderErpCaptchaSendCaptchaCodeResponse { 5223 +/** @description response type for getOrderErpIndexData */
  5224 +export interface GetOrderErpIndexDataResponse {
4060 /** 5225 /**
4061 * @description 5226 * @description
4062 * OK 5227 * OK
@@ -4064,11 +5229,6 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse { @@ -4064,11 +5229,6 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse {
4064 200: ServerResult; 5229 200: ServerResult;
4065 /** 5230 /**
4066 * @description 5231 * @description
4067 - * Created  
4068 - */  
4069 - 201: any;  
4070 - /**  
4071 - * @description  
4072 * Unauthorized 5232 * Unauthorized
4073 */ 5233 */
4074 401: any; 5234 401: any;
@@ -4084,25 +5244,21 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse { @@ -4084,25 +5244,21 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse {
4084 404: any; 5244 404: any;
4085 } 5245 }
4086 5246
4087 -export type PostOrderErpCaptchaSendCaptchaCodeResponseSuccess =  
4088 - PostOrderErpCaptchaSendCaptchaCodeResponse[200]; 5247 +export type GetOrderErpIndexDataResponseSuccess =
  5248 + GetOrderErpIndexDataResponse[200];
4089 /** 5249 /**
4090 * @description 5250 * @description
4091 - * 获取验证码  
4092 - * @tags 验证码 5251 + * 首页统计数据
  5252 + * @tags 首页
4093 * @produces * 5253 * @produces *
4094 - * @consumes application/json  
4095 */ 5254 */
4096 -export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() => {  
4097 - const method = 'post';  
4098 - const url = '/order/erp/captcha/send_captcha_code';  
4099 - function request(  
4100 - option: PostOrderErpCaptchaSendCaptchaCodeOption,  
4101 - ): Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess> { 5255 +export const getOrderErpIndexData = /* #__PURE__ */ (() => {
  5256 + const method = 'get';
  5257 + const url = '/order/erp/index/data';
  5258 + function request(): Promise<GetOrderErpIndexDataResponseSuccess> {
4102 return requester(request.url, { 5259 return requester(request.url, {
4103 method: request.method, 5260 method: request.method,
4104 - ...option,  
4105 - }) as unknown as Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess>; 5261 + }) as unknown as Promise<GetOrderErpIndexDataResponseSuccess>;
4106 } 5262 }
4107 5263
4108 /** http method */ 5264 /** http method */
@@ -4112,22 +5268,22 @@ export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() =&gt; { @@ -4112,22 +5268,22 @@ export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() =&gt; {
4112 return request; 5268 return request;
4113 })(); 5269 })();
4114 5270
4115 -/** @description request parameter type for putOrderErpDepts */  
4116 -export interface PutOrderErpDeptsOption { 5271 +/** @description request parameter type for postOrderErpJobsAdd */
  5272 +export interface PostOrderErpJobsAddOption {
4117 /** 5273 /**
4118 * @description 5274 * @description
4119 - * deptVO 5275 + * jobVO
4120 */ 5276 */
4121 body: { 5277 body: {
4122 /** 5278 /**
4123 @description 5279 @description
4124 - deptVO */  
4125 - deptVO: AdminDeptVO; 5280 + jobVO */
  5281 + jobVO: AdminJobVO;
4126 }; 5282 };
4127 } 5283 }
4128 5284
4129 -/** @description response type for putOrderErpDepts */  
4130 -export interface PutOrderErpDeptsResponse { 5285 +/** @description response type for postOrderErpJobsAdd */
  5286 +export interface PostOrderErpJobsAddResponse {
4131 /** 5287 /**
4132 * @description 5288 * @description
4133 * OK 5289 * OK
@@ -4155,24 +5311,25 @@ export interface PutOrderErpDeptsResponse { @@ -4155,24 +5311,25 @@ export interface PutOrderErpDeptsResponse {
4155 404: any; 5311 404: any;
4156 } 5312 }
4157 5313
4158 -export type PutOrderErpDeptsResponseSuccess = PutOrderErpDeptsResponse[200]; 5314 +export type PostOrderErpJobsAddResponseSuccess =
  5315 + PostOrderErpJobsAddResponse[200];
4159 /** 5316 /**
4160 * @description 5317 * @description
4161 - * 修改部门  
4162 - * @tags 系统:部门管理 5318 + * 新增岗位
  5319 + * @tags 系统:岗位管理
4163 * @produces * 5320 * @produces *
4164 * @consumes application/json 5321 * @consumes application/json
4165 */ 5322 */
4166 -export const putOrderErpDepts = /* #__PURE__ */ (() => {  
4167 - const method = 'put';  
4168 - const url = '/order/erp/depts'; 5323 +export const postOrderErpJobsAdd = /* #__PURE__ */ (() => {
  5324 + const method = 'post';
  5325 + const url = '/order/erp/jobs/add';
4169 function request( 5326 function request(
4170 - option: PutOrderErpDeptsOption,  
4171 - ): Promise<PutOrderErpDeptsResponseSuccess> { 5327 + option: PostOrderErpJobsAddOption,
  5328 + ): Promise<PostOrderErpJobsAddResponseSuccess> {
4172 return requester(request.url, { 5329 return requester(request.url, {
4173 method: request.method, 5330 method: request.method,
4174 ...option, 5331 ...option,
4175 - }) as unknown as Promise<PutOrderErpDeptsResponseSuccess>; 5332 + }) as unknown as Promise<PostOrderErpJobsAddResponseSuccess>;
4176 } 5333 }
4177 5334
4178 /** http method */ 5335 /** http method */
@@ -4182,8 +5339,8 @@ export const putOrderErpDepts = /* #__PURE__ */ (() =&gt; { @@ -4182,8 +5339,8 @@ export const putOrderErpDepts = /* #__PURE__ */ (() =&gt; {
4182 return request; 5339 return request;
4183 })(); 5340 })();
4184 5341
4185 -/** @description request parameter type for deleteOrderErpDepts */  
4186 -export interface DeleteOrderErpDeptsOption { 5342 +/** @description request parameter type for postOrderErpJobsDelete */
  5343 +export interface PostOrderErpJobsDeleteOption {
4187 /** 5344 /**
4188 * @description 5345 * @description
4189 * queryVO 5346 * queryVO
@@ -4192,12 +5349,12 @@ export interface DeleteOrderErpDeptsOption { @@ -4192,12 +5349,12 @@ export interface DeleteOrderErpDeptsOption {
4192 /** 5349 /**
4193 @description 5350 @description
4194 queryVO */ 5351 queryVO */
4195 - queryVO: AdminDeptQueryVO; 5352 + queryVO: AdminJobQueryVO;
4196 }; 5353 };
4197 } 5354 }
4198 5355
4199 -/** @description response type for deleteOrderErpDepts */  
4200 -export interface DeleteOrderErpDeptsResponse { 5356 +/** @description response type for postOrderErpJobsDelete */
  5357 +export interface PostOrderErpJobsDeleteResponse {
4201 /** 5358 /**
4202 * @description 5359 * @description
4203 * OK 5360 * OK
@@ -4205,9 +5362,9 @@ export interface DeleteOrderErpDeptsResponse { @@ -4205,9 +5362,9 @@ export interface DeleteOrderErpDeptsResponse {
4205 200: ServerResult; 5362 200: ServerResult;
4206 /** 5363 /**
4207 * @description 5364 * @description
4208 - * No Content 5365 + * Created
4209 */ 5366 */
4210 - 204: any; 5367 + 201: any;
4211 /** 5368 /**
4212 * @description 5369 * @description
4213 * Unauthorized 5370 * Unauthorized
@@ -4218,26 +5375,32 @@ export interface DeleteOrderErpDeptsResponse { @@ -4218,26 +5375,32 @@ export interface DeleteOrderErpDeptsResponse {
4218 * Forbidden 5375 * Forbidden
4219 */ 5376 */
4220 403: any; 5377 403: any;
  5378 + /**
  5379 + * @description
  5380 + * Not Found
  5381 + */
  5382 + 404: any;
4221 } 5383 }
4222 5384
4223 -export type DeleteOrderErpDeptsResponseSuccess =  
4224 - DeleteOrderErpDeptsResponse[200]; 5385 +export type PostOrderErpJobsDeleteResponseSuccess =
  5386 + PostOrderErpJobsDeleteResponse[200];
4225 /** 5387 /**
4226 * @description 5388 * @description
4227 - * 删除部门  
4228 - * @tags 系统:部门管理 5389 + * 删除岗位
  5390 + * @tags 系统:岗位管理
4229 * @produces * 5391 * @produces *
  5392 + * @consumes application/json
4230 */ 5393 */
4231 -export const deleteOrderErpDepts = /* #__PURE__ */ (() => {  
4232 - const method = 'delete';  
4233 - const url = '/order/erp/depts'; 5394 +export const postOrderErpJobsDelete = /* #__PURE__ */ (() => {
  5395 + const method = 'post';
  5396 + const url = '/order/erp/jobs/delete';
4234 function request( 5397 function request(
4235 - option: DeleteOrderErpDeptsOption,  
4236 - ): Promise<DeleteOrderErpDeptsResponseSuccess> { 5398 + option: PostOrderErpJobsDeleteOption,
  5399 + ): Promise<PostOrderErpJobsDeleteResponseSuccess> {
4237 return requester(request.url, { 5400 return requester(request.url, {
4238 method: request.method, 5401 method: request.method,
4239 ...option, 5402 ...option,
4240 - }) as unknown as Promise<DeleteOrderErpDeptsResponseSuccess>; 5403 + }) as unknown as Promise<PostOrderErpJobsDeleteResponseSuccess>;
4241 } 5404 }
4242 5405
4243 /** http method */ 5406 /** http method */
@@ -4247,22 +5410,22 @@ export const deleteOrderErpDepts = /* #__PURE__ */ (() =&gt; { @@ -4247,22 +5410,22 @@ export const deleteOrderErpDepts = /* #__PURE__ */ (() =&gt; {
4247 return request; 5410 return request;
4248 })(); 5411 })();
4249 5412
4250 -/** @description request parameter type for postOrderErpDeptsAdd */  
4251 -export interface PostOrderErpDeptsAddOption { 5413 +/** @description request parameter type for postOrderErpJobsEdit */
  5414 +export interface PostOrderErpJobsEditOption {
4252 /** 5415 /**
4253 * @description 5416 * @description
4254 - * deptVO 5417 + * jobVO
4255 */ 5418 */
4256 body: { 5419 body: {
4257 /** 5420 /**
4258 @description 5421 @description
4259 - deptVO */  
4260 - deptVO: AdminDeptVO; 5422 + jobVO */
  5423 + jobVO: AdminJobVO;
4261 }; 5424 };
4262 } 5425 }
4263 5426
4264 -/** @description response type for postOrderErpDeptsAdd */  
4265 -export interface PostOrderErpDeptsAddResponse { 5427 +/** @description response type for postOrderErpJobsEdit */
  5428 +export interface PostOrderErpJobsEditResponse {
4266 /** 5429 /**
4267 * @description 5430 * @description
4268 * OK 5431 * OK
@@ -4290,25 +5453,25 @@ export interface PostOrderErpDeptsAddResponse { @@ -4290,25 +5453,25 @@ export interface PostOrderErpDeptsAddResponse {
4290 404: any; 5453 404: any;
4291 } 5454 }
4292 5455
4293 -export type PostOrderErpDeptsAddResponseSuccess =  
4294 - PostOrderErpDeptsAddResponse[200]; 5456 +export type PostOrderErpJobsEditResponseSuccess =
  5457 + PostOrderErpJobsEditResponse[200];
4295 /** 5458 /**
4296 * @description 5459 * @description
4297 - * 新增部门  
4298 - * @tags 系统:部门管理 5460 + * 修改岗位
  5461 + * @tags 系统:岗位管理
4299 * @produces * 5462 * @produces *
4300 * @consumes application/json 5463 * @consumes application/json
4301 */ 5464 */
4302 -export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => { 5465 +export const postOrderErpJobsEdit = /* #__PURE__ */ (() => {
4303 const method = 'post'; 5466 const method = 'post';
4304 - const url = '/order/erp/depts/add'; 5467 + const url = '/order/erp/jobs/edit';
4305 function request( 5468 function request(
4306 - option: PostOrderErpDeptsAddOption,  
4307 - ): Promise<PostOrderErpDeptsAddResponseSuccess> { 5469 + option: PostOrderErpJobsEditOption,
  5470 + ): Promise<PostOrderErpJobsEditResponseSuccess> {
4308 return requester(request.url, { 5471 return requester(request.url, {
4309 method: request.method, 5472 method: request.method,
4310 ...option, 5473 ...option,
4311 - }) as unknown as Promise<PostOrderErpDeptsAddResponseSuccess>; 5474 + }) as unknown as Promise<PostOrderErpJobsEditResponseSuccess>;
4312 } 5475 }
4313 5476
4314 /** http method */ 5477 /** http method */
@@ -4318,8 +5481,8 @@ export const postOrderErpDeptsAdd = /* #__PURE__ */ (() =&gt; { @@ -4318,8 +5481,8 @@ export const postOrderErpDeptsAdd = /* #__PURE__ */ (() =&gt; {
4318 return request; 5481 return request;
4319 })(); 5482 })();
4320 5483
4321 -/** @description request parameter type for postOrderErpDeptsListByPage */  
4322 -export interface PostOrderErpDeptsListByPageOption { 5484 +/** @description request parameter type for postOrderErpJobsListByPage */
  5485 +export interface PostOrderErpJobsListByPageOption {
4323 /** 5486 /**
4324 * @description 5487 * @description
4325 * queryVO 5488 * queryVO
@@ -4328,12 +5491,12 @@ export interface PostOrderErpDeptsListByPageOption { @@ -4328,12 +5491,12 @@ export interface PostOrderErpDeptsListByPageOption {
4328 /** 5491 /**
4329 @description 5492 @description
4330 queryVO */ 5493 queryVO */
4331 - queryVO: AdminDeptQueryVO; 5494 + queryVO: AdminJobQueryVO;
4332 }; 5495 };
4333 } 5496 }
4334 5497
4335 -/** @description response type for postOrderErpDeptsListByPage */  
4336 -export interface PostOrderErpDeptsListByPageResponse { 5498 +/** @description response type for postOrderErpJobsListByPage */
  5499 +export interface PostOrderErpJobsListByPageResponse {
4337 /** 5500 /**
4338 * @description 5501 * @description
4339 * OK 5502 * OK
@@ -4361,25 +5524,25 @@ export interface PostOrderErpDeptsListByPageResponse { @@ -4361,25 +5524,25 @@ export interface PostOrderErpDeptsListByPageResponse {
4361 404: any; 5524 404: any;
4362 } 5525 }
4363 5526
4364 -export type PostOrderErpDeptsListByPageResponseSuccess =  
4365 - PostOrderErpDeptsListByPageResponse[200]; 5527 +export type PostOrderErpJobsListByPageResponseSuccess =
  5528 + PostOrderErpJobsListByPageResponse[200];
4366 /** 5529 /**
4367 * @description 5530 * @description
4368 - * 查询部门  
4369 - * @tags 系统:部门管理 5531 + * 查询岗位
  5532 + * @tags 系统:岗位管理
4370 * @produces * 5533 * @produces *
4371 * @consumes application/json 5534 * @consumes application/json
4372 */ 5535 */
4373 -export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => { 5536 +export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => {
4374 const method = 'post'; 5537 const method = 'post';
4375 - const url = '/order/erp/depts/list_by_page'; 5538 + const url = '/order/erp/jobs/list_by_page';
4376 function request( 5539 function request(
4377 - option: PostOrderErpDeptsListByPageOption,  
4378 - ): Promise<PostOrderErpDeptsListByPageResponseSuccess> { 5540 + option: PostOrderErpJobsListByPageOption,
  5541 + ): Promise<PostOrderErpJobsListByPageResponseSuccess> {
4379 return requester(request.url, { 5542 return requester(request.url, {
4380 method: request.method, 5543 method: request.method,
4381 ...option, 5544 ...option,
4382 - }) as unknown as Promise<PostOrderErpDeptsListByPageResponseSuccess>; 5545 + }) as unknown as Promise<PostOrderErpJobsListByPageResponseSuccess>;
4383 } 5546 }
4384 5547
4385 /** http method */ 5548 /** http method */
@@ -4389,22 +5552,22 @@ export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() =&gt; { @@ -4389,22 +5552,22 @@ export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() =&gt; {
4389 return request; 5552 return request;
4390 })(); 5553 })();
4391 5554
4392 -/** @description request parameter type for postOrderErpDictionaryAdd */  
4393 -export interface PostOrderErpDictionaryAddOption { 5555 +/** @description request parameter type for postOrderErpLogsList */
  5556 +export interface PostOrderErpLogsListOption {
4394 /** 5557 /**
4395 * @description 5558 * @description
4396 - * dictionaryVO 5559 + * sysLogQueryVO
4397 */ 5560 */
4398 body: { 5561 body: {
4399 /** 5562 /**
4400 @description 5563 @description
4401 - dictionaryVO */  
4402 - dictionaryVO: DictionaryVO; 5564 + sysLogQueryVO */
  5565 + sysLogQueryVO: SysLogQueryVO;
4403 }; 5566 };
4404 } 5567 }
4405 5568
4406 -/** @description response type for postOrderErpDictionaryAdd */  
4407 -export interface PostOrderErpDictionaryAddResponse { 5569 +/** @description response type for postOrderErpLogsList */
  5570 +export interface PostOrderErpLogsListResponse {
4408 /** 5571 /**
4409 * @description 5572 * @description
4410 * OK 5573 * OK
@@ -4432,25 +5595,25 @@ export interface PostOrderErpDictionaryAddResponse { @@ -4432,25 +5595,25 @@ export interface PostOrderErpDictionaryAddResponse {
4432 404: any; 5595 404: any;
4433 } 5596 }
4434 5597
4435 -export type PostOrderErpDictionaryAddResponseSuccess =  
4436 - PostOrderErpDictionaryAddResponse[200]; 5598 +export type PostOrderErpLogsListResponseSuccess =
  5599 + PostOrderErpLogsListResponse[200];
4437 /** 5600 /**
4438 * @description 5601 * @description
4439 - * 新增字典  
4440 - * @tags 系统:字典管理 5602 + * 分页查询
  5603 + * @tags 系统日志
4441 * @produces * 5604 * @produces *
4442 * @consumes application/json 5605 * @consumes application/json
4443 */ 5606 */
4444 -export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => { 5607 +export const postOrderErpLogsList = /* #__PURE__ */ (() => {
4445 const method = 'post'; 5608 const method = 'post';
4446 - const url = '/order/erp/dictionary/add'; 5609 + const url = '/order/erp/logs/list';
4447 function request( 5610 function request(
4448 - option: PostOrderErpDictionaryAddOption,  
4449 - ): Promise<PostOrderErpDictionaryAddResponseSuccess> { 5611 + option: PostOrderErpLogsListOption,
  5612 + ): Promise<PostOrderErpLogsListResponseSuccess> {
4450 return requester(request.url, { 5613 return requester(request.url, {
4451 method: request.method, 5614 method: request.method,
4452 ...option, 5615 ...option,
4453 - }) as unknown as Promise<PostOrderErpDictionaryAddResponseSuccess>; 5616 + }) as unknown as Promise<PostOrderErpLogsListResponseSuccess>;
4454 } 5617 }
4455 5618
4456 /** http method */ 5619 /** http method */
@@ -4460,22 +5623,22 @@ export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() =&gt; { @@ -4460,22 +5623,22 @@ export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() =&gt; {
4460 return request; 5623 return request;
4461 })(); 5624 })();
4462 5625
4463 -/** @description request parameter type for postOrderErpDictionaryDelete */  
4464 -export interface PostOrderErpDictionaryDeleteOption { 5626 +/** @description request parameter type for postOrderErpMenusAdd */
  5627 +export interface PostOrderErpMenusAddOption {
4465 /** 5628 /**
4466 * @description 5629 * @description
4467 - * queryVO 5630 + * menuVO
4468 */ 5631 */
4469 body: { 5632 body: {
4470 /** 5633 /**
4471 @description 5634 @description
4472 - queryVO */  
4473 - queryVO: DictionaryQueryVO; 5635 + menuVO */
  5636 + menuVO: AdminMenuVO;
4474 }; 5637 };
4475 } 5638 }
4476 5639
4477 -/** @description response type for postOrderErpDictionaryDelete */  
4478 -export interface PostOrderErpDictionaryDeleteResponse { 5640 +/** @description response type for postOrderErpMenusAdd */
  5641 +export interface PostOrderErpMenusAddResponse {
4479 /** 5642 /**
4480 * @description 5643 * @description
4481 * OK 5644 * OK
@@ -4503,25 +5666,25 @@ export interface PostOrderErpDictionaryDeleteResponse { @@ -4503,25 +5666,25 @@ export interface PostOrderErpDictionaryDeleteResponse {
4503 404: any; 5666 404: any;
4504 } 5667 }
4505 5668
4506 -export type PostOrderErpDictionaryDeleteResponseSuccess =  
4507 - PostOrderErpDictionaryDeleteResponse[200]; 5669 +export type PostOrderErpMenusAddResponseSuccess =
  5670 + PostOrderErpMenusAddResponse[200];
4508 /** 5671 /**
4509 * @description 5672 * @description
4510 - * 删除字典  
4511 - * @tags 系统:字典管理 5673 + * 新增菜单
  5674 + * @tags 系统:菜单管理
4512 * @produces * 5675 * @produces *
4513 * @consumes application/json 5676 * @consumes application/json
4514 */ 5677 */
4515 -export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => { 5678 +export const postOrderErpMenusAdd = /* #__PURE__ */ (() => {
4516 const method = 'post'; 5679 const method = 'post';
4517 - const url = '/order/erp/dictionary/delete'; 5680 + const url = '/order/erp/menus/add';
4518 function request( 5681 function request(
4519 - option: PostOrderErpDictionaryDeleteOption,  
4520 - ): Promise<PostOrderErpDictionaryDeleteResponseSuccess> { 5682 + option: PostOrderErpMenusAddOption,
  5683 + ): Promise<PostOrderErpMenusAddResponseSuccess> {
4521 return requester(request.url, { 5684 return requester(request.url, {
4522 method: request.method, 5685 method: request.method,
4523 ...option, 5686 ...option,
4524 - }) as unknown as Promise<PostOrderErpDictionaryDeleteResponseSuccess>; 5687 + }) as unknown as Promise<PostOrderErpMenusAddResponseSuccess>;
4525 } 5688 }
4526 5689
4527 /** http method */ 5690 /** http method */
@@ -4531,22 +5694,22 @@ export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() =&gt; { @@ -4531,22 +5694,22 @@ export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() =&gt; {
4531 return request; 5694 return request;
4532 })(); 5695 })();
4533 5696
4534 -/** @description request parameter type for postOrderErpDictionaryEdit */  
4535 -export interface PostOrderErpDictionaryEditOption { 5697 +/** @description request parameter type for postOrderErpMenusAll */
  5698 +export interface PostOrderErpMenusAllOption {
4536 /** 5699 /**
4537 * @description 5700 * @description
4538 - * dictionaryVO 5701 + * queryVO
4539 */ 5702 */
4540 body: { 5703 body: {
4541 /** 5704 /**
4542 @description 5705 @description
4543 - dictionaryVO */  
4544 - dictionaryVO: DictionaryVO; 5706 + queryVO */
  5707 + queryVO: AdminMenuQueryVO;
4545 }; 5708 };
4546 } 5709 }
4547 5710
4548 -/** @description response type for postOrderErpDictionaryEdit */  
4549 -export interface PostOrderErpDictionaryEditResponse { 5711 +/** @description response type for postOrderErpMenusAll */
  5712 +export interface PostOrderErpMenusAllResponse {
4550 /** 5713 /**
4551 * @description 5714 * @description
4552 * OK 5715 * OK
@@ -4574,25 +5737,25 @@ export interface PostOrderErpDictionaryEditResponse { @@ -4574,25 +5737,25 @@ export interface PostOrderErpDictionaryEditResponse {
4574 404: any; 5737 404: any;
4575 } 5738 }
4576 5739
4577 -export type PostOrderErpDictionaryEditResponseSuccess =  
4578 - PostOrderErpDictionaryEditResponse[200]; 5740 +export type PostOrderErpMenusAllResponseSuccess =
  5741 + PostOrderErpMenusAllResponse[200];
4579 /** 5742 /**
4580 * @description 5743 * @description
4581 - * 修改字典  
4582 - * @tags 系统:字典管理 5744 + * 查询菜单
  5745 + * @tags 系统:菜单管理
4583 * @produces * 5746 * @produces *
4584 * @consumes application/json 5747 * @consumes application/json
4585 */ 5748 */
4586 -export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => { 5749 +export const postOrderErpMenusAll = /* #__PURE__ */ (() => {
4587 const method = 'post'; 5750 const method = 'post';
4588 - const url = '/order/erp/dictionary/edit'; 5751 + const url = '/order/erp/menus/all';
4589 function request( 5752 function request(
4590 - option: PostOrderErpDictionaryEditOption,  
4591 - ): Promise<PostOrderErpDictionaryEditResponseSuccess> { 5753 + option: PostOrderErpMenusAllOption,
  5754 + ): Promise<PostOrderErpMenusAllResponseSuccess> {
4592 return requester(request.url, { 5755 return requester(request.url, {
4593 method: request.method, 5756 method: request.method,
4594 ...option, 5757 ...option,
4595 - }) as unknown as Promise<PostOrderErpDictionaryEditResponseSuccess>; 5758 + }) as unknown as Promise<PostOrderErpMenusAllResponseSuccess>;
4596 } 5759 }
4597 5760
4598 /** http method */ 5761 /** http method */
@@ -4602,22 +5765,8 @@ export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() =&gt; { @@ -4602,22 +5765,8 @@ export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() =&gt; {
4602 return request; 5765 return request;
4603 })(); 5766 })();
4604 5767
4605 -/** @description request parameter type for postOrderErpDictionaryGetAll */  
4606 -export interface PostOrderErpDictionaryGetAllOption {  
4607 - /**  
4608 - * @description  
4609 - * queryVO  
4610 - */  
4611 - body: {  
4612 - /**  
4613 - @description  
4614 - queryVO */  
4615 - queryVO: DictionaryQueryVO;  
4616 - };  
4617 -}  
4618 -  
4619 -/** @description response type for postOrderErpDictionaryGetAll */  
4620 -export interface PostOrderErpDictionaryGetAllResponse { 5768 +/** @description response type for postOrderErpMenusBuild */
  5769 +export interface PostOrderErpMenusBuildResponse {
4621 /** 5770 /**
4622 * @description 5771 * @description
4623 * OK 5772 * OK
@@ -4645,25 +5794,22 @@ export interface PostOrderErpDictionaryGetAllResponse { @@ -4645,25 +5794,22 @@ export interface PostOrderErpDictionaryGetAllResponse {
4645 404: any; 5794 404: any;
4646 } 5795 }
4647 5796
4648 -export type PostOrderErpDictionaryGetAllResponseSuccess =  
4649 - PostOrderErpDictionaryGetAllResponse[200]; 5797 +export type PostOrderErpMenusBuildResponseSuccess =
  5798 + PostOrderErpMenusBuildResponse[200];
4650 /** 5799 /**
4651 * @description 5800 * @description
4652 - * 获取所有字典  
4653 - * @tags 系统:字典管理 5801 + * 获取前端所需菜单
  5802 + * @tags 系统:菜单管理
4654 * @produces * 5803 * @produces *
4655 * @consumes application/json 5804 * @consumes application/json
4656 */ 5805 */
4657 -export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => { 5806 +export const postOrderErpMenusBuild = /* #__PURE__ */ (() => {
4658 const method = 'post'; 5807 const method = 'post';
4659 - const url = '/order/erp/dictionary/get_all';  
4660 - function request(  
4661 - option: PostOrderErpDictionaryGetAllOption,  
4662 - ): Promise<PostOrderErpDictionaryGetAllResponseSuccess> { 5808 + const url = '/order/erp/menus/build';
  5809 + function request(): Promise<PostOrderErpMenusBuildResponseSuccess> {
4663 return requester(request.url, { 5810 return requester(request.url, {
4664 method: request.method, 5811 method: request.method,
4665 - ...option,  
4666 - }) as unknown as Promise<PostOrderErpDictionaryGetAllResponseSuccess>; 5812 + }) as unknown as Promise<PostOrderErpMenusBuildResponseSuccess>;
4667 } 5813 }
4668 5814
4669 /** http method */ 5815 /** http method */
@@ -4673,8 +5819,8 @@ export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() =&gt; { @@ -4673,8 +5819,8 @@ export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() =&gt; {
4673 return request; 5819 return request;
4674 })(); 5820 })();
4675 5821
4676 -/** @description request parameter type for postOrderErpDictionaryListByPage */  
4677 -export interface PostOrderErpDictionaryListByPageOption { 5822 +/** @description request parameter type for postOrderErpMenusDelete */
  5823 +export interface PostOrderErpMenusDeleteOption {
4678 /** 5824 /**
4679 * @description 5825 * @description
4680 * queryVO 5826 * queryVO
@@ -4683,12 +5829,12 @@ export interface PostOrderErpDictionaryListByPageOption { @@ -4683,12 +5829,12 @@ export interface PostOrderErpDictionaryListByPageOption {
4683 /** 5829 /**
4684 @description 5830 @description
4685 queryVO */ 5831 queryVO */
4686 - queryVO: DictionaryQueryVO; 5832 + queryVO: AdminMenuQueryVO;
4687 }; 5833 };
4688 } 5834 }
4689 5835
4690 -/** @description response type for postOrderErpDictionaryListByPage */  
4691 -export interface PostOrderErpDictionaryListByPageResponse { 5836 +/** @description response type for postOrderErpMenusDelete */
  5837 +export interface PostOrderErpMenusDeleteResponse {
4692 /** 5838 /**
4693 * @description 5839 * @description
4694 * OK 5840 * OK
@@ -4716,25 +5862,25 @@ export interface PostOrderErpDictionaryListByPageResponse { @@ -4716,25 +5862,25 @@ export interface PostOrderErpDictionaryListByPageResponse {
4716 404: any; 5862 404: any;
4717 } 5863 }
4718 5864
4719 -export type PostOrderErpDictionaryListByPageResponseSuccess =  
4720 - PostOrderErpDictionaryListByPageResponse[200]; 5865 +export type PostOrderErpMenusDeleteResponseSuccess =
  5866 + PostOrderErpMenusDeleteResponse[200];
4721 /** 5867 /**
4722 * @description 5868 * @description
4723 - * 查询字典列表  
4724 - * @tags 系统:字典管理 5869 + * 删除菜单
  5870 + * @tags 系统:菜单管理
4725 * @produces * 5871 * @produces *
4726 * @consumes application/json 5872 * @consumes application/json
4727 */ 5873 */
4728 -export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => { 5874 +export const postOrderErpMenusDelete = /* #__PURE__ */ (() => {
4729 const method = 'post'; 5875 const method = 'post';
4730 - const url = '/order/erp/dictionary/list_by_page'; 5876 + const url = '/order/erp/menus/delete';
4731 function request( 5877 function request(
4732 - option: PostOrderErpDictionaryListByPageOption,  
4733 - ): Promise<PostOrderErpDictionaryListByPageResponseSuccess> { 5878 + option: PostOrderErpMenusDeleteOption,
  5879 + ): Promise<PostOrderErpMenusDeleteResponseSuccess> {
4734 return requester(request.url, { 5880 return requester(request.url, {
4735 method: request.method, 5881 method: request.method,
4736 ...option, 5882 ...option,
4737 - }) as unknown as Promise<PostOrderErpDictionaryListByPageResponseSuccess>; 5883 + }) as unknown as Promise<PostOrderErpMenusDeleteResponseSuccess>;
4738 } 5884 }
4739 5885
4740 /** http method */ 5886 /** http method */
@@ -4744,8 +5890,22 @@ export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() =&gt; { @@ -4744,8 +5890,22 @@ export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() =&gt; {
4744 return request; 5890 return request;
4745 })(); 5891 })();
4746 5892
4747 -/** @description response type for getOrderErpIndexChartData */  
4748 -export interface GetOrderErpIndexChartDataResponse { 5893 +/** @description request parameter type for postOrderErpMenusEdit */
  5894 +export interface PostOrderErpMenusEditOption {
  5895 + /**
  5896 + * @description
  5897 + * menuVO
  5898 + */
  5899 + body: {
  5900 + /**
  5901 + @description
  5902 + menuVO */
  5903 + menuVO: AdminMenuVO;
  5904 + };
  5905 +}
  5906 +
  5907 +/** @description response type for postOrderErpMenusEdit */
  5908 +export interface PostOrderErpMenusEditResponse {
4749 /** 5909 /**
4750 * @description 5910 * @description
4751 * OK 5911 * OK
@@ -4753,6 +5913,11 @@ export interface GetOrderErpIndexChartDataResponse { @@ -4753,6 +5913,11 @@ export interface GetOrderErpIndexChartDataResponse {
4753 200: ServerResult; 5913 200: ServerResult;
4754 /** 5914 /**
4755 * @description 5915 * @description
  5916 + * Created
  5917 + */
  5918 + 201: any;
  5919 + /**
  5920 + * @description
4756 * Unauthorized 5921 * Unauthorized
4757 */ 5922 */
4758 401: any; 5923 401: any;
@@ -4768,21 +5933,25 @@ export interface GetOrderErpIndexChartDataResponse { @@ -4768,21 +5933,25 @@ export interface GetOrderErpIndexChartDataResponse {
4768 404: any; 5933 404: any;
4769 } 5934 }
4770 5935
4771 -export type GetOrderErpIndexChartDataResponseSuccess =  
4772 - GetOrderErpIndexChartDataResponse[200]; 5936 +export type PostOrderErpMenusEditResponseSuccess =
  5937 + PostOrderErpMenusEditResponse[200];
4773 /** 5938 /**
4774 * @description 5939 * @description
4775 - * 首页订单趋势  
4776 - * @tags 首页 5940 + * 修改菜单
  5941 + * @tags 系统:菜单管理
4777 * @produces * 5942 * @produces *
  5943 + * @consumes application/json
4778 */ 5944 */
4779 -export const getOrderErpIndexChartData = /* #__PURE__ */ (() => {  
4780 - const method = 'get';  
4781 - const url = '/order/erp/index/chartData';  
4782 - function request(): Promise<GetOrderErpIndexChartDataResponseSuccess> { 5945 +export const postOrderErpMenusEdit = /* #__PURE__ */ (() => {
  5946 + const method = 'post';
  5947 + const url = '/order/erp/menus/edit';
  5948 + function request(
  5949 + option: PostOrderErpMenusEditOption,
  5950 + ): Promise<PostOrderErpMenusEditResponseSuccess> {
4783 return requester(request.url, { 5951 return requester(request.url, {
4784 method: request.method, 5952 method: request.method,
4785 - }) as unknown as Promise<GetOrderErpIndexChartDataResponseSuccess>; 5953 + ...option,
  5954 + }) as unknown as Promise<PostOrderErpMenusEditResponseSuccess>;
4786 } 5955 }
4787 5956
4788 /** http method */ 5957 /** http method */
@@ -4792,8 +5961,8 @@ export const getOrderErpIndexChartData = /* #__PURE__ */ (() =&gt; { @@ -4792,8 +5961,8 @@ export const getOrderErpIndexChartData = /* #__PURE__ */ (() =&gt; {
4792 return request; 5961 return request;
4793 })(); 5962 })();
4794 5963
4795 -/** @description response type for getOrderErpIndexData */  
4796 -export interface GetOrderErpIndexDataResponse { 5964 +/** @description response type for postOrderErpMenusTree */
  5965 +export interface PostOrderErpMenusTreeResponse {
4797 /** 5966 /**
4798 * @description 5967 * @description
4799 * OK 5968 * OK
@@ -4801,6 +5970,11 @@ export interface GetOrderErpIndexDataResponse { @@ -4801,6 +5970,11 @@ export interface GetOrderErpIndexDataResponse {
4801 200: ServerResult; 5970 200: ServerResult;
4802 /** 5971 /**
4803 * @description 5972 * @description
  5973 + * Created
  5974 + */
  5975 + 201: any;
  5976 + /**
  5977 + * @description
4804 * Unauthorized 5978 * Unauthorized
4805 */ 5979 */
4806 401: any; 5980 401: any;
@@ -4816,21 +5990,22 @@ export interface GetOrderErpIndexDataResponse { @@ -4816,21 +5990,22 @@ export interface GetOrderErpIndexDataResponse {
4816 404: any; 5990 404: any;
4817 } 5991 }
4818 5992
4819 -export type GetOrderErpIndexDataResponseSuccess =  
4820 - GetOrderErpIndexDataResponse[200]; 5993 +export type PostOrderErpMenusTreeResponseSuccess =
  5994 + PostOrderErpMenusTreeResponse[200];
4821 /** 5995 /**
4822 * @description 5996 * @description
4823 - * 首页统计数据  
4824 - * @tags 首页 5997 + * 返回全部的菜单
  5998 + * @tags 系统:菜单管理
4825 * @produces * 5999 * @produces *
  6000 + * @consumes application/json
4826 */ 6001 */
4827 -export const getOrderErpIndexData = /* #__PURE__ */ (() => {  
4828 - const method = 'get';  
4829 - const url = '/order/erp/index/data';  
4830 - function request(): Promise<GetOrderErpIndexDataResponseSuccess> { 6002 +export const postOrderErpMenusTree = /* #__PURE__ */ (() => {
  6003 + const method = 'post';
  6004 + const url = '/order/erp/menus/tree';
  6005 + function request(): Promise<PostOrderErpMenusTreeResponseSuccess> {
4831 return requester(request.url, { 6006 return requester(request.url, {
4832 method: request.method, 6007 method: request.method,
4833 - }) as unknown as Promise<GetOrderErpIndexDataResponseSuccess>; 6008 + }) as unknown as Promise<PostOrderErpMenusTreeResponseSuccess>;
4834 } 6009 }
4835 6010
4836 /** http method */ 6011 /** http method */
@@ -4840,22 +6015,8 @@ export const getOrderErpIndexData = /* #__PURE__ */ (() =&gt; { @@ -4840,22 +6015,8 @@ export const getOrderErpIndexData = /* #__PURE__ */ (() =&gt; {
4840 return request; 6015 return request;
4841 })(); 6016 })();
4842 6017
4843 -/** @description request parameter type for postOrderErpJobsAdd */  
4844 -export interface PostOrderErpJobsAddOption {  
4845 - /**  
4846 - * @description  
4847 - * jobVO  
4848 - */  
4849 - body: {  
4850 - /**  
4851 - @description  
4852 - jobVO */  
4853 - jobVO: AdminJobVO;  
4854 - };  
4855 -}  
4856 -  
4857 -/** @description response type for postOrderErpJobsAdd */  
4858 -export interface PostOrderErpJobsAddResponse { 6018 +/** @description response type for postOrderErpMessageGetUnreadNum */
  6019 +export interface PostOrderErpMessageGetUnreadNumResponse {
4859 /** 6020 /**
4860 * @description 6021 * @description
4861 * OK 6022 * OK
@@ -4883,25 +6044,22 @@ export interface PostOrderErpJobsAddResponse { @@ -4883,25 +6044,22 @@ export interface PostOrderErpJobsAddResponse {
4883 404: any; 6044 404: any;
4884 } 6045 }
4885 6046
4886 -export type PostOrderErpJobsAddResponseSuccess =  
4887 - PostOrderErpJobsAddResponse[200]; 6047 +export type PostOrderErpMessageGetUnreadNumResponseSuccess =
  6048 + PostOrderErpMessageGetUnreadNumResponse[200];
4888 /** 6049 /**
4889 * @description 6050 * @description
4890 - * 新增岗位  
4891 - * @tags 系统:岗位管理 6051 + * getUnreadNum
  6052 + * @tags message-controller
4892 * @produces * 6053 * @produces *
4893 * @consumes application/json 6054 * @consumes application/json
4894 */ 6055 */
4895 -export const postOrderErpJobsAdd = /* #__PURE__ */ (() => { 6056 +export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => {
4896 const method = 'post'; 6057 const method = 'post';
4897 - const url = '/order/erp/jobs/add';  
4898 - function request(  
4899 - option: PostOrderErpJobsAddOption,  
4900 - ): Promise<PostOrderErpJobsAddResponseSuccess> { 6058 + const url = '/order/erp/message/getUnreadNum';
  6059 + function request(): Promise<PostOrderErpMessageGetUnreadNumResponseSuccess> {
4901 return requester(request.url, { 6060 return requester(request.url, {
4902 method: request.method, 6061 method: request.method,
4903 - ...option,  
4904 - }) as unknown as Promise<PostOrderErpJobsAddResponseSuccess>; 6062 + }) as unknown as Promise<PostOrderErpMessageGetUnreadNumResponseSuccess>;
4905 } 6063 }
4906 6064
4907 /** http method */ 6065 /** http method */
@@ -4911,22 +6069,22 @@ export const postOrderErpJobsAdd = /* #__PURE__ */ (() =&gt; { @@ -4911,22 +6069,22 @@ export const postOrderErpJobsAdd = /* #__PURE__ */ (() =&gt; {
4911 return request; 6069 return request;
4912 })(); 6070 })();
4913 6071
4914 -/** @description request parameter type for postOrderErpJobsDelete */  
4915 -export interface PostOrderErpJobsDeleteOption { 6072 +/** @description request parameter type for postOrderErpMessageQueryMyMessage */
  6073 +export interface PostOrderErpMessageQueryMyMessageOption {
4916 /** 6074 /**
4917 * @description 6075 * @description
4918 - * queryVO 6076 + * messageQueryDTO
4919 */ 6077 */
4920 body: { 6078 body: {
4921 /** 6079 /**
4922 @description 6080 @description
4923 - queryVO */  
4924 - queryVO: AdminJobQueryVO; 6081 + messageQueryDTO */
  6082 + messageQueryDTO: MessageQueryDTO;
4925 }; 6083 };
4926 } 6084 }
4927 6085
4928 -/** @description response type for postOrderErpJobsDelete */  
4929 -export interface PostOrderErpJobsDeleteResponse { 6086 +/** @description response type for postOrderErpMessageQueryMyMessage */
  6087 +export interface PostOrderErpMessageQueryMyMessageResponse {
4930 /** 6088 /**
4931 * @description 6089 * @description
4932 * OK 6090 * OK
@@ -4954,25 +6112,25 @@ export interface PostOrderErpJobsDeleteResponse { @@ -4954,25 +6112,25 @@ export interface PostOrderErpJobsDeleteResponse {
4954 404: any; 6112 404: any;
4955 } 6113 }
4956 6114
4957 -export type PostOrderErpJobsDeleteResponseSuccess =  
4958 - PostOrderErpJobsDeleteResponse[200]; 6115 +export type PostOrderErpMessageQueryMyMessageResponseSuccess =
  6116 + PostOrderErpMessageQueryMyMessageResponse[200];
4959 /** 6117 /**
4960 * @description 6118 * @description
4961 - * 删除岗位  
4962 - * @tags 系统:岗位管理 6119 + * queryMyMessage
  6120 + * @tags message-controller
4963 * @produces * 6121 * @produces *
4964 * @consumes application/json 6122 * @consumes application/json
4965 */ 6123 */
4966 -export const postOrderErpJobsDelete = /* #__PURE__ */ (() => { 6124 +export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => {
4967 const method = 'post'; 6125 const method = 'post';
4968 - const url = '/order/erp/jobs/delete'; 6126 + const url = '/order/erp/message/queryMyMessage';
4969 function request( 6127 function request(
4970 - option: PostOrderErpJobsDeleteOption,  
4971 - ): Promise<PostOrderErpJobsDeleteResponseSuccess> { 6128 + option: PostOrderErpMessageQueryMyMessageOption,
  6129 + ): Promise<PostOrderErpMessageQueryMyMessageResponseSuccess> {
4972 return requester(request.url, { 6130 return requester(request.url, {
4973 method: request.method, 6131 method: request.method,
4974 ...option, 6132 ...option,
4975 - }) as unknown as Promise<PostOrderErpJobsDeleteResponseSuccess>; 6133 + }) as unknown as Promise<PostOrderErpMessageQueryMyMessageResponseSuccess>;
4976 } 6134 }
4977 6135
4978 /** http method */ 6136 /** http method */
@@ -4982,22 +6140,22 @@ export const postOrderErpJobsDelete = /* #__PURE__ */ (() =&gt; { @@ -4982,22 +6140,22 @@ export const postOrderErpJobsDelete = /* #__PURE__ */ (() =&gt; {
4982 return request; 6140 return request;
4983 })(); 6141 })();
4984 6142
4985 -/** @description request parameter type for postOrderErpJobsEdit */  
4986 -export interface PostOrderErpJobsEditOption { 6143 +/** @description request parameter type for postOrderErpMessageRead */
  6144 +export interface PostOrderErpMessageReadOption {
4987 /** 6145 /**
4988 * @description 6146 * @description
4989 - * jobVO 6147 + * ids
4990 */ 6148 */
4991 body: { 6149 body: {
4992 /** 6150 /**
4993 @description 6151 @description
4994 - jobVO */  
4995 - jobVO: AdminJobVO; 6152 + ids */
  6153 + ids: Array<number>;
4996 }; 6154 };
4997 } 6155 }
4998 6156
4999 -/** @description response type for postOrderErpJobsEdit */  
5000 -export interface PostOrderErpJobsEditResponse { 6157 +/** @description response type for postOrderErpMessageRead */
  6158 +export interface PostOrderErpMessageReadResponse {
5001 /** 6159 /**
5002 * @description 6160 * @description
5003 * OK 6161 * OK
@@ -5025,25 +6183,25 @@ export interface PostOrderErpJobsEditResponse { @@ -5025,25 +6183,25 @@ export interface PostOrderErpJobsEditResponse {
5025 404: any; 6183 404: any;
5026 } 6184 }
5027 6185
5028 -export type PostOrderErpJobsEditResponseSuccess =  
5029 - PostOrderErpJobsEditResponse[200]; 6186 +export type PostOrderErpMessageReadResponseSuccess =
  6187 + PostOrderErpMessageReadResponse[200];
5030 /** 6188 /**
5031 * @description 6189 * @description
5032 - * 修改岗位  
5033 - * @tags 系统:岗位管理 6190 + * read
  6191 + * @tags message-controller
5034 * @produces * 6192 * @produces *
5035 * @consumes application/json 6193 * @consumes application/json
5036 */ 6194 */
5037 -export const postOrderErpJobsEdit = /* #__PURE__ */ (() => { 6195 +export const postOrderErpMessageRead = /* #__PURE__ */ (() => {
5038 const method = 'post'; 6196 const method = 'post';
5039 - const url = '/order/erp/jobs/edit'; 6197 + const url = '/order/erp/message/read';
5040 function request( 6198 function request(
5041 - option: PostOrderErpJobsEditOption,  
5042 - ): Promise<PostOrderErpJobsEditResponseSuccess> { 6199 + option: PostOrderErpMessageReadOption,
  6200 + ): Promise<PostOrderErpMessageReadResponseSuccess> {
5043 return requester(request.url, { 6201 return requester(request.url, {
5044 method: request.method, 6202 method: request.method,
5045 ...option, 6203 ...option,
5046 - }) as unknown as Promise<PostOrderErpJobsEditResponseSuccess>; 6204 + }) as unknown as Promise<PostOrderErpMessageReadResponseSuccess>;
5047 } 6205 }
5048 6206
5049 /** http method */ 6207 /** http method */
@@ -5053,22 +6211,8 @@ export const postOrderErpJobsEdit = /* #__PURE__ */ (() =&gt; { @@ -5053,22 +6211,8 @@ export const postOrderErpJobsEdit = /* #__PURE__ */ (() =&gt; {
5053 return request; 6211 return request;
5054 })(); 6212 })();
5055 6213
5056 -/** @description request parameter type for postOrderErpJobsListByPage */  
5057 -export interface PostOrderErpJobsListByPageOption {  
5058 - /**  
5059 - * @description  
5060 - * queryVO  
5061 - */  
5062 - body: {  
5063 - /**  
5064 - @description  
5065 - queryVO */  
5066 - queryVO: AdminJobQueryVO;  
5067 - };  
5068 -}  
5069 -  
5070 -/** @description response type for postOrderErpJobsListByPage */  
5071 -export interface PostOrderErpJobsListByPageResponse { 6214 +/** @description response type for postOrderErpMessageReadAll */
  6215 +export interface PostOrderErpMessageReadAllResponse {
5072 /** 6216 /**
5073 * @description 6217 * @description
5074 * OK 6218 * OK
@@ -5096,25 +6240,22 @@ export interface PostOrderErpJobsListByPageResponse { @@ -5096,25 +6240,22 @@ export interface PostOrderErpJobsListByPageResponse {
5096 404: any; 6240 404: any;
5097 } 6241 }
5098 6242
5099 -export type PostOrderErpJobsListByPageResponseSuccess =  
5100 - PostOrderErpJobsListByPageResponse[200]; 6243 +export type PostOrderErpMessageReadAllResponseSuccess =
  6244 + PostOrderErpMessageReadAllResponse[200];
5101 /** 6245 /**
5102 * @description 6246 * @description
5103 - * 查询岗位  
5104 - * @tags 系统:岗位管理 6247 + * readAll
  6248 + * @tags message-controller
5105 * @produces * 6249 * @produces *
5106 * @consumes application/json 6250 * @consumes application/json
5107 */ 6251 */
5108 -export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => { 6252 +export const postOrderErpMessageReadAll = /* #__PURE__ */ (() => {
5109 const method = 'post'; 6253 const method = 'post';
5110 - const url = '/order/erp/jobs/list_by_page';  
5111 - function request(  
5112 - option: PostOrderErpJobsListByPageOption,  
5113 - ): Promise<PostOrderErpJobsListByPageResponseSuccess> { 6254 + const url = '/order/erp/message/readAll';
  6255 + function request(): Promise<PostOrderErpMessageReadAllResponseSuccess> {
5114 return requester(request.url, { 6256 return requester(request.url, {
5115 method: request.method, 6257 method: request.method,
5116 - ...option,  
5117 - }) as unknown as Promise<PostOrderErpJobsListByPageResponseSuccess>; 6258 + }) as unknown as Promise<PostOrderErpMessageReadAllResponseSuccess>;
5118 } 6259 }
5119 6260
5120 /** http method */ 6261 /** http method */
@@ -5124,22 +6265,22 @@ export const postOrderErpJobsListByPage = /* #__PURE__ */ (() =&gt; { @@ -5124,22 +6265,22 @@ export const postOrderErpJobsListByPage = /* #__PURE__ */ (() =&gt; {
5124 return request; 6265 return request;
5125 })(); 6266 })();
5126 6267
5127 -/** @description request parameter type for postOrderErpLogsList */  
5128 -export interface PostOrderErpLogsListOption { 6268 +/** @description request parameter type for postOrderErpOptLogListByPage */
  6269 +export interface PostOrderErpOptLogListByPageOption {
5129 /** 6270 /**
5130 * @description 6271 * @description
5131 - * sysLogQueryVO 6272 + * queryVO
5132 */ 6273 */
5133 body: { 6274 body: {
5134 /** 6275 /**
5135 @description 6276 @description
5136 - sysLogQueryVO */  
5137 - sysLogQueryVO: SysLogQueryVO; 6277 + queryVO */
  6278 + queryVO: OrderOptLogQueryVO;
5138 }; 6279 };
5139 } 6280 }
5140 6281
5141 -/** @description response type for postOrderErpLogsList */  
5142 -export interface PostOrderErpLogsListResponse { 6282 +/** @description response type for postOrderErpOptLogListByPage */
  6283 +export interface PostOrderErpOptLogListByPageResponse {
5143 /** 6284 /**
5144 * @description 6285 * @description
5145 * OK 6286 * OK
@@ -5167,25 +6308,25 @@ export interface PostOrderErpLogsListResponse { @@ -5167,25 +6308,25 @@ export interface PostOrderErpLogsListResponse {
5167 404: any; 6308 404: any;
5168 } 6309 }
5169 6310
5170 -export type PostOrderErpLogsListResponseSuccess =  
5171 - PostOrderErpLogsListResponse[200]; 6311 +export type PostOrderErpOptLogListByPageResponseSuccess =
  6312 + PostOrderErpOptLogListByPageResponse[200];
5172 /** 6313 /**
5173 * @description 6314 * @description
5174 * 分页查询 6315 * 分页查询
5175 - * @tags 系统日志 6316 + * @tags 订单操作日志
5176 * @produces * 6317 * @produces *
5177 * @consumes application/json 6318 * @consumes application/json
5178 */ 6319 */
5179 -export const postOrderErpLogsList = /* #__PURE__ */ (() => { 6320 +export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => {
5180 const method = 'post'; 6321 const method = 'post';
5181 - const url = '/order/erp/logs/list'; 6322 + const url = '/order/erp/opt/log/list_by_page';
5182 function request( 6323 function request(
5183 - option: PostOrderErpLogsListOption,  
5184 - ): Promise<PostOrderErpLogsListResponseSuccess> { 6324 + option: PostOrderErpOptLogListByPageOption,
  6325 + ): Promise<PostOrderErpOptLogListByPageResponseSuccess> {
5185 return requester(request.url, { 6326 return requester(request.url, {
5186 method: request.method, 6327 method: request.method,
5187 ...option, 6328 ...option,
5188 - }) as unknown as Promise<PostOrderErpLogsListResponseSuccess>; 6329 + }) as unknown as Promise<PostOrderErpOptLogListByPageResponseSuccess>;
5189 } 6330 }
5190 6331
5191 /** http method */ 6332 /** http method */
@@ -5195,22 +6336,22 @@ export const postOrderErpLogsList = /* #__PURE__ */ (() =&gt; { @@ -5195,22 +6336,22 @@ export const postOrderErpLogsList = /* #__PURE__ */ (() =&gt; {
5195 return request; 6336 return request;
5196 })(); 6337 })();
5197 6338
5198 -/** @description request parameter type for postOrderErpMenusAdd */  
5199 -export interface PostOrderErpMenusAddOption { 6339 +/** @description request parameter type for postOrderErpOrderAdd */
  6340 +export interface PostOrderErpOrderAddOption {
5200 /** 6341 /**
5201 * @description 6342 * @description
5202 - * menuVO 6343 + * orderAddVO
5203 */ 6344 */
5204 body: { 6345 body: {
5205 /** 6346 /**
5206 @description 6347 @description
5207 - menuVO */  
5208 - menuVO: AdminMenuVO; 6348 + orderAddVO */
  6349 + orderAddVO: OrderAddVO;
5209 }; 6350 };
5210 } 6351 }
5211 6352
5212 -/** @description response type for postOrderErpMenusAdd */  
5213 -export interface PostOrderErpMenusAddResponse { 6353 +/** @description response type for postOrderErpOrderAdd */
  6354 +export interface PostOrderErpOrderAddResponse {
5214 /** 6355 /**
5215 * @description 6356 * @description
5216 * OK 6357 * OK
@@ -5238,25 +6379,25 @@ export interface PostOrderErpMenusAddResponse { @@ -5238,25 +6379,25 @@ export interface PostOrderErpMenusAddResponse {
5238 404: any; 6379 404: any;
5239 } 6380 }
5240 6381
5241 -export type PostOrderErpMenusAddResponseSuccess =  
5242 - PostOrderErpMenusAddResponse[200]; 6382 +export type PostOrderErpOrderAddResponseSuccess =
  6383 + PostOrderErpOrderAddResponse[200];
5243 /** 6384 /**
5244 * @description 6385 * @description
5245 - * 新增菜单  
5246 - * @tags 系统:菜单管理 6386 + * 新增数据
  6387 + * @tags 订单管理
5247 * @produces * 6388 * @produces *
5248 * @consumes application/json 6389 * @consumes application/json
5249 */ 6390 */
5250 -export const postOrderErpMenusAdd = /* #__PURE__ */ (() => { 6391 +export const postOrderErpOrderAdd = /* #__PURE__ */ (() => {
5251 const method = 'post'; 6392 const method = 'post';
5252 - const url = '/order/erp/menus/add'; 6393 + const url = '/order/erp/order/add';
5253 function request( 6394 function request(
5254 - option: PostOrderErpMenusAddOption,  
5255 - ): Promise<PostOrderErpMenusAddResponseSuccess> { 6395 + option: PostOrderErpOrderAddOption,
  6396 + ): Promise<PostOrderErpOrderAddResponseSuccess> {
5256 return requester(request.url, { 6397 return requester(request.url, {
5257 method: request.method, 6398 method: request.method,
5258 ...option, 6399 ...option,
5259 - }) as unknown as Promise<PostOrderErpMenusAddResponseSuccess>; 6400 + }) as unknown as Promise<PostOrderErpOrderAddResponseSuccess>;
5260 } 6401 }
5261 6402
5262 /** http method */ 6403 /** http method */
@@ -5266,22 +6407,22 @@ export const postOrderErpMenusAdd = /* #__PURE__ */ (() =&gt; { @@ -5266,22 +6407,22 @@ export const postOrderErpMenusAdd = /* #__PURE__ */ (() =&gt; {
5266 return request; 6407 return request;
5267 })(); 6408 })();
5268 6409
5269 -/** @description request parameter type for postOrderErpMenusAll */  
5270 -export interface PostOrderErpMenusAllOption { 6410 +/** @description request parameter type for postOrderErpOrderDeleteById */
  6411 +export interface PostOrderErpOrderDeleteByIdOption {
5271 /** 6412 /**
5272 * @description 6413 * @description
5273 - * queryVO 6414 + * orderBaseInfoQueryVO
5274 */ 6415 */
5275 body: { 6416 body: {
5276 /** 6417 /**
5277 @description 6418 @description
5278 - queryVO */  
5279 - queryVO: AdminMenuQueryVO; 6419 + orderBaseInfoQueryVO */
  6420 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
5280 }; 6421 };
5281 } 6422 }
5282 6423
5283 -/** @description response type for postOrderErpMenusAll */  
5284 -export interface PostOrderErpMenusAllResponse { 6424 +/** @description response type for postOrderErpOrderDeleteById */
  6425 +export interface PostOrderErpOrderDeleteByIdResponse {
5285 /** 6426 /**
5286 * @description 6427 * @description
5287 * OK 6428 * OK
@@ -5309,25 +6450,25 @@ export interface PostOrderErpMenusAllResponse { @@ -5309,25 +6450,25 @@ export interface PostOrderErpMenusAllResponse {
5309 404: any; 6450 404: any;
5310 } 6451 }
5311 6452
5312 -export type PostOrderErpMenusAllResponseSuccess =  
5313 - PostOrderErpMenusAllResponse[200]; 6453 +export type PostOrderErpOrderDeleteByIdResponseSuccess =
  6454 + PostOrderErpOrderDeleteByIdResponse[200];
5314 /** 6455 /**
5315 * @description 6456 * @description
5316 - * 查询菜单  
5317 - * @tags 系统:菜单管理 6457 + * 删除数据
  6458 + * @tags 订单管理
5318 * @produces * 6459 * @produces *
5319 * @consumes application/json 6460 * @consumes application/json
5320 */ 6461 */
5321 -export const postOrderErpMenusAll = /* #__PURE__ */ (() => { 6462 +export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => {
5322 const method = 'post'; 6463 const method = 'post';
5323 - const url = '/order/erp/menus/all'; 6464 + const url = '/order/erp/order/delete_by_id';
5324 function request( 6465 function request(
5325 - option: PostOrderErpMenusAllOption,  
5326 - ): Promise<PostOrderErpMenusAllResponseSuccess> { 6466 + option: PostOrderErpOrderDeleteByIdOption,
  6467 + ): Promise<PostOrderErpOrderDeleteByIdResponseSuccess> {
5327 return requester(request.url, { 6468 return requester(request.url, {
5328 method: request.method, 6469 method: request.method,
5329 ...option, 6470 ...option,
5330 - }) as unknown as Promise<PostOrderErpMenusAllResponseSuccess>; 6471 + }) as unknown as Promise<PostOrderErpOrderDeleteByIdResponseSuccess>;
5331 } 6472 }
5332 6473
5333 /** http method */ 6474 /** http method */
@@ -5337,8 +6478,22 @@ export const postOrderErpMenusAll = /* #__PURE__ */ (() =&gt; { @@ -5337,8 +6478,22 @@ export const postOrderErpMenusAll = /* #__PURE__ */ (() =&gt; {
5337 return request; 6478 return request;
5338 })(); 6479 })();
5339 6480
5340 -/** @description response type for postOrderErpMenusBuild */  
5341 -export interface PostOrderErpMenusBuildResponse { 6481 +/** @description request parameter type for postOrderErpOrderEdit */
  6482 +export interface PostOrderErpOrderEditOption {
  6483 + /**
  6484 + * @description
  6485 + * updateVO
  6486 + */
  6487 + body: {
  6488 + /**
  6489 + @description
  6490 + updateVO */
  6491 + updateVO: OrderUpdateVO;
  6492 + };
  6493 +}
  6494 +
  6495 +/** @description response type for postOrderErpOrderEdit */
  6496 +export interface PostOrderErpOrderEditResponse {
5342 /** 6497 /**
5343 * @description 6498 * @description
5344 * OK 6499 * OK
@@ -5366,22 +6521,25 @@ export interface PostOrderErpMenusBuildResponse { @@ -5366,22 +6521,25 @@ export interface PostOrderErpMenusBuildResponse {
5366 404: any; 6521 404: any;
5367 } 6522 }
5368 6523
5369 -export type PostOrderErpMenusBuildResponseSuccess =  
5370 - PostOrderErpMenusBuildResponse[200]; 6524 +export type PostOrderErpOrderEditResponseSuccess =
  6525 + PostOrderErpOrderEditResponse[200];
5371 /** 6526 /**
5372 * @description 6527 * @description
5373 - * 获取前端所需菜单  
5374 - * @tags 系统:菜单管理 6528 + * 编辑数据
  6529 + * @tags 订单管理
5375 * @produces * 6530 * @produces *
5376 * @consumes application/json 6531 * @consumes application/json
5377 */ 6532 */
5378 -export const postOrderErpMenusBuild = /* #__PURE__ */ (() => { 6533 +export const postOrderErpOrderEdit = /* #__PURE__ */ (() => {
5379 const method = 'post'; 6534 const method = 'post';
5380 - const url = '/order/erp/menus/build';  
5381 - function request(): Promise<PostOrderErpMenusBuildResponseSuccess> { 6535 + const url = '/order/erp/order/edit';
  6536 + function request(
  6537 + option: PostOrderErpOrderEditOption,
  6538 + ): Promise<PostOrderErpOrderEditResponseSuccess> {
5382 return requester(request.url, { 6539 return requester(request.url, {
5383 method: request.method, 6540 method: request.method,
5384 - }) as unknown as Promise<PostOrderErpMenusBuildResponseSuccess>; 6541 + ...option,
  6542 + }) as unknown as Promise<PostOrderErpOrderEditResponseSuccess>;
5385 } 6543 }
5386 6544
5387 /** http method */ 6545 /** http method */
@@ -5391,22 +6549,22 @@ export const postOrderErpMenusBuild = /* #__PURE__ */ (() =&gt; { @@ -5391,22 +6549,22 @@ export const postOrderErpMenusBuild = /* #__PURE__ */ (() =&gt; {
5391 return request; 6549 return request;
5392 })(); 6550 })();
5393 6551
5394 -/** @description request parameter type for postOrderErpMenusDelete */  
5395 -export interface PostOrderErpMenusDeleteOption { 6552 +/** @description request parameter type for postOrderErpOrderExport */
  6553 +export interface PostOrderErpOrderExportOption {
5396 /** 6554 /**
5397 * @description 6555 * @description
5398 - * queryVO 6556 + * orderBaseInfoQueryVO
5399 */ 6557 */
5400 body: { 6558 body: {
5401 /** 6559 /**
5402 @description 6560 @description
5403 - queryVO */  
5404 - queryVO: AdminMenuQueryVO; 6561 + orderBaseInfoQueryVO */
  6562 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
5405 }; 6563 };
5406 } 6564 }
5407 6565
5408 -/** @description response type for postOrderErpMenusDelete */  
5409 -export interface PostOrderErpMenusDeleteResponse { 6566 +/** @description response type for postOrderErpOrderExport */
  6567 +export interface PostOrderErpOrderExportResponse {
5410 /** 6568 /**
5411 * @description 6569 * @description
5412 * OK 6570 * OK
@@ -5434,25 +6592,25 @@ export interface PostOrderErpMenusDeleteResponse { @@ -5434,25 +6592,25 @@ export interface PostOrderErpMenusDeleteResponse {
5434 404: any; 6592 404: any;
5435 } 6593 }
5436 6594
5437 -export type PostOrderErpMenusDeleteResponseSuccess =  
5438 - PostOrderErpMenusDeleteResponse[200]; 6595 +export type PostOrderErpOrderExportResponseSuccess =
  6596 + PostOrderErpOrderExportResponse[200];
5439 /** 6597 /**
5440 * @description 6598 * @description
5441 - * 删除菜单  
5442 - * @tags 系统:菜单管理 6599 + * 导出订单
  6600 + * @tags 订单管理
5443 * @produces * 6601 * @produces *
5444 * @consumes application/json 6602 * @consumes application/json
5445 */ 6603 */
5446 -export const postOrderErpMenusDelete = /* #__PURE__ */ (() => { 6604 +export const postOrderErpOrderExport = /* #__PURE__ */ (() => {
5447 const method = 'post'; 6605 const method = 'post';
5448 - const url = '/order/erp/menus/delete'; 6606 + const url = '/order/erp/order/export';
5449 function request( 6607 function request(
5450 - option: PostOrderErpMenusDeleteOption,  
5451 - ): Promise<PostOrderErpMenusDeleteResponseSuccess> { 6608 + option: PostOrderErpOrderExportOption,
  6609 + ): Promise<PostOrderErpOrderExportResponseSuccess> {
5452 return requester(request.url, { 6610 return requester(request.url, {
5453 method: request.method, 6611 method: request.method,
5454 ...option, 6612 ...option,
5455 - }) as unknown as Promise<PostOrderErpMenusDeleteResponseSuccess>; 6613 + }) as unknown as Promise<PostOrderErpOrderExportResponseSuccess>;
5456 } 6614 }
5457 6615
5458 /** http method */ 6616 /** http method */
@@ -5462,22 +6620,22 @@ export const postOrderErpMenusDelete = /* #__PURE__ */ (() =&gt; { @@ -5462,22 +6620,22 @@ export const postOrderErpMenusDelete = /* #__PURE__ */ (() =&gt; {
5462 return request; 6620 return request;
5463 })(); 6621 })();
5464 6622
5465 -/** @description request parameter type for postOrderErpMenusEdit */  
5466 -export interface PostOrderErpMenusEditOption { 6623 +/** @description request parameter type for postOrderErpOrderFieldUnlockApply */
  6624 +export interface PostOrderErpOrderFieldUnlockApplyOption {
5467 /** 6625 /**
5468 * @description 6626 * @description
5469 - * menuVO 6627 + * fieldVO
5470 */ 6628 */
5471 body: { 6629 body: {
5472 /** 6630 /**
5473 @description 6631 @description
5474 - menuVO */  
5475 - menuVO: AdminMenuVO; 6632 + fieldVO */
  6633 + fieldVO: OrderUnlockFieldApplyVO;
5476 }; 6634 };
5477 } 6635 }
5478 6636
5479 -/** @description response type for postOrderErpMenusEdit */  
5480 -export interface PostOrderErpMenusEditResponse { 6637 +/** @description response type for postOrderErpOrderFieldUnlockApply */
  6638 +export interface PostOrderErpOrderFieldUnlockApplyResponse {
5481 /** 6639 /**
5482 * @description 6640 * @description
5483 * OK 6641 * OK
@@ -5505,25 +6663,25 @@ export interface PostOrderErpMenusEditResponse { @@ -5505,25 +6663,25 @@ export interface PostOrderErpMenusEditResponse {
5505 404: any; 6663 404: any;
5506 } 6664 }
5507 6665
5508 -export type PostOrderErpMenusEditResponseSuccess =  
5509 - PostOrderErpMenusEditResponse[200]; 6666 +export type PostOrderErpOrderFieldUnlockApplyResponseSuccess =
  6667 + PostOrderErpOrderFieldUnlockApplyResponse[200];
5510 /** 6668 /**
5511 * @description 6669 * @description
5512 - * 修改菜单  
5513 - * @tags 系统:菜单管理 6670 + * 字段解锁申请
  6671 + * @tags 订单管理
5514 * @produces * 6672 * @produces *
5515 * @consumes application/json 6673 * @consumes application/json
5516 */ 6674 */
5517 -export const postOrderErpMenusEdit = /* #__PURE__ */ (() => { 6675 +export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => {
5518 const method = 'post'; 6676 const method = 'post';
5519 - const url = '/order/erp/menus/edit'; 6677 + const url = '/order/erp/order/field_unlock_apply';
5520 function request( 6678 function request(
5521 - option: PostOrderErpMenusEditOption,  
5522 - ): Promise<PostOrderErpMenusEditResponseSuccess> { 6679 + option: PostOrderErpOrderFieldUnlockApplyOption,
  6680 + ): Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess> {
5523 return requester(request.url, { 6681 return requester(request.url, {
5524 method: request.method, 6682 method: request.method,
5525 ...option, 6683 ...option,
5526 - }) as unknown as Promise<PostOrderErpMenusEditResponseSuccess>; 6684 + }) as unknown as Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess>;
5527 } 6685 }
5528 6686
5529 /** http method */ 6687 /** http method */
@@ -5533,8 +6691,22 @@ export const postOrderErpMenusEdit = /* #__PURE__ */ (() =&gt; { @@ -5533,8 +6691,22 @@ export const postOrderErpMenusEdit = /* #__PURE__ */ (() =&gt; {
5533 return request; 6691 return request;
5534 })(); 6692 })();
5535 6693
5536 -/** @description response type for postOrderErpMenusTree */  
5537 -export interface PostOrderErpMenusTreeResponse { 6694 +/** @description request parameter type for postOrderErpOrderListByPage */
  6695 +export interface PostOrderErpOrderListByPageOption {
  6696 + /**
  6697 + * @description
  6698 + * orderBaseInfoQueryVO
  6699 + */
  6700 + body: {
  6701 + /**
  6702 + @description
  6703 + orderBaseInfoQueryVO */
  6704 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
  6705 + };
  6706 +}
  6707 +
  6708 +/** @description response type for postOrderErpOrderListByPage */
  6709 +export interface PostOrderErpOrderListByPageResponse {
5538 /** 6710 /**
5539 * @description 6711 * @description
5540 * OK 6712 * OK
@@ -5562,22 +6734,25 @@ export interface PostOrderErpMenusTreeResponse { @@ -5562,22 +6734,25 @@ export interface PostOrderErpMenusTreeResponse {
5562 404: any; 6734 404: any;
5563 } 6735 }
5564 6736
5565 -export type PostOrderErpMenusTreeResponseSuccess =  
5566 - PostOrderErpMenusTreeResponse[200]; 6737 +export type PostOrderErpOrderListByPageResponseSuccess =
  6738 + PostOrderErpOrderListByPageResponse[200];
5567 /** 6739 /**
5568 * @description 6740 * @description
5569 - * 返回全部的菜单  
5570 - * @tags 系统:菜单管理 6741 + * 分页查询
  6742 + * @tags 订单管理
5571 * @produces * 6743 * @produces *
5572 * @consumes application/json 6744 * @consumes application/json
5573 */ 6745 */
5574 -export const postOrderErpMenusTree = /* #__PURE__ */ (() => { 6746 +export const postOrderErpOrderListByPage = /* #__PURE__ */ (() => {
5575 const method = 'post'; 6747 const method = 'post';
5576 - const url = '/order/erp/menus/tree';  
5577 - function request(): Promise<PostOrderErpMenusTreeResponseSuccess> { 6748 + const url = '/order/erp/order/list_by_page';
  6749 + function request(
  6750 + option: PostOrderErpOrderListByPageOption,
  6751 + ): Promise<PostOrderErpOrderListByPageResponseSuccess> {
5578 return requester(request.url, { 6752 return requester(request.url, {
5579 method: request.method, 6753 method: request.method,
5580 - }) as unknown as Promise<PostOrderErpMenusTreeResponseSuccess>; 6754 + ...option,
  6755 + }) as unknown as Promise<PostOrderErpOrderListByPageResponseSuccess>;
5581 } 6756 }
5582 6757
5583 /** http method */ 6758 /** http method */
@@ -5587,8 +6762,22 @@ export const postOrderErpMenusTree = /* #__PURE__ */ (() =&gt; { @@ -5587,8 +6762,22 @@ export const postOrderErpMenusTree = /* #__PURE__ */ (() =&gt; {
5587 return request; 6762 return request;
5588 })(); 6763 })();
5589 6764
5590 -/** @description response type for postOrderErpMessageGetUnreadNum */  
5591 -export interface PostOrderErpMessageGetUnreadNumResponse { 6765 +/** @description request parameter type for postOrderErpOrderQueryById */
  6766 +export interface PostOrderErpOrderQueryByIdOption {
  6767 + /**
  6768 + * @description
  6769 + * orderBaseInfoQueryVO
  6770 + */
  6771 + body: {
  6772 + /**
  6773 + @description
  6774 + orderBaseInfoQueryVO */
  6775 + orderBaseInfoQueryVO: OrderBaseInfoQueryVO;
  6776 + };
  6777 +}
  6778 +
  6779 +/** @description response type for postOrderErpOrderQueryById */
  6780 +export interface PostOrderErpOrderQueryByIdResponse {
5592 /** 6781 /**
5593 * @description 6782 * @description
5594 * OK 6783 * OK
@@ -5616,22 +6805,25 @@ export interface PostOrderErpMessageGetUnreadNumResponse { @@ -5616,22 +6805,25 @@ export interface PostOrderErpMessageGetUnreadNumResponse {
5616 404: any; 6805 404: any;
5617 } 6806 }
5618 6807
5619 -export type PostOrderErpMessageGetUnreadNumResponseSuccess =  
5620 - PostOrderErpMessageGetUnreadNumResponse[200]; 6808 +export type PostOrderErpOrderQueryByIdResponseSuccess =
  6809 + PostOrderErpOrderQueryByIdResponse[200];
5621 /** 6810 /**
5622 * @description 6811 * @description
5623 - * getUnreadNum  
5624 - * @tags message-controller 6812 + * queryById
  6813 + * @tags 订单管理
5625 * @produces * 6814 * @produces *
5626 * @consumes application/json 6815 * @consumes application/json
5627 */ 6816 */
5628 -export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => { 6817 +export const postOrderErpOrderQueryById = /* #__PURE__ */ (() => {
5629 const method = 'post'; 6818 const method = 'post';
5630 - const url = '/order/erp/message/getUnreadNum';  
5631 - function request(): Promise<PostOrderErpMessageGetUnreadNumResponseSuccess> { 6819 + const url = '/order/erp/order/query_by_id';
  6820 + function request(
  6821 + option: PostOrderErpOrderQueryByIdOption,
  6822 + ): Promise<PostOrderErpOrderQueryByIdResponseSuccess> {
5632 return requester(request.url, { 6823 return requester(request.url, {
5633 method: request.method, 6824 method: request.method,
5634 - }) as unknown as Promise<PostOrderErpMessageGetUnreadNumResponseSuccess>; 6825 + ...option,
  6826 + }) as unknown as Promise<PostOrderErpOrderQueryByIdResponseSuccess>;
5635 } 6827 }
5636 6828
5637 /** http method */ 6829 /** http method */
@@ -5641,22 +6833,22 @@ export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() =&gt; { @@ -5641,22 +6833,22 @@ export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() =&gt; {
5641 return request; 6833 return request;
5642 })(); 6834 })();
5643 6835
5644 -/** @description request parameter type for postOrderErpMessageQueryMyMessage */  
5645 -export interface PostOrderErpMessageQueryMyMessageOption { 6836 +/** @description request parameter type for postOrderErpOrderStagesAdd */
  6837 +export interface PostOrderErpOrderStagesAddOption {
5646 /** 6838 /**
5647 * @description 6839 * @description
5648 - * messageQueryDTO 6840 + * orderStagesFromDo
5649 */ 6841 */
5650 body: { 6842 body: {
5651 /** 6843 /**
5652 @description 6844 @description
5653 - messageQueryDTO */  
5654 - messageQueryDTO: MessageQueryDTO; 6845 + orderStagesFromDo */
  6846 + orderStagesFromDo: OrderStagesFromDo;
5655 }; 6847 };
5656 } 6848 }
5657 6849
5658 -/** @description response type for postOrderErpMessageQueryMyMessage */  
5659 -export interface PostOrderErpMessageQueryMyMessageResponse { 6850 +/** @description response type for postOrderErpOrderStagesAdd */
  6851 +export interface PostOrderErpOrderStagesAddResponse {
5660 /** 6852 /**
5661 * @description 6853 * @description
5662 * OK 6854 * OK
@@ -5684,25 +6876,25 @@ export interface PostOrderErpMessageQueryMyMessageResponse { @@ -5684,25 +6876,25 @@ export interface PostOrderErpMessageQueryMyMessageResponse {
5684 404: any; 6876 404: any;
5685 } 6877 }
5686 6878
5687 -export type PostOrderErpMessageQueryMyMessageResponseSuccess =  
5688 - PostOrderErpMessageQueryMyMessageResponse[200]; 6879 +export type PostOrderErpOrderStagesAddResponseSuccess =
  6880 + PostOrderErpOrderStagesAddResponse[200];
5689 /** 6881 /**
5690 * @description 6882 * @description
5691 - * queryMyMessage  
5692 - * @tags message-controller 6883 + * 添加或者修改分期账单
  6884 + * @tags order-stages-controller
5693 * @produces * 6885 * @produces *
5694 * @consumes application/json 6886 * @consumes application/json
5695 */ 6887 */
5696 -export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => { 6888 +export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => {
5697 const method = 'post'; 6889 const method = 'post';
5698 - const url = '/order/erp/message/queryMyMessage'; 6890 + const url = '/order/erp/orderStages/add';
5699 function request( 6891 function request(
5700 - option: PostOrderErpMessageQueryMyMessageOption,  
5701 - ): Promise<PostOrderErpMessageQueryMyMessageResponseSuccess> { 6892 + option: PostOrderErpOrderStagesAddOption,
  6893 + ): Promise<PostOrderErpOrderStagesAddResponseSuccess> {
5702 return requester(request.url, { 6894 return requester(request.url, {
5703 method: request.method, 6895 method: request.method,
5704 ...option, 6896 ...option,
5705 - }) as unknown as Promise<PostOrderErpMessageQueryMyMessageResponseSuccess>; 6897 + }) as unknown as Promise<PostOrderErpOrderStagesAddResponseSuccess>;
5706 } 6898 }
5707 6899
5708 /** http method */ 6900 /** http method */
@@ -5712,22 +6904,22 @@ export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() =&gt; { @@ -5712,22 +6904,22 @@ export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() =&gt; {
5712 return request; 6904 return request;
5713 })(); 6905 })();
5714 6906
5715 -/** @description request parameter type for postOrderErpMessageRead */  
5716 -export interface PostOrderErpMessageReadOption { 6907 +/** @description request parameter type for deleteOrderErpOrderStagesDelect */
  6908 +export interface DeleteOrderErpOrderStagesDelectOption {
5717 /** 6909 /**
5718 * @description 6910 * @description
5719 - * ids 6911 + * orderStagesDelDo
5720 */ 6912 */
5721 body: { 6913 body: {
5722 /** 6914 /**
5723 @description 6915 @description
5724 - ids */  
5725 - ids: Array<number>; 6916 + orderStagesDelDo */
  6917 + orderStagesDelDo: OrderStagesDelDo;
5726 }; 6918 };
5727 } 6919 }
5728 6920
5729 -/** @description response type for postOrderErpMessageRead */  
5730 -export interface PostOrderErpMessageReadResponse { 6921 +/** @description response type for deleteOrderErpOrderStagesDelect */
  6922 +export interface DeleteOrderErpOrderStagesDelectResponse {
5731 /** 6923 /**
5732 * @description 6924 * @description
5733 * OK 6925 * OK
@@ -5735,9 +6927,9 @@ export interface PostOrderErpMessageReadResponse { @@ -5735,9 +6927,9 @@ export interface PostOrderErpMessageReadResponse {
5735 200: ServerResult; 6927 200: ServerResult;
5736 /** 6928 /**
5737 * @description 6929 * @description
5738 - * Created 6930 + * No Content
5739 */ 6931 */
5740 - 201: any; 6932 + 204: any;
5741 /** 6933 /**
5742 * @description 6934 * @description
5743 * Unauthorized 6935 * Unauthorized
@@ -5748,32 +6940,26 @@ export interface PostOrderErpMessageReadResponse { @@ -5748,32 +6940,26 @@ export interface PostOrderErpMessageReadResponse {
5748 * Forbidden 6940 * Forbidden
5749 */ 6941 */
5750 403: any; 6942 403: any;
5751 - /**  
5752 - * @description  
5753 - * Not Found  
5754 - */  
5755 - 404: any;  
5756 } 6943 }
5757 6944
5758 -export type PostOrderErpMessageReadResponseSuccess =  
5759 - PostOrderErpMessageReadResponse[200]; 6945 +export type DeleteOrderErpOrderStagesDelectResponseSuccess =
  6946 + DeleteOrderErpOrderStagesDelectResponse[200];
5760 /** 6947 /**
5761 * @description 6948 * @description
5762 - * read  
5763 - * @tags message-controller 6949 + * 删除分期账单
  6950 + * @tags order-stages-controller
5764 * @produces * 6951 * @produces *
5765 - * @consumes application/json  
5766 */ 6952 */
5767 -export const postOrderErpMessageRead = /* #__PURE__ */ (() => {  
5768 - const method = 'post';  
5769 - const url = '/order/erp/message/read'; 6953 +export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() => {
  6954 + const method = 'delete';
  6955 + const url = '/order/erp/orderStages/delect';
5770 function request( 6956 function request(
5771 - option: PostOrderErpMessageReadOption,  
5772 - ): Promise<PostOrderErpMessageReadResponseSuccess> { 6957 + option: DeleteOrderErpOrderStagesDelectOption,
  6958 + ): Promise<DeleteOrderErpOrderStagesDelectResponseSuccess> {
5773 return requester(request.url, { 6959 return requester(request.url, {
5774 method: request.method, 6960 method: request.method,
5775 ...option, 6961 ...option,
5776 - }) as unknown as Promise<PostOrderErpMessageReadResponseSuccess>; 6962 + }) as unknown as Promise<DeleteOrderErpOrderStagesDelectResponseSuccess>;
5777 } 6963 }
5778 6964
5779 /** http method */ 6965 /** http method */
@@ -5783,18 +6969,13 @@ export const postOrderErpMessageRead = /* #__PURE__ */ (() =&gt; { @@ -5783,18 +6969,13 @@ export const postOrderErpMessageRead = /* #__PURE__ */ (() =&gt; {
5783 return request; 6969 return request;
5784 })(); 6970 })();
5785 6971
5786 -/** @description response type for postOrderErpMessageReadAll */  
5787 -export interface PostOrderErpMessageReadAllResponse { 6972 +/** @description response type for getOrderErpOrderStagesExport */
  6973 +export interface GetOrderErpOrderStagesExportResponse {
5788 /** 6974 /**
5789 * @description 6975 * @description
5790 * OK 6976 * OK
5791 */ 6977 */
5792 - 200: ServerResult;  
5793 - /**  
5794 - * @description  
5795 - * Created  
5796 - */  
5797 - 201: any; 6978 + 200: any;
5798 /** 6979 /**
5799 * @description 6980 * @description
5800 * Unauthorized 6981 * Unauthorized
@@ -5812,22 +6993,21 @@ export interface PostOrderErpMessageReadAllResponse { @@ -5812,22 +6993,21 @@ export interface PostOrderErpMessageReadAllResponse {
5812 404: any; 6993 404: any;
5813 } 6994 }
5814 6995
5815 -export type PostOrderErpMessageReadAllResponseSuccess =  
5816 - PostOrderErpMessageReadAllResponse[200]; 6996 +export type GetOrderErpOrderStagesExportResponseSuccess =
  6997 + GetOrderErpOrderStagesExportResponse[200];
5817 /** 6998 /**
5818 * @description 6999 * @description
5819 - * readAll  
5820 - * @tags message-controller 7000 + * 导出分期账单
  7001 + * @tags order-stages-controller
5821 * @produces * 7002 * @produces *
5822 - * @consumes application/json  
5823 */ 7003 */
5824 -export const postOrderErpMessageReadAll = /* #__PURE__ */ (() => {  
5825 - const method = 'post';  
5826 - const url = '/order/erp/message/readAll';  
5827 - function request(): Promise<PostOrderErpMessageReadAllResponseSuccess> { 7004 +export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() => {
  7005 + const method = 'get';
  7006 + const url = '/order/erp/orderStages/export';
  7007 + function request(): Promise<GetOrderErpOrderStagesExportResponseSuccess> {
5828 return requester(request.url, { 7008 return requester(request.url, {
5829 method: request.method, 7009 method: request.method,
5830 - }) as unknown as Promise<PostOrderErpMessageReadAllResponseSuccess>; 7010 + }) as unknown as Promise<GetOrderErpOrderStagesExportResponseSuccess>;
5831 } 7011 }
5832 7012
5833 /** http method */ 7013 /** http method */
@@ -5837,22 +7017,22 @@ export const postOrderErpMessageReadAll = /* #__PURE__ */ (() =&gt; { @@ -5837,22 +7017,22 @@ export const postOrderErpMessageReadAll = /* #__PURE__ */ (() =&gt; {
5837 return request; 7017 return request;
5838 })(); 7018 })();
5839 7019
5840 -/** @description request parameter type for postOrderErpOptLogListByPage */  
5841 -export interface PostOrderErpOptLogListByPageOption { 7020 +/** @description request parameter type for postOrderErpOrderStagesImport */
  7021 +export interface PostOrderErpOrderStagesImportOption {
5842 /** 7022 /**
5843 * @description 7023 * @description
5844 - * queryVO 7024 + * file
5845 */ 7025 */
5846 - body: { 7026 + formData: {
5847 /** 7027 /**
5848 @description 7028 @description
5849 - queryVO */  
5850 - queryVO: OrderOptLogQueryVO; 7029 + file */
  7030 + file: File;
5851 }; 7031 };
5852 } 7032 }
5853 7033
5854 -/** @description response type for postOrderErpOptLogListByPage */  
5855 -export interface PostOrderErpOptLogListByPageResponse { 7034 +/** @description response type for postOrderErpOrderStagesImport */
  7035 +export interface PostOrderErpOrderStagesImportResponse {
5856 /** 7036 /**
5857 * @description 7037 * @description
5858 * OK 7038 * OK
@@ -5880,25 +7060,25 @@ export interface PostOrderErpOptLogListByPageResponse { @@ -5880,25 +7060,25 @@ export interface PostOrderErpOptLogListByPageResponse {
5880 404: any; 7060 404: any;
5881 } 7061 }
5882 7062
5883 -export type PostOrderErpOptLogListByPageResponseSuccess =  
5884 - PostOrderErpOptLogListByPageResponse[200]; 7063 +export type PostOrderErpOrderStagesImportResponseSuccess =
  7064 + PostOrderErpOrderStagesImportResponse[200];
5885 /** 7065 /**
5886 * @description 7066 * @description
5887 - * 分页查询  
5888 - * @tags 订单操作日志 7067 + * 导入分期账单
  7068 + * @tags order-stages-controller
5889 * @produces * 7069 * @produces *
5890 - * @consumes application/json 7070 + * @consumes multipart/form-data
5891 */ 7071 */
5892 -export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => { 7072 +export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() => {
5893 const method = 'post'; 7073 const method = 'post';
5894 - const url = '/order/erp/opt/log/list_by_page'; 7074 + const url = '/order/erp/orderStages/import';
5895 function request( 7075 function request(
5896 - option: PostOrderErpOptLogListByPageOption,  
5897 - ): Promise<PostOrderErpOptLogListByPageResponseSuccess> { 7076 + option: PostOrderErpOrderStagesImportOption,
  7077 + ): Promise<PostOrderErpOrderStagesImportResponseSuccess> {
5898 return requester(request.url, { 7078 return requester(request.url, {
5899 method: request.method, 7079 method: request.method,
5900 ...option, 7080 ...option,
5901 - }) as unknown as Promise<PostOrderErpOptLogListByPageResponseSuccess>; 7081 + }) as unknown as Promise<PostOrderErpOrderStagesImportResponseSuccess>;
5902 } 7082 }
5903 7083
5904 /** http method */ 7084 /** http method */
@@ -5908,22 +7088,70 @@ export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() =&gt; { @@ -5908,22 +7088,70 @@ export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() =&gt; {
5908 return request; 7088 return request;
5909 })(); 7089 })();
5910 7090
5911 -/** @description request parameter type for postOrderErpOrderAdd */  
5912 -export interface PostOrderErpOrderAddOption { 7091 +/** @description response type for getOrderErpOrderStagesListAll */
  7092 +export interface GetOrderErpOrderStagesListAllResponse {
  7093 + /**
  7094 + * @description
  7095 + * OK
  7096 + */
  7097 + 200: ServerResult;
  7098 + /**
  7099 + * @description
  7100 + * Unauthorized
  7101 + */
  7102 + 401: any;
  7103 + /**
  7104 + * @description
  7105 + * Forbidden
  7106 + */
  7107 + 403: any;
  7108 + /**
  7109 + * @description
  7110 + * Not Found
  7111 + */
  7112 + 404: any;
  7113 +}
  7114 +
  7115 +export type GetOrderErpOrderStagesListAllResponseSuccess =
  7116 + GetOrderErpOrderStagesListAllResponse[200];
  7117 +/**
  7118 + * @description
  7119 + * 查询所有分期账单
  7120 + * @tags order-stages-controller
  7121 + * @produces *
  7122 + */
  7123 +export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() => {
  7124 + const method = 'get';
  7125 + const url = '/order/erp/orderStages/listAll';
  7126 + function request(): Promise<GetOrderErpOrderStagesListAllResponseSuccess> {
  7127 + return requester(request.url, {
  7128 + method: request.method,
  7129 + }) as unknown as Promise<GetOrderErpOrderStagesListAllResponseSuccess>;
  7130 + }
  7131 +
  7132 + /** http method */
  7133 + request.method = method;
  7134 + /** request url */
  7135 + request.url = url;
  7136 + return request;
  7137 +})();
  7138 +
  7139 +/** @description request parameter type for postOrderErpOrderStagesSaveOrUpdate */
  7140 +export interface PostOrderErpOrderStagesSaveOrUpdateOption {
5913 /** 7141 /**
5914 * @description 7142 * @description
5915 - * orderAddVO 7143 + * orderStagesFromDo
5916 */ 7144 */
5917 body: { 7145 body: {
5918 /** 7146 /**
5919 @description 7147 @description
5920 - orderAddVO */  
5921 - orderAddVO: OrderAddVO; 7148 + orderStagesFromDo */
  7149 + orderStagesFromDo: OrderStagesFromDo;
5922 }; 7150 };
5923 } 7151 }
5924 7152
5925 -/** @description response type for postOrderErpOrderAdd */  
5926 -export interface PostOrderErpOrderAddResponse { 7153 +/** @description response type for postOrderErpOrderStagesSaveOrUpdate */
  7154 +export interface PostOrderErpOrderStagesSaveOrUpdateResponse {
5927 /** 7155 /**
5928 * @description 7156 * @description
5929 * OK 7157 * OK
@@ -5951,25 +7179,25 @@ export interface PostOrderErpOrderAddResponse { @@ -5951,25 +7179,25 @@ export interface PostOrderErpOrderAddResponse {
5951 404: any; 7179 404: any;
5952 } 7180 }
5953 7181
5954 -export type PostOrderErpOrderAddResponseSuccess =  
5955 - PostOrderErpOrderAddResponse[200]; 7182 +export type PostOrderErpOrderStagesSaveOrUpdateResponseSuccess =
  7183 + PostOrderErpOrderStagesSaveOrUpdateResponse[200];
5956 /** 7184 /**
5957 * @description 7185 * @description
5958 - * 新增数据  
5959 - * @tags 订单管理 7186 + * 添加或者修改分期账单
  7187 + * @tags order-stages-controller
5960 * @produces * 7188 * @produces *
5961 * @consumes application/json 7189 * @consumes application/json
5962 */ 7190 */
5963 -export const postOrderErpOrderAdd = /* #__PURE__ */ (() => { 7191 +export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => {
5964 const method = 'post'; 7192 const method = 'post';
5965 - const url = '/order/erp/order/add'; 7193 + const url = '/order/erp/orderStages/saveOrUpdate';
5966 function request( 7194 function request(
5967 - option: PostOrderErpOrderAddOption,  
5968 - ): Promise<PostOrderErpOrderAddResponseSuccess> { 7195 + option: PostOrderErpOrderStagesSaveOrUpdateOption,
  7196 + ): Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess> {
5969 return requester(request.url, { 7197 return requester(request.url, {
5970 method: request.method, 7198 method: request.method,
5971 ...option, 7199 ...option,
5972 - }) as unknown as Promise<PostOrderErpOrderAddResponseSuccess>; 7200 + }) as unknown as Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess>;
5973 } 7201 }
5974 7202
5975 /** http method */ 7203 /** http method */
@@ -5979,22 +7207,22 @@ export const postOrderErpOrderAdd = /* #__PURE__ */ (() =&gt; { @@ -5979,22 +7207,22 @@ export const postOrderErpOrderAdd = /* #__PURE__ */ (() =&gt; {
5979 return request; 7207 return request;
5980 })(); 7208 })();
5981 7209
5982 -/** @description request parameter type for postOrderErpOrderDeleteById */  
5983 -export interface PostOrderErpOrderDeleteByIdOption { 7210 +/** @description request parameter type for postOrderErpOrderStagesSearch */
  7211 +export interface PostOrderErpOrderStagesSearchOption {
5984 /** 7212 /**
5985 * @description 7213 * @description
5986 - * orderBaseInfoQueryVO 7214 + * orderStagesSelDo
5987 */ 7215 */
5988 body: { 7216 body: {
5989 /** 7217 /**
5990 @description 7218 @description
5991 - orderBaseInfoQueryVO */  
5992 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO; 7219 + orderStagesSelDo */
  7220 + orderStagesSelDo: OrderStagesSelDo;
5993 }; 7221 };
5994 } 7222 }
5995 7223
5996 -/** @description response type for postOrderErpOrderDeleteById */  
5997 -export interface PostOrderErpOrderDeleteByIdResponse { 7224 +/** @description response type for postOrderErpOrderStagesSearch */
  7225 +export interface PostOrderErpOrderStagesSearchResponse {
5998 /** 7226 /**
5999 * @description 7227 * @description
6000 * OK 7228 * OK
@@ -6022,25 +7250,25 @@ export interface PostOrderErpOrderDeleteByIdResponse { @@ -6022,25 +7250,25 @@ export interface PostOrderErpOrderDeleteByIdResponse {
6022 404: any; 7250 404: any;
6023 } 7251 }
6024 7252
6025 -export type PostOrderErpOrderDeleteByIdResponseSuccess =  
6026 - PostOrderErpOrderDeleteByIdResponse[200]; 7253 +export type PostOrderErpOrderStagesSearchResponseSuccess =
  7254 + PostOrderErpOrderStagesSearchResponse[200];
6027 /** 7255 /**
6028 * @description 7256 * @description
6029 - * 删除数据  
6030 - * @tags 订单管理 7257 + * 条件搜索分期账单
  7258 + * @tags order-stages-controller
6031 * @produces * 7259 * @produces *
6032 * @consumes application/json 7260 * @consumes application/json
6033 */ 7261 */
6034 -export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => { 7262 +export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => {
6035 const method = 'post'; 7263 const method = 'post';
6036 - const url = '/order/erp/order/delete_by_id'; 7264 + const url = '/order/erp/orderStages/search';
6037 function request( 7265 function request(
6038 - option: PostOrderErpOrderDeleteByIdOption,  
6039 - ): Promise<PostOrderErpOrderDeleteByIdResponseSuccess> { 7266 + option: PostOrderErpOrderStagesSearchOption,
  7267 + ): Promise<PostOrderErpOrderStagesSearchResponseSuccess> {
6040 return requester(request.url, { 7268 return requester(request.url, {
6041 method: request.method, 7269 method: request.method,
6042 ...option, 7270 ...option,
6043 - }) as unknown as Promise<PostOrderErpOrderDeleteByIdResponseSuccess>; 7271 + }) as unknown as Promise<PostOrderErpOrderStagesSearchResponseSuccess>;
6044 } 7272 }
6045 7273
6046 /** http method */ 7274 /** http method */
@@ -6050,22 +7278,22 @@ export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() =&gt; { @@ -6050,22 +7278,22 @@ export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() =&gt; {
6050 return request; 7278 return request;
6051 })(); 7279 })();
6052 7280
6053 -/** @description request parameter type for postOrderErpOrderEdit */  
6054 -export interface PostOrderErpOrderEditOption { 7281 +/** @description request parameter type for postOrderErpOrderStagesUpload */
  7282 +export interface PostOrderErpOrderStagesUploadOption {
6055 /** 7283 /**
6056 * @description 7284 * @description
6057 - * updateVO 7285 + * file
6058 */ 7286 */
6059 - body: { 7287 + formData: {
6060 /** 7288 /**
6061 @description 7289 @description
6062 - updateVO */  
6063 - updateVO: OrderUpdateVO; 7290 + file */
  7291 + file: File;
6064 }; 7292 };
6065 } 7293 }
6066 7294
6067 -/** @description response type for postOrderErpOrderEdit */  
6068 -export interface PostOrderErpOrderEditResponse { 7295 +/** @description response type for postOrderErpOrderStagesUpload */
  7296 +export interface PostOrderErpOrderStagesUploadResponse {
6069 /** 7297 /**
6070 * @description 7298 * @description
6071 * OK 7299 * OK
@@ -6093,25 +7321,25 @@ export interface PostOrderErpOrderEditResponse { @@ -6093,25 +7321,25 @@ export interface PostOrderErpOrderEditResponse {
6093 404: any; 7321 404: any;
6094 } 7322 }
6095 7323
6096 -export type PostOrderErpOrderEditResponseSuccess =  
6097 - PostOrderErpOrderEditResponse[200]; 7324 +export type PostOrderErpOrderStagesUploadResponseSuccess =
  7325 + PostOrderErpOrderStagesUploadResponse[200];
6098 /** 7326 /**
6099 * @description 7327 * @description
6100 - * 编辑数据  
6101 - * @tags 订单管理 7328 + * 合同文件上传
  7329 + * @tags order-stages-controller
6102 * @produces * 7330 * @produces *
6103 - * @consumes application/json 7331 + * @consumes multipart/form-data
6104 */ 7332 */
6105 -export const postOrderErpOrderEdit = /* #__PURE__ */ (() => { 7333 +export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => {
6106 const method = 'post'; 7334 const method = 'post';
6107 - const url = '/order/erp/order/edit'; 7335 + const url = '/order/erp/orderStages/upload';
6108 function request( 7336 function request(
6109 - option: PostOrderErpOrderEditOption,  
6110 - ): Promise<PostOrderErpOrderEditResponseSuccess> { 7337 + option: PostOrderErpOrderStagesUploadOption,
  7338 + ): Promise<PostOrderErpOrderStagesUploadResponseSuccess> {
6111 return requester(request.url, { 7339 return requester(request.url, {
6112 method: request.method, 7340 method: request.method,
6113 ...option, 7341 ...option,
6114 - }) as unknown as Promise<PostOrderErpOrderEditResponseSuccess>; 7342 + }) as unknown as Promise<PostOrderErpOrderStagesUploadResponseSuccess>;
6115 } 7343 }
6116 7344
6117 /** http method */ 7345 /** http method */
@@ -6121,22 +7349,22 @@ export const postOrderErpOrderEdit = /* #__PURE__ */ (() =&gt; { @@ -6121,22 +7349,22 @@ export const postOrderErpOrderEdit = /* #__PURE__ */ (() =&gt; {
6121 return request; 7349 return request;
6122 })(); 7350 })();
6123 7351
6124 -/** @description request parameter type for postOrderErpOrderExport */  
6125 -export interface PostOrderErpOrderExportOption { 7352 +/** @description request parameter type for postOrderErpOrderStagesPayWaySaveOrUpdate */
  7353 +export interface PostOrderErpOrderStagesPayWaySaveOrUpdateOption {
6126 /** 7354 /**
6127 * @description 7355 * @description
6128 - * orderBaseInfoQueryVO 7356 + * orderStagesPayWayList
6129 */ 7357 */
6130 body: { 7358 body: {
6131 /** 7359 /**
6132 @description 7360 @description
6133 - orderBaseInfoQueryVO */  
6134 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO; 7361 + orderStagesPayWayList */
  7362 + orderStagesPayWayList: Array<OrderStagesPayWay>;
6135 }; 7363 };
6136 } 7364 }
6137 7365
6138 -/** @description response type for postOrderErpOrderExport */  
6139 -export interface PostOrderErpOrderExportResponse { 7366 +/** @description response type for postOrderErpOrderStagesPayWaySaveOrUpdate */
  7367 +export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse {
6140 /** 7368 /**
6141 * @description 7369 * @description
6142 * OK 7370 * OK
@@ -6164,50 +7392,51 @@ export interface PostOrderErpOrderExportResponse { @@ -6164,50 +7392,51 @@ export interface PostOrderErpOrderExportResponse {
6164 404: any; 7392 404: any;
6165 } 7393 }
6166 7394
6167 -export type PostOrderErpOrderExportResponseSuccess =  
6168 - PostOrderErpOrderExportResponse[200]; 7395 +export type PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess =
  7396 + PostOrderErpOrderStagesPayWaySaveOrUpdateResponse[200];
6169 /** 7397 /**
6170 * @description 7398 * @description
6171 - * 导出订单  
6172 - * @tags 订单管理 7399 + * 修改或者保存
  7400 + * @tags order-stages-pay-way-controller
6173 * @produces * 7401 * @produces *
6174 * @consumes application/json 7402 * @consumes application/json
6175 */ 7403 */
6176 -export const postOrderErpOrderExport = /* #__PURE__ */ (() => {  
6177 - const method = 'post';  
6178 - const url = '/order/erp/order/export';  
6179 - function request(  
6180 - option: PostOrderErpOrderExportOption,  
6181 - ): Promise<PostOrderErpOrderExportResponseSuccess> {  
6182 - return requester(request.url, {  
6183 - method: request.method,  
6184 - ...option,  
6185 - }) as unknown as Promise<PostOrderErpOrderExportResponseSuccess>;  
6186 - } 7404 +export const postOrderErpOrderStagesPayWaySaveOrUpdate =
  7405 + /* #__PURE__ */ (() => {
  7406 + const method = 'post';
  7407 + const url = '/order/erp/orderStagesPayWay/saveOrUpdate';
  7408 + function request(
  7409 + option: PostOrderErpOrderStagesPayWaySaveOrUpdateOption,
  7410 + ): Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess> {
  7411 + return requester(request.url, {
  7412 + method: request.method,
  7413 + ...option,
  7414 + }) as unknown as Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess>;
  7415 + }
6187 7416
6188 - /** http method */  
6189 - request.method = method;  
6190 - /** request url */  
6191 - request.url = url;  
6192 - return request;  
6193 -})(); 7417 + /** http method */
  7418 + request.method = method;
  7419 + /** request url */
  7420 + request.url = url;
  7421 + return request;
  7422 + })();
6194 7423
6195 -/** @description request parameter type for postOrderErpOrderFieldUnlockApply */  
6196 -export interface PostOrderErpOrderFieldUnlockApplyOption { 7424 +/** @description request parameter type for postOrderErpOrderStagesPayWaySelect */
  7425 +export interface PostOrderErpOrderStagesPayWaySelectOption {
6197 /** 7426 /**
6198 * @description 7427 * @description
6199 - * fieldVO 7428 + * orderStagesPayWayDo
6200 */ 7429 */
6201 body: { 7430 body: {
6202 /** 7431 /**
6203 @description 7432 @description
6204 - fieldVO */  
6205 - fieldVO: OrderUnlockFieldApplyVO; 7433 + orderStagesPayWayDo */
  7434 + orderStagesPayWayDo: OrderStagesPayWayDo;
6206 }; 7435 };
6207 } 7436 }
6208 7437
6209 -/** @description response type for postOrderErpOrderFieldUnlockApply */  
6210 -export interface PostOrderErpOrderFieldUnlockApplyResponse { 7438 +/** @description response type for postOrderErpOrderStagesPayWaySelect */
  7439 +export interface PostOrderErpOrderStagesPayWaySelectResponse {
6211 /** 7440 /**
6212 * @description 7441 * @description
6213 * OK 7442 * OK
@@ -6235,25 +7464,25 @@ export interface PostOrderErpOrderFieldUnlockApplyResponse { @@ -6235,25 +7464,25 @@ export interface PostOrderErpOrderFieldUnlockApplyResponse {
6235 404: any; 7464 404: any;
6236 } 7465 }
6237 7466
6238 -export type PostOrderErpOrderFieldUnlockApplyResponseSuccess =  
6239 - PostOrderErpOrderFieldUnlockApplyResponse[200]; 7467 +export type PostOrderErpOrderStagesPayWaySelectResponseSuccess =
  7468 + PostOrderErpOrderStagesPayWaySelectResponse[200];
6240 /** 7469 /**
6241 * @description 7470 * @description
6242 - * 字段解锁申请  
6243 - * @tags 订单管理 7471 + * 查询该的分期比例
  7472 + * @tags order-stages-pay-way-controller
6244 * @produces * 7473 * @produces *
6245 * @consumes application/json 7474 * @consumes application/json
6246 */ 7475 */
6247 -export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => { 7476 +export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => {
6248 const method = 'post'; 7477 const method = 'post';
6249 - const url = '/order/erp/order/field_unlock_apply'; 7478 + const url = '/order/erp/orderStagesPayWay/select';
6250 function request( 7479 function request(
6251 - option: PostOrderErpOrderFieldUnlockApplyOption,  
6252 - ): Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess> { 7480 + option: PostOrderErpOrderStagesPayWaySelectOption,
  7481 + ): Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess> {
6253 return requester(request.url, { 7482 return requester(request.url, {
6254 method: request.method, 7483 method: request.method,
6255 ...option, 7484 ...option,
6256 - }) as unknown as Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess>; 7485 + }) as unknown as Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess>;
6257 } 7486 }
6258 7487
6259 /** http method */ 7488 /** http method */
@@ -6263,22 +7492,22 @@ export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() =&gt; { @@ -6263,22 +7492,22 @@ export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() =&gt; {
6263 return request; 7492 return request;
6264 })(); 7493 })();
6265 7494
6266 -/** @description request parameter type for postOrderErpOrderListByPage */  
6267 -export interface PostOrderErpOrderListByPageOption { 7495 +/** @description request parameter type for postOrderErpOrderStagesPayWayUploadForPayWay */
  7496 +export interface PostOrderErpOrderStagesPayWayUploadForPayWayOption {
6268 /** 7497 /**
6269 * @description 7498 * @description
6270 - * orderBaseInfoQueryVO 7499 + * orderStagesPayWayFileDo
6271 */ 7500 */
6272 body: { 7501 body: {
6273 /** 7502 /**
6274 @description 7503 @description
6275 - orderBaseInfoQueryVO */  
6276 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO; 7504 + orderStagesPayWayFileDo */
  7505 + orderStagesPayWayFileDo: OrderStagesPayWayFileDo;
6277 }; 7506 };
6278 } 7507 }
6279 7508
6280 -/** @description response type for postOrderErpOrderListByPage */  
6281 -export interface PostOrderErpOrderListByPageResponse { 7509 +/** @description response type for postOrderErpOrderStagesPayWayUploadForPayWay */
  7510 +export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse {
6282 /** 7511 /**
6283 * @description 7512 * @description
6284 * OK 7513 * OK
@@ -6306,50 +7535,51 @@ export interface PostOrderErpOrderListByPageResponse { @@ -6306,50 +7535,51 @@ export interface PostOrderErpOrderListByPageResponse {
6306 404: any; 7535 404: any;
6307 } 7536 }
6308 7537
6309 -export type PostOrderErpOrderListByPageResponseSuccess =  
6310 - PostOrderErpOrderListByPageResponse[200]; 7538 +export type PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess =
  7539 + PostOrderErpOrderStagesPayWayUploadForPayWayResponse[200];
6311 /** 7540 /**
6312 * @description 7541 * @description
6313 - * 分页查询  
6314 - * @tags 订单管理 7542 + * 付款合同文件上传
  7543 + * @tags order-stages-pay-way-controller
6315 * @produces * 7544 * @produces *
6316 * @consumes application/json 7545 * @consumes application/json
6317 */ 7546 */
6318 -export const postOrderErpOrderListByPage = /* #__PURE__ */ (() => {  
6319 - const method = 'post';  
6320 - const url = '/order/erp/order/list_by_page';  
6321 - function request(  
6322 - option: PostOrderErpOrderListByPageOption,  
6323 - ): Promise<PostOrderErpOrderListByPageResponseSuccess> {  
6324 - return requester(request.url, {  
6325 - method: request.method,  
6326 - ...option,  
6327 - }) as unknown as Promise<PostOrderErpOrderListByPageResponseSuccess>;  
6328 - } 7547 +export const postOrderErpOrderStagesPayWayUploadForPayWay =
  7548 + /* #__PURE__ */ (() => {
  7549 + const method = 'post';
  7550 + const url = '/order/erp/orderStagesPayWay/uploadForPayWay';
  7551 + function request(
  7552 + option: PostOrderErpOrderStagesPayWayUploadForPayWayOption,
  7553 + ): Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess> {
  7554 + return requester(request.url, {
  7555 + method: request.method,
  7556 + ...option,
  7557 + }) as unknown as Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess>;
  7558 + }
6329 7559
6330 - /** http method */  
6331 - request.method = method;  
6332 - /** request url */  
6333 - request.url = url;  
6334 - return request;  
6335 -})(); 7560 + /** http method */
  7561 + request.method = method;
  7562 + /** request url */
  7563 + request.url = url;
  7564 + return request;
  7565 + })();
6336 7566
6337 -/** @description request parameter type for postOrderErpOrderQueryById */  
6338 -export interface PostOrderErpOrderQueryByIdOption { 7567 +/** @description request parameter type for deleteOrderErpOrderZoNingDelete */
  7568 +export interface DeleteOrderErpOrderZoNingDeleteOption {
6339 /** 7569 /**
6340 * @description 7570 * @description
6341 - * orderBaseInfoQueryVO 7571 + * id
6342 */ 7572 */
6343 body: { 7573 body: {
6344 /** 7574 /**
6345 @description 7575 @description
6346 - orderBaseInfoQueryVO */  
6347 - orderBaseInfoQueryVO: OrderBaseInfoQueryVO; 7576 + id */
  7577 + id: number;
6348 }; 7578 };
6349 } 7579 }
6350 7580
6351 -/** @description response type for postOrderErpOrderQueryById */  
6352 -export interface PostOrderErpOrderQueryByIdResponse { 7581 +/** @description response type for deleteOrderErpOrderZoNingDelete */
  7582 +export interface DeleteOrderErpOrderZoNingDeleteResponse {
6353 /** 7583 /**
6354 * @description 7584 * @description
6355 * OK 7585 * OK
@@ -6357,9 +7587,9 @@ export interface PostOrderErpOrderQueryByIdResponse { @@ -6357,9 +7587,9 @@ export interface PostOrderErpOrderQueryByIdResponse {
6357 200: ServerResult; 7587 200: ServerResult;
6358 /** 7588 /**
6359 * @description 7589 * @description
6360 - * Created 7590 + * No Content
6361 */ 7591 */
6362 - 201: any; 7592 + 204: any;
6363 /** 7593 /**
6364 * @description 7594 * @description
6365 * Unauthorized 7595 * Unauthorized
@@ -6370,32 +7600,26 @@ export interface PostOrderErpOrderQueryByIdResponse { @@ -6370,32 +7600,26 @@ export interface PostOrderErpOrderQueryByIdResponse {
6370 * Forbidden 7600 * Forbidden
6371 */ 7601 */
6372 403: any; 7602 403: any;
6373 - /**  
6374 - * @description  
6375 - * Not Found  
6376 - */  
6377 - 404: any;  
6378 } 7603 }
6379 7604
6380 -export type PostOrderErpOrderQueryByIdResponseSuccess =  
6381 - PostOrderErpOrderQueryByIdResponse[200]; 7605 +export type DeleteOrderErpOrderZoNingDeleteResponseSuccess =
  7606 + DeleteOrderErpOrderZoNingDeleteResponse[200];
6382 /** 7607 /**
6383 * @description 7608 * @description
6384 - * queryById  
6385 - * @tags 订单管理 7609 + * toDetele
  7610 + * @tags order-zo-ning-controller
6386 * @produces * 7611 * @produces *
6387 - * @consumes application/json  
6388 */ 7612 */
6389 -export const postOrderErpOrderQueryById = /* #__PURE__ */ (() => {  
6390 - const method = 'post';  
6391 - const url = '/order/erp/order/query_by_id'; 7613 +export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => {
  7614 + const method = 'delete';
  7615 + const url = '/order/erp/orderZoNing/delete';
6392 function request( 7616 function request(
6393 - option: PostOrderErpOrderQueryByIdOption,  
6394 - ): Promise<PostOrderErpOrderQueryByIdResponseSuccess> { 7617 + option: DeleteOrderErpOrderZoNingDeleteOption,
  7618 + ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> {
6395 return requester(request.url, { 7619 return requester(request.url, {
6396 method: request.method, 7620 method: request.method,
6397 ...option, 7621 ...option,
6398 - }) as unknown as Promise<PostOrderErpOrderQueryByIdResponseSuccess>; 7622 + }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>;
6399 } 7623 }
6400 7624
6401 /** http method */ 7625 /** http method */
@@ -6405,22 +7629,22 @@ export const postOrderErpOrderQueryById = /* #__PURE__ */ (() =&gt; { @@ -6405,22 +7629,22 @@ export const postOrderErpOrderQueryById = /* #__PURE__ */ (() =&gt; {
6405 return request; 7629 return request;
6406 })(); 7630 })();
6407 7631
6408 -/** @description request parameter type for postOrderErpOrderStagesAdd */  
6409 -export interface PostOrderErpOrderStagesAddOption { 7632 +/** @description request parameter type for postOrderErpOrderZoNingSaveOrUpdate */
  7633 +export interface PostOrderErpOrderZoNingSaveOrUpdateOption {
6410 /** 7634 /**
6411 * @description 7635 * @description
6412 - * orderStagesFromDo 7636 + * orderZoNingProvinceUserDo
6413 */ 7637 */
6414 body: { 7638 body: {
6415 /** 7639 /**
6416 @description 7640 @description
6417 - orderStagesFromDo */  
6418 - orderStagesFromDo: OrderStagesFromDo; 7641 + orderZoNingProvinceUserDo */
  7642 + orderZoNingProvinceUserDo: OrderZoNingProvinceUserDo;
6419 }; 7643 };
6420 } 7644 }
6421 7645
6422 -/** @description response type for postOrderErpOrderStagesAdd */  
6423 -export interface PostOrderErpOrderStagesAddResponse { 7646 +/** @description response type for postOrderErpOrderZoNingSaveOrUpdate */
  7647 +export interface PostOrderErpOrderZoNingSaveOrUpdateResponse {
6424 /** 7648 /**
6425 * @description 7649 * @description
6426 * OK 7650 * OK
@@ -6448,25 +7672,25 @@ export interface PostOrderErpOrderStagesAddResponse { @@ -6448,25 +7672,25 @@ export interface PostOrderErpOrderStagesAddResponse {
6448 404: any; 7672 404: any;
6449 } 7673 }
6450 7674
6451 -export type PostOrderErpOrderStagesAddResponseSuccess =  
6452 - PostOrderErpOrderStagesAddResponse[200]; 7675 +export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess =
  7676 + PostOrderErpOrderZoNingSaveOrUpdateResponse[200];
6453 /** 7677 /**
6454 * @description 7678 * @description
6455 - * 添加或者修改分期账单  
6456 - * @tags order-stages-controller 7679 + * update
  7680 + * @tags order-zo-ning-controller
6457 * @produces * 7681 * @produces *
6458 * @consumes application/json 7682 * @consumes application/json
6459 */ 7683 */
6460 -export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => { 7684 +export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => {
6461 const method = 'post'; 7685 const method = 'post';
6462 - const url = '/order/erp/orderStages/add'; 7686 + const url = '/order/erp/orderZoNing/saveOrUpdate';
6463 function request( 7687 function request(
6464 - option: PostOrderErpOrderStagesAddOption,  
6465 - ): Promise<PostOrderErpOrderStagesAddResponseSuccess> { 7688 + option: PostOrderErpOrderZoNingSaveOrUpdateOption,
  7689 + ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> {
6466 return requester(request.url, { 7690 return requester(request.url, {
6467 method: request.method, 7691 method: request.method,
6468 ...option, 7692 ...option,
6469 - }) as unknown as Promise<PostOrderErpOrderStagesAddResponseSuccess>; 7693 + }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>;
6470 } 7694 }
6471 7695
6472 /** http method */ 7696 /** http method */
@@ -6476,22 +7700,8 @@ export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() =&gt; { @@ -6476,22 +7700,8 @@ export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() =&gt; {
6476 return request; 7700 return request;
6477 })(); 7701 })();
6478 7702
6479 -/** @description request parameter type for deleteOrderErpOrderStagesDelect */  
6480 -export interface DeleteOrderErpOrderStagesDelectOption {  
6481 - /**  
6482 - * @description  
6483 - * orderStagesDelDo  
6484 - */  
6485 - body: {  
6486 - /**  
6487 - @description  
6488 - orderStagesDelDo */  
6489 - orderStagesDelDo: OrderStagesDelDo;  
6490 - };  
6491 -}  
6492 -  
6493 -/** @description response type for deleteOrderErpOrderStagesDelect */  
6494 -export interface DeleteOrderErpOrderStagesDelectResponse { 7703 +/** @description response type for getOrderErpOrderZoNingSelectAll */
  7704 +export interface GetOrderErpOrderZoNingSelectAllResponse {
6495 /** 7705 /**
6496 * @description 7706 * @description
6497 * OK 7707 * OK
@@ -6499,11 +7709,6 @@ export interface DeleteOrderErpOrderStagesDelectResponse { @@ -6499,11 +7709,6 @@ export interface DeleteOrderErpOrderStagesDelectResponse {
6499 200: ServerResult; 7709 200: ServerResult;
6500 /** 7710 /**
6501 * @description 7711 * @description
6502 - * No Content  
6503 - */  
6504 - 204: any;  
6505 - /**  
6506 - * @description  
6507 * Unauthorized 7712 * Unauthorized
6508 */ 7713 */
6509 401: any; 7714 401: any;
@@ -6512,26 +7717,28 @@ export interface DeleteOrderErpOrderStagesDelectResponse { @@ -6512,26 +7717,28 @@ export interface DeleteOrderErpOrderStagesDelectResponse {
6512 * Forbidden 7717 * Forbidden
6513 */ 7718 */
6514 403: any; 7719 403: any;
  7720 + /**
  7721 + * @description
  7722 + * Not Found
  7723 + */
  7724 + 404: any;
6515 } 7725 }
6516 7726
6517 -export type DeleteOrderErpOrderStagesDelectResponseSuccess =  
6518 - DeleteOrderErpOrderStagesDelectResponse[200]; 7727 +export type GetOrderErpOrderZoNingSelectAllResponseSuccess =
  7728 + GetOrderErpOrderZoNingSelectAllResponse[200];
6519 /** 7729 /**
6520 * @description 7730 * @description
6521 - * 删除分期账单  
6522 - * @tags order-stages-controller 7731 + * 查询
  7732 + * @tags order-zo-ning-controller
6523 * @produces * 7733 * @produces *
6524 */ 7734 */
6525 -export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() => {  
6526 - const method = 'delete';  
6527 - const url = '/order/erp/orderStages/delect';  
6528 - function request(  
6529 - option: DeleteOrderErpOrderStagesDelectOption,  
6530 - ): Promise<DeleteOrderErpOrderStagesDelectResponseSuccess> { 7735 +export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => {
  7736 + const method = 'get';
  7737 + const url = '/order/erp/orderZoNing/selectAll';
  7738 + function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> {
6531 return requester(request.url, { 7739 return requester(request.url, {
6532 method: request.method, 7740 method: request.method,
6533 - ...option,  
6534 - }) as unknown as Promise<DeleteOrderErpOrderStagesDelectResponseSuccess>; 7741 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>;
6535 } 7742 }
6536 7743
6537 /** http method */ 7744 /** http method */
@@ -6541,13 +7748,13 @@ export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() =&gt; { @@ -6541,13 +7748,13 @@ export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() =&gt; {
6541 return request; 7748 return request;
6542 })(); 7749 })();
6543 7750
6544 -/** @description response type for getOrderErpOrderStagesExport */  
6545 -export interface GetOrderErpOrderStagesExportResponse { 7751 +/** @description response type for getOrderErpOrderZoNingSelectProvinceAll */
  7752 +export interface GetOrderErpOrderZoNingSelectProvinceAllResponse {
6546 /** 7753 /**
6547 * @description 7754 * @description
6548 * OK 7755 * OK
6549 */ 7756 */
6550 - 200: any; 7757 + 200: ServerResult;
6551 /** 7758 /**
6552 * @description 7759 * @description
6553 * Unauthorized 7760 * Unauthorized
@@ -6565,21 +7772,21 @@ export interface GetOrderErpOrderStagesExportResponse { @@ -6565,21 +7772,21 @@ export interface GetOrderErpOrderStagesExportResponse {
6565 404: any; 7772 404: any;
6566 } 7773 }
6567 7774
6568 -export type GetOrderErpOrderStagesExportResponseSuccess =  
6569 - GetOrderErpOrderStagesExportResponse[200]; 7775 +export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess =
  7776 + GetOrderErpOrderZoNingSelectProvinceAllResponse[200];
6570 /** 7777 /**
6571 * @description 7778 * @description
6572 - * 导出分期账单  
6573 - * @tags order-stages-controller 7779 + * 查询所有省份
  7780 + * @tags order-zo-ning-controller
6574 * @produces * 7781 * @produces *
6575 */ 7782 */
6576 -export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() => { 7783 +export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => {
6577 const method = 'get'; 7784 const method = 'get';
6578 - const url = '/order/erp/orderStages/export';  
6579 - function request(): Promise<GetOrderErpOrderStagesExportResponseSuccess> { 7785 + const url = '/order/erp/orderZoNing/selectProvinceAll';
  7786 + function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> {
6580 return requester(request.url, { 7787 return requester(request.url, {
6581 method: request.method, 7788 method: request.method,
6582 - }) as unknown as Promise<GetOrderErpOrderStagesExportResponseSuccess>; 7789 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>;
6583 } 7790 }
6584 7791
6585 /** http method */ 7792 /** http method */
@@ -6589,22 +7796,22 @@ export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() =&gt; { @@ -6589,22 +7796,22 @@ export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() =&gt; {
6589 return request; 7796 return request;
6590 })(); 7797 })();
6591 7798
6592 -/** @description request parameter type for postOrderErpOrderStagesImport */  
6593 -export interface PostOrderErpOrderStagesImportOption { 7799 +/** @description request parameter type for postOrderErpOrderZoNingSelectSaleUserByProvince */
  7800 +export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceOption {
6594 /** 7801 /**
6595 * @description 7802 * @description
6596 - * file 7803 + * zoning
6597 */ 7804 */
6598 - formData: { 7805 + body: {
6599 /** 7806 /**
6600 @description 7807 @description
6601 - file */  
6602 - file: File; 7808 + zoning */
  7809 + zoning: string;
6603 }; 7810 };
6604 } 7811 }
6605 7812
6606 -/** @description response type for postOrderErpOrderStagesImport */  
6607 -export interface PostOrderErpOrderStagesImportResponse { 7813 +/** @description response type for postOrderErpOrderZoNingSelectSaleUserByProvince */
  7814 +export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse {
6608 /** 7815 /**
6609 * @description 7816 * @description
6610 * OK 7817 * OK
@@ -6632,25 +7839,74 @@ export interface PostOrderErpOrderStagesImportResponse { @@ -6632,25 +7839,74 @@ export interface PostOrderErpOrderStagesImportResponse {
6632 404: any; 7839 404: any;
6633 } 7840 }
6634 7841
6635 -export type PostOrderErpOrderStagesImportResponseSuccess =  
6636 - PostOrderErpOrderStagesImportResponse[200]; 7842 +export type PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess =
  7843 + PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse[200];
6637 /** 7844 /**
6638 * @description 7845 * @description
6639 - * 导入分期账单  
6640 - * @tags order-stages-controller 7846 + * 查询出这个大区所包含的销售
  7847 + * @tags order-zo-ning-controller
6641 * @produces * 7848 * @produces *
6642 - * @consumes multipart/form-data 7849 + * @consumes application/json
6643 */ 7850 */
6644 -export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() => {  
6645 - const method = 'post';  
6646 - const url = '/order/erp/orderStages/import';  
6647 - function request(  
6648 - option: PostOrderErpOrderStagesImportOption,  
6649 - ): Promise<PostOrderErpOrderStagesImportResponseSuccess> { 7851 +export const postOrderErpOrderZoNingSelectSaleUserByProvince =
  7852 + /* #__PURE__ */ (() => {
  7853 + const method = 'post';
  7854 + const url = '/order/erp/orderZoNing/selectSaleUserByProvince';
  7855 + function request(
  7856 + option: PostOrderErpOrderZoNingSelectSaleUserByProvinceOption,
  7857 + ): Promise<PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess> {
  7858 + return requester(request.url, {
  7859 + method: request.method,
  7860 + ...option,
  7861 + }) as unknown as Promise<PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess>;
  7862 + }
  7863 +
  7864 + /** http method */
  7865 + request.method = method;
  7866 + /** request url */
  7867 + request.url = url;
  7868 + return request;
  7869 + })();
  7870 +
  7871 +/** @description response type for getOrderErpOrderZoNingSelectUserAll */
  7872 +export interface GetOrderErpOrderZoNingSelectUserAllResponse {
  7873 + /**
  7874 + * @description
  7875 + * OK
  7876 + */
  7877 + 200: ServerResult;
  7878 + /**
  7879 + * @description
  7880 + * Unauthorized
  7881 + */
  7882 + 401: any;
  7883 + /**
  7884 + * @description
  7885 + * Forbidden
  7886 + */
  7887 + 403: any;
  7888 + /**
  7889 + * @description
  7890 + * Not Found
  7891 + */
  7892 + 404: any;
  7893 +}
  7894 +
  7895 +export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess =
  7896 + GetOrderErpOrderZoNingSelectUserAllResponse[200];
  7897 +/**
  7898 + * @description
  7899 + * 查询所有销售
  7900 + * @tags order-zo-ning-controller
  7901 + * @produces *
  7902 + */
  7903 +export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => {
  7904 + const method = 'get';
  7905 + const url = '/order/erp/orderZoNing/selectUserAll';
  7906 + function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> {
6650 return requester(request.url, { 7907 return requester(request.url, {
6651 method: request.method, 7908 method: request.method,
6652 - ...option,  
6653 - }) as unknown as Promise<PostOrderErpOrderStagesImportResponseSuccess>; 7909 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>;
6654 } 7910 }
6655 7911
6656 /** http method */ 7912 /** http method */
@@ -6660,8 +7916,22 @@ export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() =&gt; { @@ -6660,8 +7916,22 @@ export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() =&gt; {
6660 return request; 7916 return request;
6661 })(); 7917 })();
6662 7918
6663 -/** @description response type for getOrderErpOrderStagesListAll */  
6664 -export interface GetOrderErpOrderStagesListAllResponse { 7919 +/** @description request parameter type for postOrderErpProfitAnalysis */
  7920 +export interface PostOrderErpProfitAnalysisOption {
  7921 + /**
  7922 + * @description
  7923 + * orderProfitAnalysisVo
  7924 + */
  7925 + body: {
  7926 + /**
  7927 + @description
  7928 + orderProfitAnalysisVo */
  7929 + orderProfitAnalysisVo: OrderProfitAnalysisVo;
  7930 + };
  7931 +}
  7932 +
  7933 +/** @description response type for postOrderErpProfitAnalysis */
  7934 +export interface PostOrderErpProfitAnalysisResponse {
6665 /** 7935 /**
6666 * @description 7936 * @description
6667 * OK 7937 * OK
@@ -6669,6 +7939,11 @@ export interface GetOrderErpOrderStagesListAllResponse { @@ -6669,6 +7939,11 @@ export interface GetOrderErpOrderStagesListAllResponse {
6669 200: ServerResult; 7939 200: ServerResult;
6670 /** 7940 /**
6671 * @description 7941 * @description
  7942 + * Created
  7943 + */
  7944 + 201: any;
  7945 + /**
  7946 + * @description
6672 * Unauthorized 7947 * Unauthorized
6673 */ 7948 */
6674 401: any; 7949 401: any;
@@ -6684,21 +7959,25 @@ export interface GetOrderErpOrderStagesListAllResponse { @@ -6684,21 +7959,25 @@ export interface GetOrderErpOrderStagesListAllResponse {
6684 404: any; 7959 404: any;
6685 } 7960 }
6686 7961
6687 -export type GetOrderErpOrderStagesListAllResponseSuccess =  
6688 - GetOrderErpOrderStagesListAllResponse[200]; 7962 +export type PostOrderErpProfitAnalysisResponseSuccess =
  7963 + PostOrderErpProfitAnalysisResponse[200];
6689 /** 7964 /**
6690 * @description 7965 * @description
6691 - * 查询所有分期账单  
6692 - * @tags order-stages-controller 7966 + * analysis
  7967 + * @tags order-profit-controller
6693 * @produces * 7968 * @produces *
  7969 + * @consumes application/json
6694 */ 7970 */
6695 -export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() => {  
6696 - const method = 'get';  
6697 - const url = '/order/erp/orderStages/listAll';  
6698 - function request(): Promise<GetOrderErpOrderStagesListAllResponseSuccess> { 7971 +export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => {
  7972 + const method = 'post';
  7973 + const url = '/order/erp/profit/analysis';
  7974 + function request(
  7975 + option: PostOrderErpProfitAnalysisOption,
  7976 + ): Promise<PostOrderErpProfitAnalysisResponseSuccess> {
6699 return requester(request.url, { 7977 return requester(request.url, {
6700 method: request.method, 7978 method: request.method,
6701 - }) as unknown as Promise<GetOrderErpOrderStagesListAllResponseSuccess>; 7979 + ...option,
  7980 + }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>;
6702 } 7981 }
6703 7982
6704 /** http method */ 7983 /** http method */
@@ -6708,22 +7987,22 @@ export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() =&gt; { @@ -6708,22 +7987,22 @@ export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() =&gt; {
6708 return request; 7987 return request;
6709 })(); 7988 })();
6710 7989
6711 -/** @description request parameter type for postOrderErpOrderStagesSaveOrUpdate */  
6712 -export interface PostOrderErpOrderStagesSaveOrUpdateOption { 7990 +/** @description request parameter type for postOrderErpRolesAdd */
  7991 +export interface PostOrderErpRolesAddOption {
6713 /** 7992 /**
6714 * @description 7993 * @description
6715 - * orderStagesFromDo 7994 + * roleVO
6716 */ 7995 */
6717 body: { 7996 body: {
6718 /** 7997 /**
6719 @description 7998 @description
6720 - orderStagesFromDo */  
6721 - orderStagesFromDo: OrderStagesFromDo; 7999 + roleVO */
  8000 + roleVO: AdminRoleVO;
6722 }; 8001 };
6723 } 8002 }
6724 8003
6725 -/** @description response type for postOrderErpOrderStagesSaveOrUpdate */  
6726 -export interface PostOrderErpOrderStagesSaveOrUpdateResponse { 8004 +/** @description response type for postOrderErpRolesAdd */
  8005 +export interface PostOrderErpRolesAddResponse {
6727 /** 8006 /**
6728 * @description 8007 * @description
6729 * OK 8008 * OK
@@ -6751,25 +8030,25 @@ export interface PostOrderErpOrderStagesSaveOrUpdateResponse { @@ -6751,25 +8030,25 @@ export interface PostOrderErpOrderStagesSaveOrUpdateResponse {
6751 404: any; 8030 404: any;
6752 } 8031 }
6753 8032
6754 -export type PostOrderErpOrderStagesSaveOrUpdateResponseSuccess =  
6755 - PostOrderErpOrderStagesSaveOrUpdateResponse[200]; 8033 +export type PostOrderErpRolesAddResponseSuccess =
  8034 + PostOrderErpRolesAddResponse[200];
6756 /** 8035 /**
6757 * @description 8036 * @description
6758 - * 添加或者修改分期账单  
6759 - * @tags order-stages-controller 8037 + * 新增角色
  8038 + * @tags 系统:角色管理
6760 * @produces * 8039 * @produces *
6761 * @consumes application/json 8040 * @consumes application/json
6762 */ 8041 */
6763 -export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => { 8042 +export const postOrderErpRolesAdd = /* #__PURE__ */ (() => {
6764 const method = 'post'; 8043 const method = 'post';
6765 - const url = '/order/erp/orderStages/saveOrUpdate'; 8044 + const url = '/order/erp/roles/add';
6766 function request( 8045 function request(
6767 - option: PostOrderErpOrderStagesSaveOrUpdateOption,  
6768 - ): Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess> { 8046 + option: PostOrderErpRolesAddOption,
  8047 + ): Promise<PostOrderErpRolesAddResponseSuccess> {
6769 return requester(request.url, { 8048 return requester(request.url, {
6770 method: request.method, 8049 method: request.method,
6771 ...option, 8050 ...option,
6772 - }) as unknown as Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess>; 8051 + }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>;
6773 } 8052 }
6774 8053
6775 /** http method */ 8054 /** http method */
@@ -6779,22 +8058,22 @@ export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() =&gt; { @@ -6779,22 +8058,22 @@ export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() =&gt; {
6779 return request; 8058 return request;
6780 })(); 8059 })();
6781 8060
6782 -/** @description request parameter type for postOrderErpOrderStagesSearch */  
6783 -export interface PostOrderErpOrderStagesSearchOption { 8061 +/** @description request parameter type for postOrderErpRolesAll */
  8062 +export interface PostOrderErpRolesAllOption {
6784 /** 8063 /**
6785 * @description 8064 * @description
6786 - * orderStagesSelDo 8065 + * queryVO
6787 */ 8066 */
6788 body: { 8067 body: {
6789 /** 8068 /**
6790 @description 8069 @description
6791 - orderStagesSelDo */  
6792 - orderStagesSelDo: OrderStagesSelDo; 8070 + queryVO */
  8071 + queryVO: AdminRoleQueryVO;
6793 }; 8072 };
6794 } 8073 }
6795 8074
6796 -/** @description response type for postOrderErpOrderStagesSearch */  
6797 -export interface PostOrderErpOrderStagesSearchResponse { 8075 +/** @description response type for postOrderErpRolesAll */
  8076 +export interface PostOrderErpRolesAllResponse {
6798 /** 8077 /**
6799 * @description 8078 * @description
6800 * OK 8079 * OK
@@ -6822,25 +8101,25 @@ export interface PostOrderErpOrderStagesSearchResponse { @@ -6822,25 +8101,25 @@ export interface PostOrderErpOrderStagesSearchResponse {
6822 404: any; 8101 404: any;
6823 } 8102 }
6824 8103
6825 -export type PostOrderErpOrderStagesSearchResponseSuccess =  
6826 - PostOrderErpOrderStagesSearchResponse[200]; 8104 +export type PostOrderErpRolesAllResponseSuccess =
  8105 + PostOrderErpRolesAllResponse[200];
6827 /** 8106 /**
6828 * @description 8107 * @description
6829 - * 条件搜索分期账单  
6830 - * @tags order-stages-controller 8108 + * 返回全部的角色
  8109 + * @tags 系统:角色管理
6831 * @produces * 8110 * @produces *
6832 * @consumes application/json 8111 * @consumes application/json
6833 */ 8112 */
6834 -export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => { 8113 +export const postOrderErpRolesAll = /* #__PURE__ */ (() => {
6835 const method = 'post'; 8114 const method = 'post';
6836 - const url = '/order/erp/orderStages/search'; 8115 + const url = '/order/erp/roles/all';
6837 function request( 8116 function request(
6838 - option: PostOrderErpOrderStagesSearchOption,  
6839 - ): Promise<PostOrderErpOrderStagesSearchResponseSuccess> { 8117 + option: PostOrderErpRolesAllOption,
  8118 + ): Promise<PostOrderErpRolesAllResponseSuccess> {
6840 return requester(request.url, { 8119 return requester(request.url, {
6841 method: request.method, 8120 method: request.method,
6842 ...option, 8121 ...option,
6843 - }) as unknown as Promise<PostOrderErpOrderStagesSearchResponseSuccess>; 8122 + }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>;
6844 } 8123 }
6845 8124
6846 /** http method */ 8125 /** http method */
@@ -6850,22 +8129,22 @@ export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() =&gt; { @@ -6850,22 +8129,22 @@ export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() =&gt; {
6850 return request; 8129 return request;
6851 })(); 8130 })();
6852 8131
6853 -/** @description request parameter type for postOrderErpOrderStagesUpload */  
6854 -export interface PostOrderErpOrderStagesUploadOption { 8132 +/** @description request parameter type for postOrderErpRolesAuthMenu */
  8133 +export interface PostOrderErpRolesAuthMenuOption {
6855 /** 8134 /**
6856 * @description 8135 * @description
6857 - * file 8136 + * roleVO
6858 */ 8137 */
6859 - formData: { 8138 + body: {
6860 /** 8139 /**
6861 @description 8140 @description
6862 - file */  
6863 - file: File; 8141 + roleVO */
  8142 + roleVO: AdminAuthRoleVO;
6864 }; 8143 };
6865 } 8144 }
6866 8145
6867 -/** @description response type for postOrderErpOrderStagesUpload */  
6868 -export interface PostOrderErpOrderStagesUploadResponse { 8146 +/** @description response type for postOrderErpRolesAuthMenu */
  8147 +export interface PostOrderErpRolesAuthMenuResponse {
6869 /** 8148 /**
6870 * @description 8149 * @description
6871 * OK 8150 * OK
@@ -6893,25 +8172,25 @@ export interface PostOrderErpOrderStagesUploadResponse { @@ -6893,25 +8172,25 @@ export interface PostOrderErpOrderStagesUploadResponse {
6893 404: any; 8172 404: any;
6894 } 8173 }
6895 8174
6896 -export type PostOrderErpOrderStagesUploadResponseSuccess =  
6897 - PostOrderErpOrderStagesUploadResponse[200]; 8175 +export type PostOrderErpRolesAuthMenuResponseSuccess =
  8176 + PostOrderErpRolesAuthMenuResponse[200];
6898 /** 8177 /**
6899 * @description 8178 * @description
6900 - * 合同文件上传  
6901 - * @tags order-stages-controller 8179 + * 授权角色菜单
  8180 + * @tags 系统:角色管理
6902 * @produces * 8181 * @produces *
6903 - * @consumes multipart/form-data 8182 + * @consumes application/json
6904 */ 8183 */
6905 -export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => { 8184 +export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => {
6906 const method = 'post'; 8185 const method = 'post';
6907 - const url = '/order/erp/orderStages/upload'; 8186 + const url = '/order/erp/roles/auth_menu';
6908 function request( 8187 function request(
6909 - option: PostOrderErpOrderStagesUploadOption,  
6910 - ): Promise<PostOrderErpOrderStagesUploadResponseSuccess> { 8188 + option: PostOrderErpRolesAuthMenuOption,
  8189 + ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> {
6911 return requester(request.url, { 8190 return requester(request.url, {
6912 method: request.method, 8191 method: request.method,
6913 ...option, 8192 ...option,
6914 - }) as unknown as Promise<PostOrderErpOrderStagesUploadResponseSuccess>; 8193 + }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>;
6915 } 8194 }
6916 8195
6917 /** http method */ 8196 /** http method */
@@ -6921,22 +8200,22 @@ export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() =&gt; { @@ -6921,22 +8200,22 @@ export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() =&gt; {
6921 return request; 8200 return request;
6922 })(); 8201 })();
6923 8202
6924 -/** @description request parameter type for postOrderErpOrderStagesPayWaySaveOrUpdate */  
6925 -export interface PostOrderErpOrderStagesPayWaySaveOrUpdateOption { 8203 +/** @description request parameter type for postOrderErpRolesDelete */
  8204 +export interface PostOrderErpRolesDeleteOption {
6926 /** 8205 /**
6927 * @description 8206 * @description
6928 - * orderStagesPayWayList 8207 + * queryVO
6929 */ 8208 */
6930 body: { 8209 body: {
6931 /** 8210 /**
6932 @description 8211 @description
6933 - orderStagesPayWayList */  
6934 - orderStagesPayWayList: Array<OrderStagesPayWay>; 8212 + queryVO */
  8213 + queryVO: AdminRoleQueryVO;
6935 }; 8214 };
6936 } 8215 }
6937 8216
6938 -/** @description response type for postOrderErpOrderStagesPayWaySaveOrUpdate */  
6939 -export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse { 8217 +/** @description response type for postOrderErpRolesDelete */
  8218 +export interface PostOrderErpRolesDeleteResponse {
6940 /** 8219 /**
6941 * @description 8220 * @description
6942 * OK 8221 * OK
@@ -6964,51 +8243,50 @@ export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse { @@ -6964,51 +8243,50 @@ export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse {
6964 404: any; 8243 404: any;
6965 } 8244 }
6966 8245
6967 -export type PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess =  
6968 - PostOrderErpOrderStagesPayWaySaveOrUpdateResponse[200]; 8246 +export type PostOrderErpRolesDeleteResponseSuccess =
  8247 + PostOrderErpRolesDeleteResponse[200];
6969 /** 8248 /**
6970 * @description 8249 * @description
6971 - * 修改或者保存  
6972 - * @tags order-stages-pay-way-controller 8250 + * 删除角色
  8251 + * @tags 系统:角色管理
6973 * @produces * 8252 * @produces *
6974 * @consumes application/json 8253 * @consumes application/json
6975 */ 8254 */
6976 -export const postOrderErpOrderStagesPayWaySaveOrUpdate =  
6977 - /* #__PURE__ */ (() => {  
6978 - const method = 'post';  
6979 - const url = '/order/erp/orderStagesPayWay/saveOrUpdate';  
6980 - function request(  
6981 - option: PostOrderErpOrderStagesPayWaySaveOrUpdateOption,  
6982 - ): Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess> {  
6983 - return requester(request.url, {  
6984 - method: request.method,  
6985 - ...option,  
6986 - }) as unknown as Promise<PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess>;  
6987 - } 8255 +export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {
  8256 + const method = 'post';
  8257 + const url = '/order/erp/roles/delete';
  8258 + function request(
  8259 + option: PostOrderErpRolesDeleteOption,
  8260 + ): Promise<PostOrderErpRolesDeleteResponseSuccess> {
  8261 + return requester(request.url, {
  8262 + method: request.method,
  8263 + ...option,
  8264 + }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>;
  8265 + }
6988 8266
6989 - /** http method */  
6990 - request.method = method;  
6991 - /** request url */  
6992 - request.url = url;  
6993 - return request;  
6994 - })(); 8267 + /** http method */
  8268 + request.method = method;
  8269 + /** request url */
  8270 + request.url = url;
  8271 + return request;
  8272 +})();
6995 8273
6996 -/** @description request parameter type for postOrderErpOrderStagesPayWaySelect */  
6997 -export interface PostOrderErpOrderStagesPayWaySelectOption { 8274 +/** @description request parameter type for postOrderErpRolesDetail */
  8275 +export interface PostOrderErpRolesDetailOption {
6998 /** 8276 /**
6999 * @description 8277 * @description
7000 - * orderStagesPayWayDo 8278 + * queryVO
7001 */ 8279 */
7002 body: { 8280 body: {
7003 /** 8281 /**
7004 @description 8282 @description
7005 - orderStagesPayWayDo */  
7006 - orderStagesPayWayDo: OrderStagesPayWayDo; 8283 + queryVO */
  8284 + queryVO: AdminRoleQueryVO;
7007 }; 8285 };
7008 } 8286 }
7009 8287
7010 -/** @description response type for postOrderErpOrderStagesPayWaySelect */  
7011 -export interface PostOrderErpOrderStagesPayWaySelectResponse { 8288 +/** @description response type for postOrderErpRolesDetail */
  8289 +export interface PostOrderErpRolesDetailResponse {
7012 /** 8290 /**
7013 * @description 8291 * @description
7014 * OK 8292 * OK
@@ -7036,25 +8314,25 @@ export interface PostOrderErpOrderStagesPayWaySelectResponse { @@ -7036,25 +8314,25 @@ export interface PostOrderErpOrderStagesPayWaySelectResponse {
7036 404: any; 8314 404: any;
7037 } 8315 }
7038 8316
7039 -export type PostOrderErpOrderStagesPayWaySelectResponseSuccess =  
7040 - PostOrderErpOrderStagesPayWaySelectResponse[200]; 8317 +export type PostOrderErpRolesDetailResponseSuccess =
  8318 + PostOrderErpRolesDetailResponse[200];
7041 /** 8319 /**
7042 * @description 8320 * @description
7043 - * 查询该的分期比例  
7044 - * @tags order-stages-pay-way-controller 8321 + * 获取单个role
  8322 + * @tags 系统:角色管理
7045 * @produces * 8323 * @produces *
7046 * @consumes application/json 8324 * @consumes application/json
7047 */ 8325 */
7048 -export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => { 8326 +export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {
7049 const method = 'post'; 8327 const method = 'post';
7050 - const url = '/order/erp/orderStagesPayWay/select'; 8328 + const url = '/order/erp/roles/detail';
7051 function request( 8329 function request(
7052 - option: PostOrderErpOrderStagesPayWaySelectOption,  
7053 - ): Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess> { 8330 + option: PostOrderErpRolesDetailOption,
  8331 + ): Promise<PostOrderErpRolesDetailResponseSuccess> {
7054 return requester(request.url, { 8332 return requester(request.url, {
7055 method: request.method, 8333 method: request.method,
7056 ...option, 8334 ...option,
7057 - }) as unknown as Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess>; 8335 + }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>;
7058 } 8336 }
7059 8337
7060 /** http method */ 8338 /** http method */
@@ -7064,22 +8342,22 @@ export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() =&gt; { @@ -7064,22 +8342,22 @@ export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() =&gt; {
7064 return request; 8342 return request;
7065 })(); 8343 })();
7066 8344
7067 -/** @description request parameter type for postOrderErpOrderStagesPayWayUploadForPayWay */  
7068 -export interface PostOrderErpOrderStagesPayWayUploadForPayWayOption { 8345 +/** @description request parameter type for postOrderErpRolesEdit */
  8346 +export interface PostOrderErpRolesEditOption {
7069 /** 8347 /**
7070 * @description 8348 * @description
7071 - * orderStagesPayWayFileDo 8349 + * roleVO
7072 */ 8350 */
7073 body: { 8351 body: {
7074 /** 8352 /**
7075 @description 8353 @description
7076 - orderStagesPayWayFileDo */  
7077 - orderStagesPayWayFileDo: OrderStagesPayWayFileDo; 8354 + roleVO */
  8355 + roleVO: AdminRoleVO;
7078 }; 8356 };
7079 } 8357 }
7080 8358
7081 -/** @description response type for postOrderErpOrderStagesPayWayUploadForPayWay */  
7082 -export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse { 8359 +/** @description response type for postOrderErpRolesEdit */
  8360 +export interface PostOrderErpRolesEditResponse {
7083 /** 8361 /**
7084 * @description 8362 * @description
7085 * OK 8363 * OK
@@ -7107,51 +8385,50 @@ export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse { @@ -7107,51 +8385,50 @@ export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse {
7107 404: any; 8385 404: any;
7108 } 8386 }
7109 8387
7110 -export type PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess =  
7111 - PostOrderErpOrderStagesPayWayUploadForPayWayResponse[200]; 8388 +export type PostOrderErpRolesEditResponseSuccess =
  8389 + PostOrderErpRolesEditResponse[200];
7112 /** 8390 /**
7113 * @description 8391 * @description
7114 - * 付款合同文件上传  
7115 - * @tags order-stages-pay-way-controller 8392 + * 修改角色
  8393 + * @tags 系统:角色管理
7116 * @produces * 8394 * @produces *
7117 * @consumes application/json 8395 * @consumes application/json
7118 */ 8396 */
7119 -export const postOrderErpOrderStagesPayWayUploadForPayWay =  
7120 - /* #__PURE__ */ (() => {  
7121 - const method = 'post';  
7122 - const url = '/order/erp/orderStagesPayWay/uploadForPayWay';  
7123 - function request(  
7124 - option: PostOrderErpOrderStagesPayWayUploadForPayWayOption,  
7125 - ): Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess> {  
7126 - return requester(request.url, {  
7127 - method: request.method,  
7128 - ...option,  
7129 - }) as unknown as Promise<PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess>;  
7130 - } 8397 +export const postOrderErpRolesEdit = /* #__PURE__ */ (() => {
  8398 + const method = 'post';
  8399 + const url = '/order/erp/roles/edit';
  8400 + function request(
  8401 + option: PostOrderErpRolesEditOption,
  8402 + ): Promise<PostOrderErpRolesEditResponseSuccess> {
  8403 + return requester(request.url, {
  8404 + method: request.method,
  8405 + ...option,
  8406 + }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>;
  8407 + }
7131 8408
7132 - /** http method */  
7133 - request.method = method;  
7134 - /** request url */  
7135 - request.url = url;  
7136 - return request;  
7137 - })(); 8409 + /** http method */
  8410 + request.method = method;
  8411 + /** request url */
  8412 + request.url = url;
  8413 + return request;
  8414 +})();
7138 8415
7139 -/** @description request parameter type for deleteOrderErpOrderZoNingDelete */  
7140 -export interface DeleteOrderErpOrderZoNingDeleteOption { 8416 +/** @description request parameter type for postOrderErpRolesListByPage */
  8417 +export interface PostOrderErpRolesListByPageOption {
7141 /** 8418 /**
7142 * @description 8419 * @description
7143 - * id 8420 + * queryVO
7144 */ 8421 */
7145 body: { 8422 body: {
7146 /** 8423 /**
7147 @description 8424 @description
7148 - id */  
7149 - id: number; 8425 + queryVO */
  8426 + queryVO: AdminRoleQueryVO;
7150 }; 8427 };
7151 } 8428 }
7152 8429
7153 -/** @description response type for deleteOrderErpOrderZoNingDelete */  
7154 -export interface DeleteOrderErpOrderZoNingDeleteResponse { 8430 +/** @description response type for postOrderErpRolesListByPage */
  8431 +export interface PostOrderErpRolesListByPageResponse {
7155 /** 8432 /**
7156 * @description 8433 * @description
7157 * OK 8434 * OK
@@ -7159,9 +8436,9 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse { @@ -7159,9 +8436,9 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse {
7159 200: ServerResult; 8436 200: ServerResult;
7160 /** 8437 /**
7161 * @description 8438 * @description
7162 - * No Content 8439 + * Created
7163 */ 8440 */
7164 - 204: any; 8441 + 201: any;
7165 /** 8442 /**
7166 * @description 8443 * @description
7167 * Unauthorized 8444 * Unauthorized
@@ -7172,26 +8449,32 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse { @@ -7172,26 +8449,32 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse {
7172 * Forbidden 8449 * Forbidden
7173 */ 8450 */
7174 403: any; 8451 403: any;
  8452 + /**
  8453 + * @description
  8454 + * Not Found
  8455 + */
  8456 + 404: any;
7175 } 8457 }
7176 8458
7177 -export type DeleteOrderErpOrderZoNingDeleteResponseSuccess =  
7178 - DeleteOrderErpOrderZoNingDeleteResponse[200]; 8459 +export type PostOrderErpRolesListByPageResponseSuccess =
  8460 + PostOrderErpRolesListByPageResponse[200];
7179 /** 8461 /**
7180 * @description 8462 * @description
7181 - * toDetele  
7182 - * @tags order-zo-ning-controller 8463 + * 查询角色
  8464 + * @tags 系统:角色管理
7183 * @produces * 8465 * @produces *
  8466 + * @consumes application/json
7184 */ 8467 */
7185 -export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => {  
7186 - const method = 'delete';  
7187 - const url = '/order/erp/orderZoNing/delete'; 8468 +export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {
  8469 + const method = 'post';
  8470 + const url = '/order/erp/roles/list_by_page';
7188 function request( 8471 function request(
7189 - option: DeleteOrderErpOrderZoNingDeleteOption,  
7190 - ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> { 8472 + option: PostOrderErpRolesListByPageOption,
  8473 + ): Promise<PostOrderErpRolesListByPageResponseSuccess> {
7191 return requester(request.url, { 8474 return requester(request.url, {
7192 method: request.method, 8475 method: request.method,
7193 ...option, 8476 ...option,
7194 - }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>; 8477 + }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>;
7195 } 8478 }
7196 8479
7197 /** http method */ 8480 /** http method */
@@ -7201,22 +8484,22 @@ export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() =&gt; { @@ -7201,22 +8484,22 @@ export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() =&gt; {
7201 return request; 8484 return request;
7202 })(); 8485 })();
7203 8486
7204 -/** @description request parameter type for postOrderErpOrderZoNingSaveOrUpdate */  
7205 -export interface PostOrderErpOrderZoNingSaveOrUpdateOption { 8487 +/** @description request parameter type for postOrderErpUsersAdd */
  8488 +export interface PostOrderErpUsersAddOption {
7206 /** 8489 /**
7207 * @description 8490 * @description
7208 - * orderZoNingProvinceUserDo 8491 + * userVO
7209 */ 8492 */
7210 body: { 8493 body: {
7211 /** 8494 /**
7212 @description 8495 @description
7213 - orderZoNingProvinceUserDo */  
7214 - orderZoNingProvinceUserDo: OrderZoNingProvinceUserDo; 8496 + userVO */
  8497 + userVO: AdminUserVO;
7215 }; 8498 };
7216 } 8499 }
7217 8500
7218 -/** @description response type for postOrderErpOrderZoNingSaveOrUpdate */  
7219 -export interface PostOrderErpOrderZoNingSaveOrUpdateResponse { 8501 +/** @description response type for postOrderErpUsersAdd */
  8502 +export interface PostOrderErpUsersAddResponse {
7220 /** 8503 /**
7221 * @description 8504 * @description
7222 * OK 8505 * OK
@@ -7244,25 +8527,25 @@ export interface PostOrderErpOrderZoNingSaveOrUpdateResponse { @@ -7244,25 +8527,25 @@ export interface PostOrderErpOrderZoNingSaveOrUpdateResponse {
7244 404: any; 8527 404: any;
7245 } 8528 }
7246 8529
7247 -export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess =  
7248 - PostOrderErpOrderZoNingSaveOrUpdateResponse[200]; 8530 +export type PostOrderErpUsersAddResponseSuccess =
  8531 + PostOrderErpUsersAddResponse[200];
7249 /** 8532 /**
7250 * @description 8533 * @description
7251 - * update  
7252 - * @tags order-zo-ning-controller 8534 + * 新增用户
  8535 + * @tags 系统:用户管理
7253 * @produces * 8536 * @produces *
7254 * @consumes application/json 8537 * @consumes application/json
7255 */ 8538 */
7256 -export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => { 8539 +export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {
7257 const method = 'post'; 8540 const method = 'post';
7258 - const url = '/order/erp/orderZoNing/saveOrUpdate'; 8541 + const url = '/order/erp/users/add';
7259 function request( 8542 function request(
7260 - option: PostOrderErpOrderZoNingSaveOrUpdateOption,  
7261 - ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> { 8543 + option: PostOrderErpUsersAddOption,
  8544 + ): Promise<PostOrderErpUsersAddResponseSuccess> {
7262 return requester(request.url, { 8545 return requester(request.url, {
7263 method: request.method, 8546 method: request.method,
7264 ...option, 8547 ...option,
7265 - }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>; 8548 + }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>;
7266 } 8549 }
7267 8550
7268 /** http method */ 8551 /** http method */
@@ -7272,8 +8555,22 @@ export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() =&gt; { @@ -7272,8 +8555,22 @@ export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() =&gt; {
7272 return request; 8555 return request;
7273 })(); 8556 })();
7274 8557
7275 -/** @description response type for getOrderErpOrderZoNingSelectAll */  
7276 -export interface GetOrderErpOrderZoNingSelectAllResponse { 8558 +/** @description request parameter type for postOrderErpUsersAuthRole */
  8559 +export interface PostOrderErpUsersAuthRoleOption {
  8560 + /**
  8561 + * @description
  8562 + * userVO
  8563 + */
  8564 + body: {
  8565 + /**
  8566 + @description
  8567 + userVO */
  8568 + userVO: AdminAuthUserVO;
  8569 + };
  8570 +}
  8571 +
  8572 +/** @description response type for postOrderErpUsersAuthRole */
  8573 +export interface PostOrderErpUsersAuthRoleResponse {
7277 /** 8574 /**
7278 * @description 8575 * @description
7279 * OK 8576 * OK
@@ -7281,6 +8578,11 @@ export interface GetOrderErpOrderZoNingSelectAllResponse { @@ -7281,6 +8578,11 @@ export interface GetOrderErpOrderZoNingSelectAllResponse {
7281 200: ServerResult; 8578 200: ServerResult;
7282 /** 8579 /**
7283 * @description 8580 * @description
  8581 + * Created
  8582 + */
  8583 + 201: any;
  8584 + /**
  8585 + * @description
7284 * Unauthorized 8586 * Unauthorized
7285 */ 8587 */
7286 401: any; 8588 401: any;
@@ -7296,21 +8598,25 @@ export interface GetOrderErpOrderZoNingSelectAllResponse { @@ -7296,21 +8598,25 @@ export interface GetOrderErpOrderZoNingSelectAllResponse {
7296 404: any; 8598 404: any;
7297 } 8599 }
7298 8600
7299 -export type GetOrderErpOrderZoNingSelectAllResponseSuccess =  
7300 - GetOrderErpOrderZoNingSelectAllResponse[200]; 8601 +export type PostOrderErpUsersAuthRoleResponseSuccess =
  8602 + PostOrderErpUsersAuthRoleResponse[200];
7301 /** 8603 /**
7302 * @description 8604 * @description
7303 - * 查询  
7304 - * @tags order-zo-ning-controller 8605 + * 授权角色
  8606 + * @tags 系统:用户管理
7305 * @produces * 8607 * @produces *
  8608 + * @consumes application/json
7306 */ 8609 */
7307 -export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => {  
7308 - const method = 'get';  
7309 - const url = '/order/erp/orderZoNing/selectAll';  
7310 - function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> { 8610 +export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {
  8611 + const method = 'post';
  8612 + const url = '/order/erp/users/auth_role';
  8613 + function request(
  8614 + option: PostOrderErpUsersAuthRoleOption,
  8615 + ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {
7311 return requester(request.url, { 8616 return requester(request.url, {
7312 method: request.method, 8617 method: request.method,
7313 - }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>; 8618 + ...option,
  8619 + }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>;
7314 } 8620 }
7315 8621
7316 /** http method */ 8622 /** http method */
@@ -7320,8 +8626,22 @@ export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() =&gt; { @@ -7320,8 +8626,22 @@ export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() =&gt; {
7320 return request; 8626 return request;
7321 })(); 8627 })();
7322 8628
7323 -/** @description response type for getOrderErpOrderZoNingSelectProvinceAll */  
7324 -export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { 8629 +/** @description request parameter type for postOrderErpUsersDelete */
  8630 +export interface PostOrderErpUsersDeleteOption {
  8631 + /**
  8632 + * @description
  8633 + * queryVO
  8634 + */
  8635 + body: {
  8636 + /**
  8637 + @description
  8638 + queryVO */
  8639 + queryVO: AdminUserQueryVO;
  8640 + };
  8641 +}
  8642 +
  8643 +/** @description response type for postOrderErpUsersDelete */
  8644 +export interface PostOrderErpUsersDeleteResponse {
7325 /** 8645 /**
7326 * @description 8646 * @description
7327 * OK 8647 * OK
@@ -7329,6 +8649,11 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { @@ -7329,6 +8649,11 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse {
7329 200: ServerResult; 8649 200: ServerResult;
7330 /** 8650 /**
7331 * @description 8651 * @description
  8652 + * Created
  8653 + */
  8654 + 201: any;
  8655 + /**
  8656 + * @description
7332 * Unauthorized 8657 * Unauthorized
7333 */ 8658 */
7334 401: any; 8659 401: any;
@@ -7344,21 +8669,25 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { @@ -7344,21 +8669,25 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse {
7344 404: any; 8669 404: any;
7345 } 8670 }
7346 8671
7347 -export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess =  
7348 - GetOrderErpOrderZoNingSelectProvinceAllResponse[200]; 8672 +export type PostOrderErpUsersDeleteResponseSuccess =
  8673 + PostOrderErpUsersDeleteResponse[200];
7349 /** 8674 /**
7350 * @description 8675 * @description
7351 - * 查询所有省份  
7352 - * @tags order-zo-ning-controller 8676 + * 删除用户
  8677 + * @tags 系统:用户管理
7353 * @produces * 8678 * @produces *
  8679 + * @consumes application/json
7354 */ 8680 */
7355 -export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => {  
7356 - const method = 'get';  
7357 - const url = '/order/erp/orderZoNing/selectProvinceAll';  
7358 - function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> { 8681 +export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {
  8682 + const method = 'post';
  8683 + const url = '/order/erp/users/delete';
  8684 + function request(
  8685 + option: PostOrderErpUsersDeleteOption,
  8686 + ): Promise<PostOrderErpUsersDeleteResponseSuccess> {
7359 return requester(request.url, { 8687 return requester(request.url, {
7360 method: request.method, 8688 method: request.method,
7361 - }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>; 8689 + ...option,
  8690 + }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>;
7362 } 8691 }
7363 8692
7364 /** http method */ 8693 /** http method */
@@ -7368,22 +8697,22 @@ export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() =&gt; { @@ -7368,22 +8697,22 @@ export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() =&gt; {
7368 return request; 8697 return request;
7369 })(); 8698 })();
7370 8699
7371 -/** @description request parameter type for postOrderErpOrderZoNingSelectSaleUserByProvince */  
7372 -export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceOption { 8700 +/** @description request parameter type for postOrderErpUsersEdit */
  8701 +export interface PostOrderErpUsersEditOption {
7373 /** 8702 /**
7374 * @description 8703 * @description
7375 - * zoning 8704 + * userVO
7376 */ 8705 */
7377 body: { 8706 body: {
7378 /** 8707 /**
7379 @description 8708 @description
7380 - zoning */  
7381 - zoning: string; 8709 + userVO */
  8710 + userVO: AdminUserVO;
7382 }; 8711 };
7383 } 8712 }
7384 8713
7385 -/** @description response type for postOrderErpOrderZoNingSelectSaleUserByProvince */  
7386 -export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse { 8714 +/** @description response type for postOrderErpUsersEdit */
  8715 +export interface PostOrderErpUsersEditResponse {
7387 /** 8716 /**
7388 * @description 8717 * @description
7389 * OK 8718 * OK
@@ -7411,37 +8740,50 @@ export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse { @@ -7411,37 +8740,50 @@ export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse {
7411 404: any; 8740 404: any;
7412 } 8741 }
7413 8742
7414 -export type PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess =  
7415 - PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse[200]; 8743 +export type PostOrderErpUsersEditResponseSuccess =
  8744 + PostOrderErpUsersEditResponse[200];
7416 /** 8745 /**
7417 * @description 8746 * @description
7418 - * 查询出这个大区所包含的销售  
7419 - * @tags order-zo-ning-controller 8747 + * 修改用户
  8748 + * @tags 系统:用户管理
7420 * @produces * 8749 * @produces *
7421 * @consumes application/json 8750 * @consumes application/json
7422 */ 8751 */
7423 -export const postOrderErpOrderZoNingSelectSaleUserByProvince =  
7424 - /* #__PURE__ */ (() => {  
7425 - const method = 'post';  
7426 - const url = '/order/erp/orderZoNing/selectSaleUserByProvince';  
7427 - function request(  
7428 - option: PostOrderErpOrderZoNingSelectSaleUserByProvinceOption,  
7429 - ): Promise<PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess> {  
7430 - return requester(request.url, {  
7431 - method: request.method,  
7432 - ...option,  
7433 - }) as unknown as Promise<PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess>;  
7434 - } 8752 +export const postOrderErpUsersEdit = /* #__PURE__ */ (() => {
  8753 + const method = 'post';
  8754 + const url = '/order/erp/users/edit';
  8755 + function request(
  8756 + option: PostOrderErpUsersEditOption,
  8757 + ): Promise<PostOrderErpUsersEditResponseSuccess> {
  8758 + return requester(request.url, {
  8759 + method: request.method,
  8760 + ...option,
  8761 + }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>;
  8762 + }
7435 8763
7436 - /** http method */  
7437 - request.method = method;  
7438 - /** request url */  
7439 - request.url = url;  
7440 - return request;  
7441 - })(); 8764 + /** http method */
  8765 + request.method = method;
  8766 + /** request url */
  8767 + request.url = url;
  8768 + return request;
  8769 +})();
7442 8770
7443 -/** @description response type for getOrderErpOrderZoNingSelectUserAll */  
7444 -export interface GetOrderErpOrderZoNingSelectUserAllResponse { 8771 +/** @description request parameter type for postOrderErpUsersListByPage */
  8772 +export interface PostOrderErpUsersListByPageOption {
  8773 + /**
  8774 + * @description
  8775 + * queryVO
  8776 + */
  8777 + body: {
  8778 + /**
  8779 + @description
  8780 + queryVO */
  8781 + queryVO: AdminUserQueryVO;
  8782 + };
  8783 +}
  8784 +
  8785 +/** @description response type for postOrderErpUsersListByPage */
  8786 +export interface PostOrderErpUsersListByPageResponse {
7445 /** 8787 /**
7446 * @description 8788 * @description
7447 * OK 8789 * OK
@@ -7449,6 +8791,11 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse { @@ -7449,6 +8791,11 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse {
7449 200: ServerResult; 8791 200: ServerResult;
7450 /** 8792 /**
7451 * @description 8793 * @description
  8794 + * Created
  8795 + */
  8796 + 201: any;
  8797 + /**
  8798 + * @description
7452 * Unauthorized 8799 * Unauthorized
7453 */ 8800 */
7454 401: any; 8801 401: any;
@@ -7464,21 +8811,25 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse { @@ -7464,21 +8811,25 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse {
7464 404: any; 8811 404: any;
7465 } 8812 }
7466 8813
7467 -export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess =  
7468 - GetOrderErpOrderZoNingSelectUserAllResponse[200]; 8814 +export type PostOrderErpUsersListByPageResponseSuccess =
  8815 + PostOrderErpUsersListByPageResponse[200];
7469 /** 8816 /**
7470 - * @description  
7471 - * 查询所有销售  
7472 - * @tags order-zo-ning-controller 8817 + * @description
  8818 + * 查询用户
  8819 + * @tags 系统:用户管理
7473 * @produces * 8820 * @produces *
  8821 + * @consumes application/json
7474 */ 8822 */
7475 -export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => {  
7476 - const method = 'get';  
7477 - const url = '/order/erp/orderZoNing/selectUserAll';  
7478 - function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> { 8823 +export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => {
  8824 + const method = 'post';
  8825 + const url = '/order/erp/users/list_by_page';
  8826 + function request(
  8827 + option: PostOrderErpUsersListByPageOption,
  8828 + ): Promise<PostOrderErpUsersListByPageResponseSuccess> {
7479 return requester(request.url, { 8829 return requester(request.url, {
7480 method: request.method, 8830 method: request.method,
7481 - }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>; 8831 + ...option,
  8832 + }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>;
7482 } 8833 }
7483 8834
7484 /** http method */ 8835 /** http method */
@@ -7488,22 +8839,22 @@ export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() =&gt; { @@ -7488,22 +8839,22 @@ export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() =&gt; {
7488 return request; 8839 return request;
7489 })(); 8840 })();
7490 8841
7491 -/** @description request parameter type for postOrderErpProfitAnalysis */  
7492 -export interface PostOrderErpProfitAnalysisOption { 8842 +/** @description request parameter type for postOrderErpUsersReset */
  8843 +export interface PostOrderErpUsersResetOption {
7493 /** 8844 /**
7494 * @description 8845 * @description
7495 - * orderProfitAnalysisVo 8846 + * resetPwdVO
7496 */ 8847 */
7497 body: { 8848 body: {
7498 /** 8849 /**
7499 @description 8850 @description
7500 - orderProfitAnalysisVo */  
7501 - orderProfitAnalysisVo: OrderProfitAnalysisVo; 8851 + resetPwdVO */
  8852 + resetPwdVO: ResetPwdVO;
7502 }; 8853 };
7503 } 8854 }
7504 8855
7505 -/** @description response type for postOrderErpProfitAnalysis */  
7506 -export interface PostOrderErpProfitAnalysisResponse { 8856 +/** @description response type for postOrderErpUsersReset */
  8857 +export interface PostOrderErpUsersResetResponse {
7507 /** 8858 /**
7508 * @description 8859 * @description
7509 * OK 8860 * OK
@@ -7531,25 +8882,25 @@ export interface PostOrderErpProfitAnalysisResponse { @@ -7531,25 +8882,25 @@ export interface PostOrderErpProfitAnalysisResponse {
7531 404: any; 8882 404: any;
7532 } 8883 }
7533 8884
7534 -export type PostOrderErpProfitAnalysisResponseSuccess =  
7535 - PostOrderErpProfitAnalysisResponse[200]; 8885 +export type PostOrderErpUsersResetResponseSuccess =
  8886 + PostOrderErpUsersResetResponse[200];
7536 /** 8887 /**
7537 * @description 8888 * @description
7538 - * analysis  
7539 - * @tags order-profit-controller 8889 + * 重置密码
  8890 + * @tags 系统:用户管理
7540 * @produces * 8891 * @produces *
7541 * @consumes application/json 8892 * @consumes application/json
7542 */ 8893 */
7543 -export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => { 8894 +export const postOrderErpUsersReset = /* #__PURE__ */ (() => {
7544 const method = 'post'; 8895 const method = 'post';
7545 - const url = '/order/erp/profit/analysis'; 8896 + const url = '/order/erp/users/reset';
7546 function request( 8897 function request(
7547 - option: PostOrderErpProfitAnalysisOption,  
7548 - ): Promise<PostOrderErpProfitAnalysisResponseSuccess> { 8898 + option: PostOrderErpUsersResetOption,
  8899 + ): Promise<PostOrderErpUsersResetResponseSuccess> {
7549 return requester(request.url, { 8900 return requester(request.url, {
7550 method: request.method, 8901 method: request.method,
7551 ...option, 8902 ...option,
7552 - }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>; 8903 + }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>;
7553 } 8904 }
7554 8905
7555 /** http method */ 8906 /** http method */
@@ -7559,22 +8910,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() =&gt; { @@ -7559,22 +8910,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() =&gt; {
7559 return request; 8910 return request;
7560 })(); 8911 })();
7561 8912
7562 -/** @description request parameter type for postOrderErpRolesAdd */  
7563 -export interface PostOrderErpRolesAddOption { 8913 +/** @description request parameter type for postOrderErpUsersUpdatePass */
  8914 +export interface PostOrderErpUsersUpdatePassOption {
7564 /** 8915 /**
7565 * @description 8916 * @description
7566 - * roleVO 8917 + * pwdVO
7567 */ 8918 */
7568 body: { 8919 body: {
7569 /** 8920 /**
7570 @description 8921 @description
7571 - roleVO */  
7572 - roleVO: AdminRoleVO; 8922 + pwdVO */
  8923 + pwdVO: UpdatePwdVO;
7573 }; 8924 };
7574 } 8925 }
7575 8926
7576 -/** @description response type for postOrderErpRolesAdd */  
7577 -export interface PostOrderErpRolesAddResponse { 8927 +/** @description response type for postOrderErpUsersUpdatePass */
  8928 +export interface PostOrderErpUsersUpdatePassResponse {
7578 /** 8929 /**
7579 * @description 8930 * @description
7580 * OK 8931 * OK
@@ -7602,25 +8953,25 @@ export interface PostOrderErpRolesAddResponse { @@ -7602,25 +8953,25 @@ export interface PostOrderErpRolesAddResponse {
7602 404: any; 8953 404: any;
7603 } 8954 }
7604 8955
7605 -export type PostOrderErpRolesAddResponseSuccess =  
7606 - PostOrderErpRolesAddResponse[200]; 8956 +export type PostOrderErpUsersUpdatePassResponseSuccess =
  8957 + PostOrderErpUsersUpdatePassResponse[200];
7607 /** 8958 /**
7608 * @description 8959 * @description
7609 - * 新增角色  
7610 - * @tags 系统:角色管理 8960 + * 修改密码
  8961 + * @tags 系统:用户管理
7611 * @produces * 8962 * @produces *
7612 * @consumes application/json 8963 * @consumes application/json
7613 */ 8964 */
7614 -export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { 8965 +export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => {
7615 const method = 'post'; 8966 const method = 'post';
7616 - const url = '/order/erp/roles/add'; 8967 + const url = '/order/erp/users/update_pass';
7617 function request( 8968 function request(
7618 - option: PostOrderErpRolesAddOption,  
7619 - ): Promise<PostOrderErpRolesAddResponseSuccess> { 8969 + option: PostOrderErpUsersUpdatePassOption,
  8970 + ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> {
7620 return requester(request.url, { 8971 return requester(request.url, {
7621 method: request.method, 8972 method: request.method,
7622 ...option, 8973 ...option,
7623 - }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>; 8974 + }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>;
7624 } 8975 }
7625 8976
7626 /** http method */ 8977 /** http method */
@@ -7630,22 +8981,22 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() =&gt; { @@ -7630,22 +8981,22 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() =&gt; {
7630 return request; 8981 return request;
7631 })(); 8982 })();
7632 8983
7633 -/** @description request parameter type for postOrderErpRolesAll */  
7634 -export interface PostOrderErpRolesAllOption { 8984 +/** @description request parameter type for postOrderImportImportWeightAndVolume */
  8985 +export interface PostOrderImportImportWeightAndVolumeOption {
7635 /** 8986 /**
7636 * @description 8987 * @description
7637 - * queryVO 8988 + * file
7638 */ 8989 */
7639 - body: { 8990 + formData: {
7640 /** 8991 /**
7641 @description 8992 @description
7642 - queryVO */  
7643 - queryVO: AdminRoleQueryVO; 8993 + file */
  8994 + file: File;
7644 }; 8995 };
7645 } 8996 }
7646 8997
7647 -/** @description response type for postOrderErpRolesAll */  
7648 -export interface PostOrderErpRolesAllResponse { 8998 +/** @description response type for postOrderImportImportWeightAndVolume */
  8999 +export interface PostOrderImportImportWeightAndVolumeResponse {
7649 /** 9000 /**
7650 * @description 9001 * @description
7651 * OK 9002 * OK
@@ -7673,25 +9024,25 @@ export interface PostOrderErpRolesAllResponse { @@ -7673,25 +9024,25 @@ export interface PostOrderErpRolesAllResponse {
7673 404: any; 9024 404: any;
7674 } 9025 }
7675 9026
7676 -export type PostOrderErpRolesAllResponseSuccess =  
7677 - PostOrderErpRolesAllResponse[200]; 9027 +export type PostOrderImportImportWeightAndVolumeResponseSuccess =
  9028 + PostOrderImportImportWeightAndVolumeResponse[200];
7678 /** 9029 /**
7679 * @description 9030 * @description
7680 - * 返回全部的角色  
7681 - * @tags 系统:角色管理 9031 + * 导入重量和体积
  9032 + * @tags 导入
7682 * @produces * 9033 * @produces *
7683 - * @consumes application/json 9034 + * @consumes multipart/form-data
7684 */ 9035 */
7685 -export const postOrderErpRolesAll = /* #__PURE__ */ (() => { 9036 +export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => {
7686 const method = 'post'; 9037 const method = 'post';
7687 - const url = '/order/erp/roles/all'; 9038 + const url = '/order/import/importWeightAndVolume';
7688 function request( 9039 function request(
7689 - option: PostOrderErpRolesAllOption,  
7690 - ): Promise<PostOrderErpRolesAllResponseSuccess> { 9040 + option: PostOrderImportImportWeightAndVolumeOption,
  9041 + ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> {
7691 return requester(request.url, { 9042 return requester(request.url, {
7692 method: request.method, 9043 method: request.method,
7693 ...option, 9044 ...option,
7694 - }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>; 9045 + }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>;
7695 } 9046 }
7696 9047
7697 /** http method */ 9048 /** http method */
@@ -7701,22 +9052,22 @@ export const postOrderErpRolesAll = /* #__PURE__ */ (() =&gt; { @@ -7701,22 +9052,22 @@ export const postOrderErpRolesAll = /* #__PURE__ */ (() =&gt; {
7701 return request; 9052 return request;
7702 })(); 9053 })();
7703 9054
7704 -/** @description request parameter type for postOrderErpRolesAuthMenu */  
7705 -export interface PostOrderErpRolesAuthMenuOption { 9055 +/** @description request parameter type for postPrepaidAudit */
  9056 +export interface PostPrepaidAuditOption {
7706 /** 9057 /**
7707 * @description 9058 * @description
7708 - * roleVO 9059 + * request
7709 */ 9060 */
7710 body: { 9061 body: {
7711 /** 9062 /**
7712 @description 9063 @description
7713 - roleVO */  
7714 - roleVO: AdminAuthRoleVO; 9064 + request */
  9065 + request: SalesRechargePrepaymentAuditRequest;
7715 }; 9066 };
7716 } 9067 }
7717 9068
7718 -/** @description response type for postOrderErpRolesAuthMenu */  
7719 -export interface PostOrderErpRolesAuthMenuResponse { 9069 +/** @description response type for postPrepaidAudit */
  9070 +export interface PostPrepaidAuditResponse {
7720 /** 9071 /**
7721 * @description 9072 * @description
7722 * OK 9073 * OK
@@ -7744,25 +9095,24 @@ export interface PostOrderErpRolesAuthMenuResponse { @@ -7744,25 +9095,24 @@ export interface PostOrderErpRolesAuthMenuResponse {
7744 404: any; 9095 404: any;
7745 } 9096 }
7746 9097
7747 -export type PostOrderErpRolesAuthMenuResponseSuccess =  
7748 - PostOrderErpRolesAuthMenuResponse[200]; 9098 +export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200];
7749 /** 9099 /**
7750 * @description 9100 * @description
7751 - * 授权角色菜单  
7752 - * @tags 系统:角色管理 9101 + * 财务审核
  9102 + * @tags prepaid-controller
7753 * @produces * 9103 * @produces *
7754 * @consumes application/json 9104 * @consumes application/json
7755 */ 9105 */
7756 -export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { 9106 +export const postPrepaidAudit = /* #__PURE__ */ (() => {
7757 const method = 'post'; 9107 const method = 'post';
7758 - const url = '/order/erp/roles/auth_menu'; 9108 + const url = '/prepaid/audit';
7759 function request( 9109 function request(
7760 - option: PostOrderErpRolesAuthMenuOption,  
7761 - ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> { 9110 + option: PostPrepaidAuditOption,
  9111 + ): Promise<PostPrepaidAuditResponseSuccess> {
7762 return requester(request.url, { 9112 return requester(request.url, {
7763 method: request.method, 9113 method: request.method,
7764 ...option, 9114 ...option,
7765 - }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>; 9115 + }) as unknown as Promise<PostPrepaidAuditResponseSuccess>;
7766 } 9116 }
7767 9117
7768 /** http method */ 9118 /** http method */
@@ -7772,22 +9122,22 @@ export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() =&gt; { @@ -7772,22 +9122,22 @@ export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() =&gt; {
7772 return request; 9122 return request;
7773 })(); 9123 })();
7774 9124
7775 -/** @description request parameter type for postOrderErpRolesDelete */  
7776 -export interface PostOrderErpRolesDeleteOption { 9125 +/** @description request parameter type for postPrepaidCreate */
  9126 +export interface PostPrepaidCreateOption {
7777 /** 9127 /**
7778 * @description 9128 * @description
7779 - * queryVO 9129 + * request
7780 */ 9130 */
7781 body: { 9131 body: {
7782 /** 9132 /**
7783 @description 9133 @description
7784 - queryVO */  
7785 - queryVO: AdminRoleQueryVO; 9134 + request */
  9135 + request: SalesRechargePrepaymentCreateRequest;
7786 }; 9136 };
7787 } 9137 }
7788 9138
7789 -/** @description response type for postOrderErpRolesDelete */  
7790 -export interface PostOrderErpRolesDeleteResponse { 9139 +/** @description response type for postPrepaidCreate */
  9140 +export interface PostPrepaidCreateResponse {
7791 /** 9141 /**
7792 * @description 9142 * @description
7793 * OK 9143 * OK
@@ -7815,25 +9165,24 @@ export interface PostOrderErpRolesDeleteResponse { @@ -7815,25 +9165,24 @@ export interface PostOrderErpRolesDeleteResponse {
7815 404: any; 9165 404: any;
7816 } 9166 }
7817 9167
7818 -export type PostOrderErpRolesDeleteResponseSuccess =  
7819 - PostOrderErpRolesDeleteResponse[200]; 9168 +export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200];
7820 /** 9169 /**
7821 * @description 9170 * @description
7822 - * 删除角色  
7823 - * @tags 系统:角色管理 9171 + * 新增预存
  9172 + * @tags prepaid-controller
7824 * @produces * 9173 * @produces *
7825 * @consumes application/json 9174 * @consumes application/json
7826 */ 9175 */
7827 -export const postOrderErpRolesDelete = /* #__PURE__ */ (() => { 9176 +export const postPrepaidCreate = /* #__PURE__ */ (() => {
7828 const method = 'post'; 9177 const method = 'post';
7829 - const url = '/order/erp/roles/delete'; 9178 + const url = '/prepaid/create';
7830 function request( 9179 function request(
7831 - option: PostOrderErpRolesDeleteOption,  
7832 - ): Promise<PostOrderErpRolesDeleteResponseSuccess> { 9180 + option: PostPrepaidCreateOption,
  9181 + ): Promise<PostPrepaidCreateResponseSuccess> {
7833 return requester(request.url, { 9182 return requester(request.url, {
7834 method: request.method, 9183 method: request.method,
7835 ...option, 9184 ...option,
7836 - }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>; 9185 + }) as unknown as Promise<PostPrepaidCreateResponseSuccess>;
7837 } 9186 }
7838 9187
7839 /** http method */ 9188 /** http method */
@@ -7843,22 +9192,22 @@ export const postOrderErpRolesDelete = /* #__PURE__ */ (() =&gt; { @@ -7843,22 +9192,22 @@ export const postOrderErpRolesDelete = /* #__PURE__ */ (() =&gt; {
7843 return request; 9192 return request;
7844 })(); 9193 })();
7845 9194
7846 -/** @description request parameter type for postOrderErpRolesDetail */  
7847 -export interface PostOrderErpRolesDetailOption { 9195 +/** @description request parameter type for postPrepaidDelete */
  9196 +export interface PostPrepaidDeleteOption {
7848 /** 9197 /**
7849 * @description 9198 * @description
7850 - * queryVO 9199 + * request
7851 */ 9200 */
7852 body: { 9201 body: {
7853 /** 9202 /**
7854 @description 9203 @description
7855 - queryVO */  
7856 - queryVO: AdminRoleQueryVO; 9204 + request */
  9205 + request: SalesRechargePrepaymentDeleteRequest;
7857 }; 9206 };
7858 } 9207 }
7859 9208
7860 -/** @description response type for postOrderErpRolesDetail */  
7861 -export interface PostOrderErpRolesDetailResponse { 9209 +/** @description response type for postPrepaidDelete */
  9210 +export interface PostPrepaidDeleteResponse {
7862 /** 9211 /**
7863 * @description 9212 * @description
7864 * OK 9213 * OK
@@ -7886,25 +9235,24 @@ export interface PostOrderErpRolesDetailResponse { @@ -7886,25 +9235,24 @@ export interface PostOrderErpRolesDetailResponse {
7886 404: any; 9235 404: any;
7887 } 9236 }
7888 9237
7889 -export type PostOrderErpRolesDetailResponseSuccess =  
7890 - PostOrderErpRolesDetailResponse[200]; 9238 +export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200];
7891 /** 9239 /**
7892 * @description 9240 * @description
7893 - * 获取单个role  
7894 - * @tags 系统:角色管理 9241 + * 删除预存
  9242 + * @tags prepaid-controller
7895 * @produces * 9243 * @produces *
7896 * @consumes application/json 9244 * @consumes application/json
7897 */ 9245 */
7898 -export const postOrderErpRolesDetail = /* #__PURE__ */ (() => { 9246 +export const postPrepaidDelete = /* #__PURE__ */ (() => {
7899 const method = 'post'; 9247 const method = 'post';
7900 - const url = '/order/erp/roles/detail'; 9248 + const url = '/prepaid/delete';
7901 function request( 9249 function request(
7902 - option: PostOrderErpRolesDetailOption,  
7903 - ): Promise<PostOrderErpRolesDetailResponseSuccess> { 9250 + option: PostPrepaidDeleteOption,
  9251 + ): Promise<PostPrepaidDeleteResponseSuccess> {
7904 return requester(request.url, { 9252 return requester(request.url, {
7905 method: request.method, 9253 method: request.method,
7906 ...option, 9254 ...option,
7907 - }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>; 9255 + }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>;
7908 } 9256 }
7909 9257
7910 /** http method */ 9258 /** http method */
@@ -7914,22 +9262,22 @@ export const postOrderErpRolesDetail = /* #__PURE__ */ (() =&gt; { @@ -7914,22 +9262,22 @@ export const postOrderErpRolesDetail = /* #__PURE__ */ (() =&gt; {
7914 return request; 9262 return request;
7915 })(); 9263 })();
7916 9264
7917 -/** @description request parameter type for postOrderErpRolesEdit */  
7918 -export interface PostOrderErpRolesEditOption { 9265 +/** @description request parameter type for postPrepaidList */
  9266 +export interface PostPrepaidListOption {
7919 /** 9267 /**
7920 * @description 9268 * @description
7921 - * roleVO 9269 + * request
7922 */ 9270 */
7923 body: { 9271 body: {
7924 /** 9272 /**
7925 @description 9273 @description
7926 - roleVO */  
7927 - roleVO: AdminRoleVO; 9274 + request */
  9275 + request: SalesRechargePrepaymentRequest;
7928 }; 9276 };
7929 } 9277 }
7930 9278
7931 -/** @description response type for postOrderErpRolesEdit */  
7932 -export interface PostOrderErpRolesEditResponse { 9279 +/** @description response type for postPrepaidList */
  9280 +export interface PostPrepaidListResponse {
7933 /** 9281 /**
7934 * @description 9282 * @description
7935 * OK 9283 * OK
@@ -7957,25 +9305,24 @@ export interface PostOrderErpRolesEditResponse { @@ -7957,25 +9305,24 @@ export interface PostOrderErpRolesEditResponse {
7957 404: any; 9305 404: any;
7958 } 9306 }
7959 9307
7960 -export type PostOrderErpRolesEditResponseSuccess =  
7961 - PostOrderErpRolesEditResponse[200]; 9308 +export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200];
7962 /** 9309 /**
7963 * @description 9310 * @description
7964 - * 修改角色  
7965 - * @tags 系统:角色管理 9311 + * 查询列表
  9312 + * @tags prepaid-controller
7966 * @produces * 9313 * @produces *
7967 * @consumes application/json 9314 * @consumes application/json
7968 */ 9315 */
7969 -export const postOrderErpRolesEdit = /* #__PURE__ */ (() => { 9316 +export const postPrepaidList = /* #__PURE__ */ (() => {
7970 const method = 'post'; 9317 const method = 'post';
7971 - const url = '/order/erp/roles/edit'; 9318 + const url = '/prepaid/list';
7972 function request( 9319 function request(
7973 - option: PostOrderErpRolesEditOption,  
7974 - ): Promise<PostOrderErpRolesEditResponseSuccess> { 9320 + option: PostPrepaidListOption,
  9321 + ): Promise<PostPrepaidListResponseSuccess> {
7975 return requester(request.url, { 9322 return requester(request.url, {
7976 method: request.method, 9323 method: request.method,
7977 ...option, 9324 ...option,
7978 - }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>; 9325 + }) as unknown as Promise<PostPrepaidListResponseSuccess>;
7979 } 9326 }
7980 9327
7981 /** http method */ 9328 /** http method */
@@ -7985,22 +9332,22 @@ export const postOrderErpRolesEdit = /* #__PURE__ */ (() =&gt; { @@ -7985,22 +9332,22 @@ export const postOrderErpRolesEdit = /* #__PURE__ */ (() =&gt; {
7985 return request; 9332 return request;
7986 })(); 9333 })();
7987 9334
7988 -/** @description request parameter type for postOrderErpRolesListByPage */  
7989 -export interface PostOrderErpRolesListByPageOption { 9335 +/** @description request parameter type for postPrepaidPhoneAvailableList */
  9336 +export interface PostPrepaidPhoneAvailableListOption {
7990 /** 9337 /**
7991 * @description 9338 * @description
7992 - * queryVO 9339 + * request
7993 */ 9340 */
7994 body: { 9341 body: {
7995 /** 9342 /**
7996 @description 9343 @description
7997 - queryVO */  
7998 - queryVO: AdminRoleQueryVO; 9344 + request */
  9345 + request: SalesRechargePrepaymentAuditRequest;
7999 }; 9346 };
8000 } 9347 }
8001 9348
8002 -/** @description response type for postOrderErpRolesListByPage */  
8003 -export interface PostOrderErpRolesListByPageResponse { 9349 +/** @description response type for postPrepaidPhoneAvailableList */
  9350 +export interface PostPrepaidPhoneAvailableListResponse {
8004 /** 9351 /**
8005 * @description 9352 * @description
8006 * OK 9353 * OK
@@ -8028,25 +9375,25 @@ export interface PostOrderErpRolesListByPageResponse { @@ -8028,25 +9375,25 @@ export interface PostOrderErpRolesListByPageResponse {
8028 404: any; 9375 404: any;
8029 } 9376 }
8030 9377
8031 -export type PostOrderErpRolesListByPageResponseSuccess =  
8032 - PostOrderErpRolesListByPageResponse[200]; 9378 +export type PostPrepaidPhoneAvailableListResponseSuccess =
  9379 + PostPrepaidPhoneAvailableListResponse[200];
8033 /** 9380 /**
8034 * @description 9381 * @description
8035 - * 查询角色  
8036 - * @tags 系统:角色管理 9382 + * 财务审核
  9383 + * @tags prepaid-controller
8037 * @produces * 9384 * @produces *
8038 * @consumes application/json 9385 * @consumes application/json
8039 */ 9386 */
8040 -export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => { 9387 +export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => {
8041 const method = 'post'; 9388 const method = 'post';
8042 - const url = '/order/erp/roles/list_by_page'; 9389 + const url = '/prepaid/phone/available/list';
8043 function request( 9390 function request(
8044 - option: PostOrderErpRolesListByPageOption,  
8045 - ): Promise<PostOrderErpRolesListByPageResponseSuccess> { 9391 + option: PostPrepaidPhoneAvailableListOption,
  9392 + ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> {
8046 return requester(request.url, { 9393 return requester(request.url, {
8047 method: request.method, 9394 method: request.method,
8048 ...option, 9395 ...option,
8049 - }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>; 9396 + }) as unknown as Promise<PostPrepaidPhoneAvailableListResponseSuccess>;
8050 } 9397 }
8051 9398
8052 /** http method */ 9399 /** http method */
@@ -8056,22 +9403,22 @@ export const postOrderErpRolesListByPage = /* #__PURE__ */ (() =&gt; { @@ -8056,22 +9403,22 @@ export const postOrderErpRolesListByPage = /* #__PURE__ */ (() =&gt; {
8056 return request; 9403 return request;
8057 })(); 9404 })();
8058 9405
8059 -/** @description request parameter type for postOrderErpUsersAdd */  
8060 -export interface PostOrderErpUsersAddOption { 9406 +/** @description request parameter type for postPrepaidUpdate */
  9407 +export interface PostPrepaidUpdateOption {
8061 /** 9408 /**
8062 * @description 9409 * @description
8063 - * userVO 9410 + * request
8064 */ 9411 */
8065 body: { 9412 body: {
8066 /** 9413 /**
8067 @description 9414 @description
8068 - userVO */  
8069 - userVO: AdminUserVO; 9415 + request */
  9416 + request: SalesRechargePrepaymentUpdateRequest;
8070 }; 9417 };
8071 } 9418 }
8072 9419
8073 -/** @description response type for postOrderErpUsersAdd */  
8074 -export interface PostOrderErpUsersAddResponse { 9420 +/** @description response type for postPrepaidUpdate */
  9421 +export interface PostPrepaidUpdateResponse {
8075 /** 9422 /**
8076 * @description 9423 * @description
8077 * OK 9424 * OK
@@ -8099,25 +9446,24 @@ export interface PostOrderErpUsersAddResponse { @@ -8099,25 +9446,24 @@ export interface PostOrderErpUsersAddResponse {
8099 404: any; 9446 404: any;
8100 } 9447 }
8101 9448
8102 -export type PostOrderErpUsersAddResponseSuccess =  
8103 - PostOrderErpUsersAddResponse[200]; 9449 +export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200];
8104 /** 9450 /**
8105 * @description 9451 * @description
8106 - * 新增用户  
8107 - * @tags 系统:用户管理 9452 + * 修改预存
  9453 + * @tags prepaid-controller
8108 * @produces * 9454 * @produces *
8109 * @consumes application/json 9455 * @consumes application/json
8110 */ 9456 */
8111 -export const postOrderErpUsersAdd = /* #__PURE__ */ (() => { 9457 +export const postPrepaidUpdate = /* #__PURE__ */ (() => {
8112 const method = 'post'; 9458 const method = 'post';
8113 - const url = '/order/erp/users/add'; 9459 + const url = '/prepaid/update';
8114 function request( 9460 function request(
8115 - option: PostOrderErpUsersAddOption,  
8116 - ): Promise<PostOrderErpUsersAddResponseSuccess> { 9461 + option: PostPrepaidUpdateOption,
  9462 + ): Promise<PostPrepaidUpdateResponseSuccess> {
8117 return requester(request.url, { 9463 return requester(request.url, {
8118 method: request.method, 9464 method: request.method,
8119 ...option, 9465 ...option,
8120 - }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>; 9466 + }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>;
8121 } 9467 }
8122 9468
8123 /** http method */ 9469 /** http method */
@@ -8127,22 +9473,22 @@ export const postOrderErpUsersAdd = /* #__PURE__ */ (() =&gt; { @@ -8127,22 +9473,22 @@ export const postOrderErpUsersAdd = /* #__PURE__ */ (() =&gt; {
8127 return request; 9473 return request;
8128 })(); 9474 })();
8129 9475
8130 -/** @description request parameter type for postOrderErpUsersAuthRole */  
8131 -export interface PostOrderErpUsersAuthRoleOption { 9476 +/** @description request parameter type for postResearchGroupMemberRequestsAdd */
  9477 +export interface PostResearchGroupMemberRequestsAddOption {
8132 /** 9478 /**
8133 * @description 9479 * @description
8134 - * userVO 9480 + * request
8135 */ 9481 */
8136 body: { 9482 body: {
8137 /** 9483 /**
8138 @description 9484 @description
8139 - userVO */  
8140 - userVO: AdminAuthUserVO; 9485 + request */
  9486 + request: ResearchGroupMemberRequestAddRequest;
8141 }; 9487 };
8142 } 9488 }
8143 9489
8144 -/** @description response type for postOrderErpUsersAuthRole */  
8145 -export interface PostOrderErpUsersAuthRoleResponse { 9490 +/** @description response type for postResearchGroupMemberRequestsAdd */
  9491 +export interface PostResearchGroupMemberRequestsAddResponse {
8146 /** 9492 /**
8147 * @description 9493 * @description
8148 * OK 9494 * OK
@@ -8170,25 +9516,25 @@ export interface PostOrderErpUsersAuthRoleResponse { @@ -8170,25 +9516,25 @@ export interface PostOrderErpUsersAuthRoleResponse {
8170 404: any; 9516 404: any;
8171 } 9517 }
8172 9518
8173 -export type PostOrderErpUsersAuthRoleResponseSuccess =  
8174 - PostOrderErpUsersAuthRoleResponse[200]; 9519 +export type PostResearchGroupMemberRequestsAddResponseSuccess =
  9520 + PostResearchGroupMemberRequestsAddResponse[200];
8175 /** 9521 /**
8176 * @description 9522 * @description
8177 - * 授权角色  
8178 - * @tags 系统:用户管理 9523 + * 新增申请信息
  9524 + * @tags research-group-member-requests-controller
8179 * @produces * 9525 * @produces *
8180 * @consumes application/json 9526 * @consumes application/json
8181 */ 9527 */
8182 -export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => { 9528 +export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => {
8183 const method = 'post'; 9529 const method = 'post';
8184 - const url = '/order/erp/users/auth_role'; 9530 + const url = '/research/group/member/requests/add';
8185 function request( 9531 function request(
8186 - option: PostOrderErpUsersAuthRoleOption,  
8187 - ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> { 9532 + option: PostResearchGroupMemberRequestsAddOption,
  9533 + ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> {
8188 return requester(request.url, { 9534 return requester(request.url, {
8189 method: request.method, 9535 method: request.method,
8190 ...option, 9536 ...option,
8191 - }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>; 9537 + }) as unknown as Promise<PostResearchGroupMemberRequestsAddResponseSuccess>;
8192 } 9538 }
8193 9539
8194 /** http method */ 9540 /** http method */
@@ -8198,22 +9544,22 @@ export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() =&gt; { @@ -8198,22 +9544,22 @@ export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() =&gt; {
8198 return request; 9544 return request;
8199 })(); 9545 })();
8200 9546
8201 -/** @description request parameter type for postOrderErpUsersDelete */  
8202 -export interface PostOrderErpUsersDeleteOption { 9547 +/** @description request parameter type for postResearchGroupMemberRequestsDelete */
  9548 +export interface PostResearchGroupMemberRequestsDeleteOption {
8203 /** 9549 /**
8204 * @description 9550 * @description
8205 - * queryVO 9551 + * request
8206 */ 9552 */
8207 body: { 9553 body: {
8208 /** 9554 /**
8209 @description 9555 @description
8210 - queryVO */  
8211 - queryVO: AdminUserQueryVO; 9556 + request */
  9557 + request: ResearchGroupMemberRequestDeleteRequest;
8212 }; 9558 };
8213 } 9559 }
8214 9560
8215 -/** @description response type for postOrderErpUsersDelete */  
8216 -export interface PostOrderErpUsersDeleteResponse { 9561 +/** @description response type for postResearchGroupMemberRequestsDelete */
  9562 +export interface PostResearchGroupMemberRequestsDeleteResponse {
8217 /** 9563 /**
8218 * @description 9564 * @description
8219 * OK 9565 * OK
@@ -8241,25 +9587,25 @@ export interface PostOrderErpUsersDeleteResponse { @@ -8241,25 +9587,25 @@ export interface PostOrderErpUsersDeleteResponse {
8241 404: any; 9587 404: any;
8242 } 9588 }
8243 9589
8244 -export type PostOrderErpUsersDeleteResponseSuccess =  
8245 - PostOrderErpUsersDeleteResponse[200]; 9590 +export type PostResearchGroupMemberRequestsDeleteResponseSuccess =
  9591 + PostResearchGroupMemberRequestsDeleteResponse[200];
8246 /** 9592 /**
8247 * @description 9593 * @description
8248 - * 删除用户  
8249 - * @tags 系统:用户管理 9594 + * 删除申请信息
  9595 + * @tags research-group-member-requests-controller
8250 * @produces * 9596 * @produces *
8251 * @consumes application/json 9597 * @consumes application/json
8252 */ 9598 */
8253 -export const postOrderErpUsersDelete = /* #__PURE__ */ (() => { 9599 +export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => {
8254 const method = 'post'; 9600 const method = 'post';
8255 - const url = '/order/erp/users/delete'; 9601 + const url = '/research/group/member/requests/delete';
8256 function request( 9602 function request(
8257 - option: PostOrderErpUsersDeleteOption,  
8258 - ): Promise<PostOrderErpUsersDeleteResponseSuccess> { 9603 + option: PostResearchGroupMemberRequestsDeleteOption,
  9604 + ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> {
8259 return requester(request.url, { 9605 return requester(request.url, {
8260 method: request.method, 9606 method: request.method,
8261 ...option, 9607 ...option,
8262 - }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>; 9608 + }) as unknown as Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess>;
8263 } 9609 }
8264 9610
8265 /** http method */ 9611 /** http method */
@@ -8269,22 +9615,22 @@ export const postOrderErpUsersDelete = /* #__PURE__ */ (() =&gt; { @@ -8269,22 +9615,22 @@ export const postOrderErpUsersDelete = /* #__PURE__ */ (() =&gt; {
8269 return request; 9615 return request;
8270 })(); 9616 })();
8271 9617
8272 -/** @description request parameter type for postOrderErpUsersEdit */  
8273 -export interface PostOrderErpUsersEditOption { 9618 +/** @description request parameter type for postResearchGroupMemberRequestsDetail */
  9619 +export interface PostResearchGroupMemberRequestsDetailOption {
8274 /** 9620 /**
8275 * @description 9621 * @description
8276 - * userVO 9622 + * request
8277 */ 9623 */
8278 body: { 9624 body: {
8279 /** 9625 /**
8280 @description 9626 @description
8281 - userVO */  
8282 - userVO: AdminUserVO; 9627 + request */
  9628 + request: ResearchGroupMemberRequestDetailRequest;
8283 }; 9629 };
8284 } 9630 }
8285 9631
8286 -/** @description response type for postOrderErpUsersEdit */  
8287 -export interface PostOrderErpUsersEditResponse { 9632 +/** @description response type for postResearchGroupMemberRequestsDetail */
  9633 +export interface PostResearchGroupMemberRequestsDetailResponse {
8288 /** 9634 /**
8289 * @description 9635 * @description
8290 * OK 9636 * OK
@@ -8312,25 +9658,25 @@ export interface PostOrderErpUsersEditResponse { @@ -8312,25 +9658,25 @@ export interface PostOrderErpUsersEditResponse {
8312 404: any; 9658 404: any;
8313 } 9659 }
8314 9660
8315 -export type PostOrderErpUsersEditResponseSuccess =  
8316 - PostOrderErpUsersEditResponse[200]; 9661 +export type PostResearchGroupMemberRequestsDetailResponseSuccess =
  9662 + PostResearchGroupMemberRequestsDetailResponse[200];
8317 /** 9663 /**
8318 * @description 9664 * @description
8319 - * 修改用户  
8320 - * @tags 系统:用户管理 9665 + * 查询申请信息
  9666 + * @tags research-group-member-requests-controller
8321 * @produces * 9667 * @produces *
8322 * @consumes application/json 9668 * @consumes application/json
8323 */ 9669 */
8324 -export const postOrderErpUsersEdit = /* #__PURE__ */ (() => { 9670 +export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => {
8325 const method = 'post'; 9671 const method = 'post';
8326 - const url = '/order/erp/users/edit'; 9672 + const url = '/research/group/member/requests/detail';
8327 function request( 9673 function request(
8328 - option: PostOrderErpUsersEditOption,  
8329 - ): Promise<PostOrderErpUsersEditResponseSuccess> { 9674 + option: PostResearchGroupMemberRequestsDetailOption,
  9675 + ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> {
8330 return requester(request.url, { 9676 return requester(request.url, {
8331 method: request.method, 9677 method: request.method,
8332 ...option, 9678 ...option,
8333 - }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>; 9679 + }) as unknown as Promise<PostResearchGroupMemberRequestsDetailResponseSuccess>;
8334 } 9680 }
8335 9681
8336 /** http method */ 9682 /** http method */
@@ -8340,22 +9686,22 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() =&gt; { @@ -8340,22 +9686,22 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() =&gt; {
8340 return request; 9686 return request;
8341 })(); 9687 })();
8342 9688
8343 -/** @description request parameter type for postOrderErpUsersListByPage */  
8344 -export interface PostOrderErpUsersListByPageOption { 9689 +/** @description request parameter type for postResearchGroupMemberRequestsEdit */
  9690 +export interface PostResearchGroupMemberRequestsEditOption {
8345 /** 9691 /**
8346 * @description 9692 * @description
8347 - * queryVO 9693 + * request
8348 */ 9694 */
8349 body: { 9695 body: {
8350 /** 9696 /**
8351 @description 9697 @description
8352 - queryVO */  
8353 - queryVO: AdminUserQueryVO; 9698 + request */
  9699 + request: ResearchGroupMemberRequestEditRequest;
8354 }; 9700 };
8355 } 9701 }
8356 9702
8357 -/** @description response type for postOrderErpUsersListByPage */  
8358 -export interface PostOrderErpUsersListByPageResponse { 9703 +/** @description response type for postResearchGroupMemberRequestsEdit */
  9704 +export interface PostResearchGroupMemberRequestsEditResponse {
8359 /** 9705 /**
8360 * @description 9706 * @description
8361 * OK 9707 * OK
@@ -8383,25 +9729,25 @@ export interface PostOrderErpUsersListByPageResponse { @@ -8383,25 +9729,25 @@ export interface PostOrderErpUsersListByPageResponse {
8383 404: any; 9729 404: any;
8384 } 9730 }
8385 9731
8386 -export type PostOrderErpUsersListByPageResponseSuccess =  
8387 - PostOrderErpUsersListByPageResponse[200]; 9732 +export type PostResearchGroupMemberRequestsEditResponseSuccess =
  9733 + PostResearchGroupMemberRequestsEditResponse[200];
8388 /** 9734 /**
8389 * @description 9735 * @description
8390 - * 查询用户  
8391 - * @tags 系统:用户管理 9736 + * 编辑申请信息
  9737 + * @tags research-group-member-requests-controller
8392 * @produces * 9738 * @produces *
8393 * @consumes application/json 9739 * @consumes application/json
8394 */ 9740 */
8395 -export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => { 9741 +export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => {
8396 const method = 'post'; 9742 const method = 'post';
8397 - const url = '/order/erp/users/list_by_page'; 9743 + const url = '/research/group/member/requests/edit';
8398 function request( 9744 function request(
8399 - option: PostOrderErpUsersListByPageOption,  
8400 - ): Promise<PostOrderErpUsersListByPageResponseSuccess> { 9745 + option: PostResearchGroupMemberRequestsEditOption,
  9746 + ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> {
8401 return requester(request.url, { 9747 return requester(request.url, {
8402 method: request.method, 9748 method: request.method,
8403 ...option, 9749 ...option,
8404 - }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>; 9750 + }) as unknown as Promise<PostResearchGroupMemberRequestsEditResponseSuccess>;
8405 } 9751 }
8406 9752
8407 /** http method */ 9753 /** http method */
@@ -8411,22 +9757,22 @@ export const postOrderErpUsersListByPage = /* #__PURE__ */ (() =&gt; { @@ -8411,22 +9757,22 @@ export const postOrderErpUsersListByPage = /* #__PURE__ */ (() =&gt; {
8411 return request; 9757 return request;
8412 })(); 9758 })();
8413 9759
8414 -/** @description request parameter type for postOrderErpUsersReset */  
8415 -export interface PostOrderErpUsersResetOption { 9760 +/** @description request parameter type for postResearchGroupMemberRequestsList */
  9761 +export interface PostResearchGroupMemberRequestsListOption {
8416 /** 9762 /**
8417 * @description 9763 * @description
8418 - * resetPwdVO 9764 + * request
8419 */ 9765 */
8420 body: { 9766 body: {
8421 /** 9767 /**
8422 @description 9768 @description
8423 - resetPwdVO */  
8424 - resetPwdVO: ResetPwdVO; 9769 + request */
  9770 + request: ResearchGroupMemberRequestsRequest;
8425 }; 9771 };
8426 } 9772 }
8427 9773
8428 -/** @description response type for postOrderErpUsersReset */  
8429 -export interface PostOrderErpUsersResetResponse { 9774 +/** @description response type for postResearchGroupMemberRequestsList */
  9775 +export interface PostResearchGroupMemberRequestsListResponse {
8430 /** 9776 /**
8431 * @description 9777 * @description
8432 * OK 9778 * OK
@@ -8454,25 +9800,25 @@ export interface PostOrderErpUsersResetResponse { @@ -8454,25 +9800,25 @@ export interface PostOrderErpUsersResetResponse {
8454 404: any; 9800 404: any;
8455 } 9801 }
8456 9802
8457 -export type PostOrderErpUsersResetResponseSuccess =  
8458 - PostOrderErpUsersResetResponse[200]; 9803 +export type PostResearchGroupMemberRequestsListResponseSuccess =
  9804 + PostResearchGroupMemberRequestsListResponse[200];
8459 /** 9805 /**
8460 * @description 9806 * @description
8461 - * 重置密码  
8462 - * @tags 系统:用户管理 9807 + * 申请列表
  9808 + * @tags research-group-member-requests-controller
8463 * @produces * 9809 * @produces *
8464 * @consumes application/json 9810 * @consumes application/json
8465 */ 9811 */
8466 -export const postOrderErpUsersReset = /* #__PURE__ */ (() => { 9812 +export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => {
8467 const method = 'post'; 9813 const method = 'post';
8468 - const url = '/order/erp/users/reset'; 9814 + const url = '/research/group/member/requests/list';
8469 function request( 9815 function request(
8470 - option: PostOrderErpUsersResetOption,  
8471 - ): Promise<PostOrderErpUsersResetResponseSuccess> { 9816 + option: PostResearchGroupMemberRequestsListOption,
  9817 + ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> {
8472 return requester(request.url, { 9818 return requester(request.url, {
8473 method: request.method, 9819 method: request.method,
8474 ...option, 9820 ...option,
8475 - }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>; 9821 + }) as unknown as Promise<PostResearchGroupMemberRequestsListResponseSuccess>;
8476 } 9822 }
8477 9823
8478 /** http method */ 9824 /** http method */
@@ -8482,22 +9828,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() =&gt; { @@ -8482,22 +9828,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() =&gt; {
8482 return request; 9828 return request;
8483 })(); 9829 })();
8484 9830
8485 -/** @description request parameter type for postOrderErpUsersUpdatePass */  
8486 -export interface PostOrderErpUsersUpdatePassOption { 9831 +/** @description request parameter type for postResearchGroupsAdd */
  9832 +export interface PostResearchGroupsAddOption {
8487 /** 9833 /**
8488 * @description 9834 * @description
8489 - * pwdVO 9835 + * request
8490 */ 9836 */
8491 body: { 9837 body: {
8492 /** 9838 /**
8493 @description 9839 @description
8494 - pwdVO */  
8495 - pwdVO: UpdatePwdVO; 9840 + request */
  9841 + request: ResearchGroupAddRequest;
8496 }; 9842 };
8497 } 9843 }
8498 9844
8499 -/** @description response type for postOrderErpUsersUpdatePass */  
8500 -export interface PostOrderErpUsersUpdatePassResponse { 9845 +/** @description response type for postResearchGroupsAdd */
  9846 +export interface PostResearchGroupsAddResponse {
8501 /** 9847 /**
8502 * @description 9848 * @description
8503 * OK 9849 * OK
@@ -8525,25 +9871,25 @@ export interface PostOrderErpUsersUpdatePassResponse { @@ -8525,25 +9871,25 @@ export interface PostOrderErpUsersUpdatePassResponse {
8525 404: any; 9871 404: any;
8526 } 9872 }
8527 9873
8528 -export type PostOrderErpUsersUpdatePassResponseSuccess =  
8529 - PostOrderErpUsersUpdatePassResponse[200]; 9874 +export type PostResearchGroupsAddResponseSuccess =
  9875 + PostResearchGroupsAddResponse[200];
8530 /** 9876 /**
8531 * @description 9877 * @description
8532 - * 修改密码  
8533 - * @tags 系统:用户管理 9878 + * 新增课题组信息
  9879 + * @tags research-groups-controller
8534 * @produces * 9880 * @produces *
8535 * @consumes application/json 9881 * @consumes application/json
8536 */ 9882 */
8537 -export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { 9883 +export const postResearchGroupsAdd = /* #__PURE__ */ (() => {
8538 const method = 'post'; 9884 const method = 'post';
8539 - const url = '/order/erp/users/update_pass'; 9885 + const url = '/research/groups/add';
8540 function request( 9886 function request(
8541 - option: PostOrderErpUsersUpdatePassOption,  
8542 - ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> { 9887 + option: PostResearchGroupsAddOption,
  9888 + ): Promise<PostResearchGroupsAddResponseSuccess> {
8543 return requester(request.url, { 9889 return requester(request.url, {
8544 method: request.method, 9890 method: request.method,
8545 ...option, 9891 ...option,
8546 - }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>; 9892 + }) as unknown as Promise<PostResearchGroupsAddResponseSuccess>;
8547 } 9893 }
8548 9894
8549 /** http method */ 9895 /** http method */
@@ -8553,22 +9899,22 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() =&gt; { @@ -8553,22 +9899,22 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() =&gt; {
8553 return request; 9899 return request;
8554 })(); 9900 })();
8555 9901
8556 -/** @description request parameter type for postOrderImportImportWeightAndVolume */  
8557 -export interface PostOrderImportImportWeightAndVolumeOption { 9902 +/** @description request parameter type for postResearchGroupsDelete */
  9903 +export interface PostResearchGroupsDeleteOption {
8558 /** 9904 /**
8559 * @description 9905 * @description
8560 - * file 9906 + * request
8561 */ 9907 */
8562 - formData: { 9908 + body: {
8563 /** 9909 /**
8564 @description 9910 @description
8565 - file */  
8566 - file: File; 9911 + request */
  9912 + request: ResearchGroupDeleteRequest;
8567 }; 9913 };
8568 } 9914 }
8569 9915
8570 -/** @description response type for postOrderImportImportWeightAndVolume */  
8571 -export interface PostOrderImportImportWeightAndVolumeResponse { 9916 +/** @description response type for postResearchGroupsDelete */
  9917 +export interface PostResearchGroupsDeleteResponse {
8572 /** 9918 /**
8573 * @description 9919 * @description
8574 * OK 9920 * OK
@@ -8596,25 +9942,25 @@ export interface PostOrderImportImportWeightAndVolumeResponse { @@ -8596,25 +9942,25 @@ export interface PostOrderImportImportWeightAndVolumeResponse {
8596 404: any; 9942 404: any;
8597 } 9943 }
8598 9944
8599 -export type PostOrderImportImportWeightAndVolumeResponseSuccess =  
8600 - PostOrderImportImportWeightAndVolumeResponse[200]; 9945 +export type PostResearchGroupsDeleteResponseSuccess =
  9946 + PostResearchGroupsDeleteResponse[200];
8601 /** 9947 /**
8602 * @description 9948 * @description
8603 - * 导入重量和体积  
8604 - * @tags 导入 9949 + * 删除课题组信息
  9950 + * @tags research-groups-controller
8605 * @produces * 9951 * @produces *
8606 - * @consumes multipart/form-data 9952 + * @consumes application/json
8607 */ 9953 */
8608 -export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => { 9954 +export const postResearchGroupsDelete = /* #__PURE__ */ (() => {
8609 const method = 'post'; 9955 const method = 'post';
8610 - const url = '/order/import/importWeightAndVolume'; 9956 + const url = '/research/groups/delete';
8611 function request( 9957 function request(
8612 - option: PostOrderImportImportWeightAndVolumeOption,  
8613 - ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> { 9958 + option: PostResearchGroupsDeleteOption,
  9959 + ): Promise<PostResearchGroupsDeleteResponseSuccess> {
8614 return requester(request.url, { 9960 return requester(request.url, {
8615 method: request.method, 9961 method: request.method,
8616 ...option, 9962 ...option,
8617 - }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>; 9963 + }) as unknown as Promise<PostResearchGroupsDeleteResponseSuccess>;
8618 } 9964 }
8619 9965
8620 /** http method */ 9966 /** http method */
@@ -8624,8 +9970,8 @@ export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() =&gt; { @@ -8624,8 +9970,8 @@ export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() =&gt; {
8624 return request; 9970 return request;
8625 })(); 9971 })();
8626 9972
8627 -/** @description request parameter type for postPrepaidAudit */  
8628 -export interface PostPrepaidAuditOption { 9973 +/** @description request parameter type for postResearchGroupsDetail */
  9974 +export interface PostResearchGroupsDetailOption {
8629 /** 9975 /**
8630 * @description 9976 * @description
8631 * request 9977 * request
@@ -8634,12 +9980,12 @@ export interface PostPrepaidAuditOption { @@ -8634,12 +9980,12 @@ export interface PostPrepaidAuditOption {
8634 /** 9980 /**
8635 @description 9981 @description
8636 request */ 9982 request */
8637 - request: SalesRechargePrepaymentAuditRequest; 9983 + request: ResearchGroupDetailRequest;
8638 }; 9984 };
8639 } 9985 }
8640 9986
8641 -/** @description response type for postPrepaidAudit */  
8642 -export interface PostPrepaidAuditResponse { 9987 +/** @description response type for postResearchGroupsDetail */
  9988 +export interface PostResearchGroupsDetailResponse {
8643 /** 9989 /**
8644 * @description 9990 * @description
8645 * OK 9991 * OK
@@ -8667,24 +10013,25 @@ export interface PostPrepaidAuditResponse { @@ -8667,24 +10013,25 @@ export interface PostPrepaidAuditResponse {
8667 404: any; 10013 404: any;
8668 } 10014 }
8669 10015
8670 -export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200]; 10016 +export type PostResearchGroupsDetailResponseSuccess =
  10017 + PostResearchGroupsDetailResponse[200];
8671 /** 10018 /**
8672 * @description 10019 * @description
8673 - * 财务审核  
8674 - * @tags prepaid-controller 10020 + * 查询课题组信息
  10021 + * @tags research-groups-controller
8675 * @produces * 10022 * @produces *
8676 * @consumes application/json 10023 * @consumes application/json
8677 */ 10024 */
8678 -export const postPrepaidAudit = /* #__PURE__ */ (() => { 10025 +export const postResearchGroupsDetail = /* #__PURE__ */ (() => {
8679 const method = 'post'; 10026 const method = 'post';
8680 - const url = '/prepaid/audit'; 10027 + const url = '/research/groups/detail';
8681 function request( 10028 function request(
8682 - option: PostPrepaidAuditOption,  
8683 - ): Promise<PostPrepaidAuditResponseSuccess> { 10029 + option: PostResearchGroupsDetailOption,
  10030 + ): Promise<PostResearchGroupsDetailResponseSuccess> {
8684 return requester(request.url, { 10031 return requester(request.url, {
8685 method: request.method, 10032 method: request.method,
8686 ...option, 10033 ...option,
8687 - }) as unknown as Promise<PostPrepaidAuditResponseSuccess>; 10034 + }) as unknown as Promise<PostResearchGroupsDetailResponseSuccess>;
8688 } 10035 }
8689 10036
8690 /** http method */ 10037 /** http method */
@@ -8694,27 +10041,13 @@ export const postPrepaidAudit = /* #__PURE__ */ (() =&gt; { @@ -8694,27 +10041,13 @@ export const postPrepaidAudit = /* #__PURE__ */ (() =&gt; {
8694 return request; 10041 return request;
8695 })(); 10042 })();
8696 10043
8697 -/** @description request parameter type for postPrepaidCreate */  
8698 -export interface PostPrepaidCreateOption {  
8699 - /**  
8700 - * @description  
8701 - * request  
8702 - */  
8703 - body: {  
8704 - /**  
8705 - @description  
8706 - request */  
8707 - request: SalesRechargePrepaymentCreateRequest;  
8708 - };  
8709 -}  
8710 -  
8711 -/** @description response type for postPrepaidCreate */  
8712 -export interface PostPrepaidCreateResponse { 10044 +/** @description response type for postResearchGroupsDownloadImportTemplate */
  10045 +export interface PostResearchGroupsDownloadImportTemplateResponse {
8713 /** 10046 /**
8714 * @description 10047 * @description
8715 * OK 10048 * OK
8716 */ 10049 */
8717 - 200: ServerResult; 10050 + 200: any;
8718 /** 10051 /**
8719 * @description 10052 * @description
8720 * Created 10053 * Created
@@ -8737,24 +10070,22 @@ export interface PostPrepaidCreateResponse { @@ -8737,24 +10070,22 @@ export interface PostPrepaidCreateResponse {
8737 404: any; 10070 404: any;
8738 } 10071 }
8739 10072
8740 -export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200]; 10073 +export type PostResearchGroupsDownloadImportTemplateResponseSuccess =
  10074 + PostResearchGroupsDownloadImportTemplateResponse[200];
8741 /** 10075 /**
8742 * @description 10076 * @description
8743 - * 新增预存  
8744 - * @tags prepaid-controller 10077 + * 课题组导入模板下载
  10078 + * @tags research-groups-controller
8745 * @produces * 10079 * @produces *
8746 * @consumes application/json 10080 * @consumes application/json
8747 */ 10081 */
8748 -export const postPrepaidCreate = /* #__PURE__ */ (() => { 10082 +export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => {
8749 const method = 'post'; 10083 const method = 'post';
8750 - const url = '/prepaid/create';  
8751 - function request(  
8752 - option: PostPrepaidCreateOption,  
8753 - ): Promise<PostPrepaidCreateResponseSuccess> { 10084 + const url = '/research/groups/download/importTemplate';
  10085 + function request(): Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess> {
8754 return requester(request.url, { 10086 return requester(request.url, {
8755 method: request.method, 10087 method: request.method,
8756 - ...option,  
8757 - }) as unknown as Promise<PostPrepaidCreateResponseSuccess>; 10088 + }) as unknown as Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess>;
8758 } 10089 }
8759 10090
8760 /** http method */ 10091 /** http method */
@@ -8764,8 +10095,8 @@ export const postPrepaidCreate = /* #__PURE__ */ (() =&gt; { @@ -8764,8 +10095,8 @@ export const postPrepaidCreate = /* #__PURE__ */ (() =&gt; {
8764 return request; 10095 return request;
8765 })(); 10096 })();
8766 10097
8767 -/** @description request parameter type for postPrepaidDelete */  
8768 -export interface PostPrepaidDeleteOption { 10098 +/** @description request parameter type for postResearchGroupsEdit */
  10099 +export interface PostResearchGroupsEditOption {
8769 /** 10100 /**
8770 * @description 10101 * @description
8771 * request 10102 * request
@@ -8774,12 +10105,12 @@ export interface PostPrepaidDeleteOption { @@ -8774,12 +10105,12 @@ export interface PostPrepaidDeleteOption {
8774 /** 10105 /**
8775 @description 10106 @description
8776 request */ 10107 request */
8777 - request: SalesRechargePrepaymentDeleteRequest; 10108 + request: ResearchGroupEditRequest;
8778 }; 10109 };
8779 } 10110 }
8780 10111
8781 -/** @description response type for postPrepaidDelete */  
8782 -export interface PostPrepaidDeleteResponse { 10112 +/** @description response type for postResearchGroupsEdit */
  10113 +export interface PostResearchGroupsEditResponse {
8783 /** 10114 /**
8784 * @description 10115 * @description
8785 * OK 10116 * OK
@@ -8807,24 +10138,25 @@ export interface PostPrepaidDeleteResponse { @@ -8807,24 +10138,25 @@ export interface PostPrepaidDeleteResponse {
8807 404: any; 10138 404: any;
8808 } 10139 }
8809 10140
8810 -export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200]; 10141 +export type PostResearchGroupsEditResponseSuccess =
  10142 + PostResearchGroupsEditResponse[200];
8811 /** 10143 /**
8812 * @description 10144 * @description
8813 - * 删除预存  
8814 - * @tags prepaid-controller 10145 + * 编辑课题组信息
  10146 + * @tags research-groups-controller
8815 * @produces * 10147 * @produces *
8816 * @consumes application/json 10148 * @consumes application/json
8817 */ 10149 */
8818 -export const postPrepaidDelete = /* #__PURE__ */ (() => { 10150 +export const postResearchGroupsEdit = /* #__PURE__ */ (() => {
8819 const method = 'post'; 10151 const method = 'post';
8820 - const url = '/prepaid/delete'; 10152 + const url = '/research/groups/edit';
8821 function request( 10153 function request(
8822 - option: PostPrepaidDeleteOption,  
8823 - ): Promise<PostPrepaidDeleteResponseSuccess> { 10154 + option: PostResearchGroupsEditOption,
  10155 + ): Promise<PostResearchGroupsEditResponseSuccess> {
8824 return requester(request.url, { 10156 return requester(request.url, {
8825 method: request.method, 10157 method: request.method,
8826 ...option, 10158 ...option,
8827 - }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>; 10159 + }) as unknown as Promise<PostResearchGroupsEditResponseSuccess>;
8828 } 10160 }
8829 10161
8830 /** http method */ 10162 /** http method */
@@ -8834,22 +10166,22 @@ export const postPrepaidDelete = /* #__PURE__ */ (() =&gt; { @@ -8834,22 +10166,22 @@ export const postPrepaidDelete = /* #__PURE__ */ (() =&gt; {
8834 return request; 10166 return request;
8835 })(); 10167 })();
8836 10168
8837 -/** @description request parameter type for postPrepaidList */  
8838 -export interface PostPrepaidListOption { 10169 +/** @description request parameter type for postResearchGroupsImport */
  10170 +export interface PostResearchGroupsImportOption {
8839 /** 10171 /**
8840 * @description 10172 * @description
8841 - * request 10173 + * file
8842 */ 10174 */
8843 - body: { 10175 + formData: {
8844 /** 10176 /**
8845 @description 10177 @description
8846 - request */  
8847 - request: SalesRechargePrepaymentRequest; 10178 + file */
  10179 + file: File;
8848 }; 10180 };
8849 } 10181 }
8850 10182
8851 -/** @description response type for postPrepaidList */  
8852 -export interface PostPrepaidListResponse { 10183 +/** @description response type for postResearchGroupsImport */
  10184 +export interface PostResearchGroupsImportResponse {
8853 /** 10185 /**
8854 * @description 10186 * @description
8855 * OK 10187 * OK
@@ -8877,24 +10209,25 @@ export interface PostPrepaidListResponse { @@ -8877,24 +10209,25 @@ export interface PostPrepaidListResponse {
8877 404: any; 10209 404: any;
8878 } 10210 }
8879 10211
8880 -export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200]; 10212 +export type PostResearchGroupsImportResponseSuccess =
  10213 + PostResearchGroupsImportResponse[200];
8881 /** 10214 /**
8882 * @description 10215 * @description
8883 - * 查询列表  
8884 - * @tags prepaid-controller 10216 + * 课题组信息导入
  10217 + * @tags research-groups-controller
8885 * @produces * 10218 * @produces *
8886 - * @consumes application/json 10219 + * @consumes multipart/form-data
8887 */ 10220 */
8888 -export const postPrepaidList = /* #__PURE__ */ (() => { 10221 +export const postResearchGroupsImport = /* #__PURE__ */ (() => {
8889 const method = 'post'; 10222 const method = 'post';
8890 - const url = '/prepaid/list'; 10223 + const url = '/research/groups/import';
8891 function request( 10224 function request(
8892 - option: PostPrepaidListOption,  
8893 - ): Promise<PostPrepaidListResponseSuccess> { 10225 + option: PostResearchGroupsImportOption,
  10226 + ): Promise<PostResearchGroupsImportResponseSuccess> {
8894 return requester(request.url, { 10227 return requester(request.url, {
8895 method: request.method, 10228 method: request.method,
8896 ...option, 10229 ...option,
8897 - }) as unknown as Promise<PostPrepaidListResponseSuccess>; 10230 + }) as unknown as Promise<PostResearchGroupsImportResponseSuccess>;
8898 } 10231 }
8899 10232
8900 /** http method */ 10233 /** http method */
@@ -8904,8 +10237,8 @@ export const postPrepaidList = /* #__PURE__ */ (() =&gt; { @@ -8904,8 +10237,8 @@ export const postPrepaidList = /* #__PURE__ */ (() =&gt; {
8904 return request; 10237 return request;
8905 })(); 10238 })();
8906 10239
8907 -/** @description request parameter type for postPrepaidUpdate */  
8908 -export interface PostPrepaidUpdateOption { 10240 +/** @description request parameter type for postResearchGroupsList */
  10241 +export interface PostResearchGroupsListOption {
8909 /** 10242 /**
8910 * @description 10243 * @description
8911 * request 10244 * request
@@ -8914,12 +10247,12 @@ export interface PostPrepaidUpdateOption { @@ -8914,12 +10247,12 @@ export interface PostPrepaidUpdateOption {
8914 /** 10247 /**
8915 @description 10248 @description
8916 request */ 10249 request */
8917 - request: SalesRechargePrepaymentUpdateRequest; 10250 + request: ResearchGroupListRequest;
8918 }; 10251 };
8919 } 10252 }
8920 10253
8921 -/** @description response type for postPrepaidUpdate */  
8922 -export interface PostPrepaidUpdateResponse { 10254 +/** @description response type for postResearchGroupsList */
  10255 +export interface PostResearchGroupsListResponse {
8923 /** 10256 /**
8924 * @description 10257 * @description
8925 * OK 10258 * OK
@@ -8947,24 +10280,25 @@ export interface PostPrepaidUpdateResponse { @@ -8947,24 +10280,25 @@ export interface PostPrepaidUpdateResponse {
8947 404: any; 10280 404: any;
8948 } 10281 }
8949 10282
8950 -export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; 10283 +export type PostResearchGroupsListResponseSuccess =
  10284 + PostResearchGroupsListResponse[200];
8951 /** 10285 /**
8952 * @description 10286 * @description
8953 - * 修改预存  
8954 - * @tags prepaid-controller 10287 + * 课题组列表
  10288 + * @tags research-groups-controller
8955 * @produces * 10289 * @produces *
8956 * @consumes application/json 10290 * @consumes application/json
8957 */ 10291 */
8958 -export const postPrepaidUpdate = /* #__PURE__ */ (() => { 10292 +export const postResearchGroupsList = /* #__PURE__ */ (() => {
8959 const method = 'post'; 10293 const method = 'post';
8960 - const url = '/prepaid/update'; 10294 + const url = '/research/groups/list';
8961 function request( 10295 function request(
8962 - option: PostPrepaidUpdateOption,  
8963 - ): Promise<PostPrepaidUpdateResponseSuccess> { 10296 + option: PostResearchGroupsListOption,
  10297 + ): Promise<PostResearchGroupsListResponseSuccess> {
8964 return requester(request.url, { 10298 return requester(request.url, {
8965 method: request.method, 10299 method: request.method,
8966 ...option, 10300 ...option,
8967 - }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; 10301 + }) as unknown as Promise<PostResearchGroupsListResponseSuccess>;
8968 } 10302 }
8969 10303
8970 /** http method */ 10304 /** http method */