Commit b559cda33d6f98a8a322240b0a5906dedfa06939
1 parent
4e743bb5
feat: update省市区
Showing
8 changed files
with
3831 additions
and
1950 deletions
src/pages/Order/components/FinancialDrawer.tsx
src/pages/Order/components/FinancialEditDrawer.tsx
src/pages/Order/components/FinancialMergeDrawer.tsx
src/pages/Order/components/OrderDrawer copy.tsx
... | ... | @@ -647,6 +647,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
647 | 647 | const res = await postKingdeeRepCustomer({ |
648 | 648 | data: { search: keywords }, |
649 | 649 | }); |
650 | + console.log(res); | |
651 | + | |
650 | 652 | let options = res?.rows?.map((c: any) => { |
651 | 653 | return { |
652 | 654 | ...c, | ... | ... |
src/pages/Order/components/OrderDrawer.tsx
... | ... | @@ -3,8 +3,10 @@ import { |
3 | 3 | postCanrdApiUserAddressList, |
4 | 4 | postCanrdApiUserDetail, |
5 | 5 | postCanrdApiUserNowMoneyCheck, |
6 | - postDistrictSelectBelongByName, | |
6 | + postDistrictAddOrderAndProvince, | |
7 | 7 | postDistrictSelectByLevel, |
8 | + postDistrictSelectByNameAndLevel, | |
9 | + postDistrictSelOrderProvince, | |
8 | 10 | postKingdeeRepCustomerDetail, |
9 | 11 | postKingdeeRepMaterial, |
10 | 12 | postKingdeeRepMaterialUnit, |
... | ... | @@ -17,15 +19,15 @@ import { |
17 | 19 | postServiceOrderUpdateOrder, |
18 | 20 | } from '@/services'; |
19 | 21 | import { |
22 | + enumToSelect, | |
20 | 23 | FloatAdd, |
21 | 24 | FloatMul, |
22 | - enumToSelect, | |
23 | 25 | getAliYunOSSFileNameFromUrl, |
24 | 26 | getUserInfo, |
25 | 27 | } from '@/utils'; |
26 | -import { getDefaultString } from '@/utils/StringUtil'; | |
27 | 28 | import { getTeacherCustomFieldNumber } from '@/utils/kingdee'; |
28 | 29 | import { getSalesCodeOptions } from '@/utils/order'; |
30 | +import { getDefaultString } from '@/utils/StringUtil'; | |
29 | 31 | import { |
30 | 32 | DrawerForm, |
31 | 33 | FormListActionType, |
... | ... | @@ -38,7 +40,7 @@ import { |
38 | 40 | ProFormTextArea, |
39 | 41 | ProFormUploadDragger, |
40 | 42 | } from '@ant-design/pro-components'; |
41 | -import { Button, Form, Modal, message } from 'antd'; | |
43 | +import { Button, Form, message, Modal } from 'antd'; | |
42 | 44 | import { cloneDeep } from 'lodash'; |
43 | 45 | import { useEffect, useRef, useState } from 'react'; |
44 | 46 | import { |
... | ... | @@ -879,6 +881,17 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
879 | 881 | //新增 |
880 | 882 | if (optType('add') || optType('copy')) { |
881 | 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 | 897 | if ( |
... | ... | @@ -1115,9 +1128,24 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
1115 | 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 | 1147 | //判断如果是在修改或者复制,那么第一次请求的时候,默认生成当前收货人信息的option |
1148 | + | |
1121 | 1149 | let realName = form.getFieldValue('customerName'); |
1122 | 1150 | let detail = form.getFieldValue('customerShippingAddress'); |
1123 | 1151 | let institution = form.getFieldValue('institution'); |
... | ... | @@ -1195,11 +1223,14 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
1195 | 1223 | key="province" |
1196 | 1224 | width={100} |
1197 | 1225 | label="省" |
1226 | + allowClear={false} | |
1198 | 1227 | fieldProps={{ |
1199 | 1228 | labelInValue: true, |
1200 | 1229 | }} |
1201 | 1230 | onChange={(value) => { |
1202 | - setProvince(value?.value); | |
1231 | + if (value !== undefined || value !== null) { | |
1232 | + setProvince(value?.value); | |
1233 | + } | |
1203 | 1234 | }} |
1204 | 1235 | placeholder="请选择" |
1205 | 1236 | rules={[ |
... | ... | @@ -1224,13 +1255,16 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
1224 | 1255 | name="city" |
1225 | 1256 | width={100} |
1226 | 1257 | label="市" |
1258 | + allowClear={false} | |
1227 | 1259 | disabled={province === ''} |
1228 | 1260 | fieldProps={{ |
1229 | 1261 | labelInValue: true, |
1230 | 1262 | }} |
1231 | 1263 | placeholder="请选择" |
1232 | 1264 | onChange={(value) => { |
1233 | - setCity(value?.value); | |
1265 | + if (value !== undefined || value !== null) { | |
1266 | + setCity(value?.value); | |
1267 | + } | |
1234 | 1268 | }} |
1235 | 1269 | rules={[ |
1236 | 1270 | { |
... | ... | @@ -1241,8 +1275,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
1241 | 1275 | request={async () => { |
1242 | 1276 | if (province !== '') { |
1243 | 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 | 1281 | if (res && res.data) { |
1248 | 1282 | cityOptions = res.data.map((item) => ({ |
... | ... | @@ -1260,8 +1294,11 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
1260 | 1294 | name="district" |
1261 | 1295 | width={100} |
1262 | 1296 | label="区" |
1297 | + allowClear={false} | |
1263 | 1298 | onChange={(value) => { |
1264 | - setDistrict(value?.value); | |
1299 | + if (value !== undefined || value !== null) { | |
1300 | + setDistrict(value?.value); | |
1301 | + } | |
1265 | 1302 | }} |
1266 | 1303 | disabled={city === ''} |
1267 | 1304 | fieldProps={{ |
... | ... | @@ -1275,9 +1312,13 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
1275 | 1312 | }, |
1276 | 1313 | ]} |
1277 | 1314 | request={async () => { |
1315 | + console.log(form.getFieldsValue()); | |
1316 | + | |
1278 | 1317 | if (city !== '') { |
1279 | 1318 | let districtOptions = []; |
1280 | - let res = await postDistrictSelectBelongByName({ data: city }); | |
1319 | + let res = await postDistrictSelectByNameAndLevel({ | |
1320 | + data: { district: city, level: 2 }, | |
1321 | + }); | |
1281 | 1322 | if (res && res.data) { |
1282 | 1323 | districtOptions = res.data.map((item) => ({ |
1283 | 1324 | value: item.district, |
... | ... | @@ -1686,6 +1727,8 @@ export default ({ onClose, data, subOrders, orderOptType }) => { |
1686 | 1727 | const res = await postKingdeeRepMaterial({ |
1687 | 1728 | data: { search: keywords }, |
1688 | 1729 | }); |
1730 | + console.log(res.customerShippingAddress); | |
1731 | + | |
1689 | 1732 | let options = res?.rows?.map((p: any) => { |
1690 | 1733 | return { |
1691 | 1734 | ...p, | ... | ... |
src/pages/ResearchGroup/index.tsx
... | ... | @@ -485,9 +485,9 @@ const PrepaidPage = () => { |
485 | 485 | defaultValue: { |
486 | 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 | 492 | rowKey="id" |
493 | 493 | search={{ | ... | ... |
src/services/definition.ts
... | ... | @@ -86,6 +86,8 @@ export interface AdminAuthUserVO { |
86 | 86 | export interface AdminDeptQueryVO { |
87 | 87 | /** @format int32 */ |
88 | 88 | current?: number; |
89 | + /** @format int32 */ | |
90 | + end?: number; | |
89 | 91 | /** @format int64 */ |
90 | 92 | id?: number; |
91 | 93 | ids?: Array<number>; |
... | ... | @@ -95,6 +97,8 @@ export interface AdminDeptQueryVO { |
95 | 97 | /** @format int64 */ |
96 | 98 | pid?: number; |
97 | 99 | /** @format int32 */ |
100 | + start?: number; | |
101 | + /** @format int32 */ | |
98 | 102 | total?: number; |
99 | 103 | } |
100 | 104 | |
... | ... | @@ -109,6 +113,8 @@ export interface AdminDeptVO { |
109 | 113 | export interface AdminJobQueryVO { |
110 | 114 | /** @format int32 */ |
111 | 115 | current?: number; |
116 | + /** @format int32 */ | |
117 | + end?: number; | |
112 | 118 | /** @format int64 */ |
113 | 119 | id?: number; |
114 | 120 | ids?: Array<number>; |
... | ... | @@ -118,6 +124,8 @@ export interface AdminJobQueryVO { |
118 | 124 | /** @format int32 */ |
119 | 125 | sort?: number; |
120 | 126 | /** @format int32 */ |
127 | + start?: number; | |
128 | + /** @format int32 */ | |
121 | 129 | total?: number; |
122 | 130 | } |
123 | 131 | |
... | ... | @@ -136,6 +144,8 @@ export interface AdminMenuQueryVO { |
136 | 144 | /** @format int32 */ |
137 | 145 | current?: number; |
138 | 146 | /** @format int32 */ |
147 | + end?: number; | |
148 | + /** @format int32 */ | |
139 | 149 | hidden?: number; |
140 | 150 | icon?: string; |
141 | 151 | /** @format int64 */ |
... | ... | @@ -151,6 +161,8 @@ export interface AdminMenuQueryVO { |
151 | 161 | /** @format int64 */ |
152 | 162 | pid?: number; |
153 | 163 | /** @format int32 */ |
164 | + start?: number; | |
165 | + /** @format int32 */ | |
154 | 166 | total?: number; |
155 | 167 | /** @format int32 */ |
156 | 168 | type?: number; |
... | ... | @@ -181,6 +193,8 @@ export interface AdminRoleQueryVO { |
181 | 193 | /** @format int32 */ |
182 | 194 | current?: number; |
183 | 195 | dataScope?: string; |
196 | + /** @format int32 */ | |
197 | + end?: number; | |
184 | 198 | /** @format int64 */ |
185 | 199 | id?: number; |
186 | 200 | ids?: Array<number>; |
... | ... | @@ -192,6 +206,8 @@ export interface AdminRoleQueryVO { |
192 | 206 | permission?: string; |
193 | 207 | remark?: string; |
194 | 208 | /** @format int32 */ |
209 | + start?: number; | |
210 | + /** @format int32 */ | |
195 | 211 | total?: number; |
196 | 212 | } |
197 | 213 | |
... | ... | @@ -209,22 +225,30 @@ export interface AdminUserLoginByPhoneVO { |
209 | 225 | /** @format int32 */ |
210 | 226 | current?: number; |
211 | 227 | /** @format int32 */ |
228 | + end?: number; | |
229 | + /** @format int32 */ | |
212 | 230 | pageSize?: number; |
213 | 231 | phone?: string; |
214 | 232 | smsCaptchaCode?: string; |
215 | 233 | /** @format int32 */ |
234 | + start?: number; | |
235 | + /** @format int32 */ | |
216 | 236 | total?: number; |
217 | 237 | } |
218 | 238 | |
219 | 239 | export interface AdminUserLoginByPwdVO { |
220 | 240 | /** @format int32 */ |
221 | 241 | current?: number; |
242 | + /** @format int32 */ | |
243 | + end?: number; | |
222 | 244 | imgCaptchaCode?: string; |
223 | 245 | imgCaptchaUuid?: string; |
224 | 246 | /** @format int32 */ |
225 | 247 | pageSize?: number; |
226 | 248 | password?: string; |
227 | 249 | /** @format int32 */ |
250 | + start?: number; | |
251 | + /** @format int32 */ | |
228 | 252 | total?: number; |
229 | 253 | userName?: string; |
230 | 254 | } |
... | ... | @@ -234,11 +258,15 @@ export interface AdminUserModifyPwdVO { |
234 | 258 | /** @format int32 */ |
235 | 259 | current?: number; |
236 | 260 | /** @format int32 */ |
261 | + end?: number; | |
262 | + /** @format int32 */ | |
237 | 263 | pageSize?: number; |
238 | 264 | password?: string; |
239 | 265 | phone?: string; |
240 | 266 | smsCaptchaCode?: string; |
241 | 267 | /** @format int32 */ |
268 | + start?: number; | |
269 | + /** @format int32 */ | |
242 | 270 | total?: number; |
243 | 271 | } |
244 | 272 | |
... | ... | @@ -246,8 +274,12 @@ export interface AdminUserPasswordRecoverEmailVO { |
246 | 274 | /** @format int32 */ |
247 | 275 | current?: number; |
248 | 276 | /** @format int32 */ |
277 | + end?: number; | |
278 | + /** @format int32 */ | |
249 | 279 | pageSize?: number; |
250 | 280 | /** @format int32 */ |
281 | + start?: number; | |
282 | + /** @format int32 */ | |
251 | 283 | total?: number; |
252 | 284 | userName?: string; |
253 | 285 | } |
... | ... | @@ -256,6 +288,8 @@ export interface AdminUserQueryVO { |
256 | 288 | /** @format int32 */ |
257 | 289 | current?: number; |
258 | 290 | email?: string; |
291 | + /** @format int32 */ | |
292 | + end?: number; | |
259 | 293 | /** @format int64 */ |
260 | 294 | id?: number; |
261 | 295 | ids?: Array<number>; |
... | ... | @@ -266,6 +300,8 @@ export interface AdminUserQueryVO { |
266 | 300 | phone?: string; |
267 | 301 | sex?: string; |
268 | 302 | /** @format int32 */ |
303 | + start?: number; | |
304 | + /** @format int32 */ | |
269 | 305 | total?: number; |
270 | 306 | userName?: string; |
271 | 307 | workerType?: string; |
... | ... | @@ -276,6 +312,8 @@ export interface AdminUserRegisterVO { |
276 | 312 | /** @format int32 */ |
277 | 313 | current?: number; |
278 | 314 | email?: string; |
315 | + /** @format int32 */ | |
316 | + end?: number; | |
279 | 317 | isAgreeAgreement?: boolean; |
280 | 318 | /** @format int32 */ |
281 | 319 | pageSize?: number; |
... | ... | @@ -285,6 +323,8 @@ export interface AdminUserRegisterVO { |
285 | 323 | safeQuestion?: string; |
286 | 324 | smsCaptchaCode?: string; |
287 | 325 | /** @format int32 */ |
326 | + start?: number; | |
327 | + /** @format int32 */ | |
288 | 328 | total?: number; |
289 | 329 | userName?: string; |
290 | 330 | } |
... | ... | @@ -480,8 +520,12 @@ export interface ApiOrderCustomersRequest { |
480 | 520 | /** @format int32 */ |
481 | 521 | current?: number; |
482 | 522 | /** @format int32 */ |
523 | + end?: number; | |
524 | + /** @format int32 */ | |
483 | 525 | pageSize?: number; |
484 | 526 | /** @format int32 */ |
527 | + start?: number; | |
528 | + /** @format int32 */ | |
485 | 529 | total?: number; |
486 | 530 | } |
487 | 531 | |
... | ... | @@ -552,11 +596,15 @@ export interface AuditDto { |
552 | 596 | export interface AuditVO { |
553 | 597 | /** @format int32 */ |
554 | 598 | current?: number; |
599 | + /** @format int32 */ | |
600 | + end?: number; | |
555 | 601 | /** @format int64 */ |
556 | 602 | id?: number; |
557 | 603 | /** @format int32 */ |
558 | 604 | pageSize?: number; |
559 | 605 | /** @format int32 */ |
606 | + start?: number; | |
607 | + /** @format int32 */ | |
560 | 608 | status?: number; |
561 | 609 | /** @format int32 */ |
562 | 610 | total?: number; |
... | ... | @@ -626,16 +674,32 @@ export interface CancelSendOrderDto { |
626 | 674 | export interface CaptchaMessageVO { |
627 | 675 | /** @format int32 */ |
628 | 676 | current?: number; |
677 | + /** @format int32 */ | |
678 | + end?: number; | |
629 | 679 | imgCaptchaCode?: string; |
630 | 680 | imgCaptchaUuid?: string; |
631 | 681 | /** @format int32 */ |
632 | 682 | pageSize?: number; |
633 | 683 | phone?: string; |
634 | 684 | /** @format int32 */ |
685 | + start?: number; | |
686 | + /** @format int32 */ | |
635 | 687 | total?: number; |
636 | 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 | 703 | export interface Contactperson { |
640 | 704 | birthday?: string; |
641 | 705 | contactAddress?: string; |
... | ... | @@ -823,6 +887,8 @@ export interface DictionaryQueryVO { |
823 | 887 | dictCode?: string; |
824 | 888 | dictName?: string; |
825 | 889 | dictValue?: string; |
890 | + /** @format int32 */ | |
891 | + end?: number; | |
826 | 892 | /** @format int64 */ |
827 | 893 | id?: number; |
828 | 894 | ids?: Array<number>; |
... | ... | @@ -832,6 +898,8 @@ export interface DictionaryQueryVO { |
832 | 898 | /** @format int32 */ |
833 | 899 | sort?: number; |
834 | 900 | /** @format int32 */ |
901 | + start?: number; | |
902 | + /** @format int32 */ | |
835 | 903 | total?: number; |
836 | 904 | } |
837 | 905 | |
... | ... | @@ -853,6 +921,12 @@ export interface DistrictDo { |
853 | 921 | pid?: number; |
854 | 922 | } |
855 | 923 | |
924 | +export interface DistrictSearchDo { | |
925 | + district?: string; | |
926 | + /** @format int32 */ | |
927 | + level?: number; | |
928 | +} | |
929 | + | |
856 | 930 | export interface Entry { |
857 | 931 | bankAccount?: string; |
858 | 932 | bankName?: string; |
... | ... | @@ -1141,10 +1215,14 @@ export interface MeasureUnitListResRow { |
1141 | 1215 | export interface MessageQueryDTO { |
1142 | 1216 | /** @format int32 */ |
1143 | 1217 | current?: number; |
1218 | + /** @format int32 */ | |
1219 | + end?: number; | |
1144 | 1220 | isReaded?: string; |
1145 | 1221 | /** @format int32 */ |
1146 | 1222 | pageSize?: number; |
1147 | 1223 | /** @format int32 */ |
1224 | + start?: number; | |
1225 | + /** @format int32 */ | |
1148 | 1226 | total?: number; |
1149 | 1227 | username?: string; |
1150 | 1228 | } |
... | ... | @@ -1180,6 +1258,8 @@ export interface OrderAuditLogQueryVO { |
1180 | 1258 | applyId?: number; |
1181 | 1259 | /** @format int32 */ |
1182 | 1260 | current?: number; |
1261 | + /** @format int32 */ | |
1262 | + end?: number; | |
1183 | 1263 | /** @format int64 */ |
1184 | 1264 | id?: number; |
1185 | 1265 | ids?: Array<number>; |
... | ... | @@ -1189,6 +1269,8 @@ export interface OrderAuditLogQueryVO { |
1189 | 1269 | /** @format int32 */ |
1190 | 1270 | pageSize?: number; |
1191 | 1271 | /** @format int32 */ |
1272 | + start?: number; | |
1273 | + /** @format int32 */ | |
1192 | 1274 | total?: number; |
1193 | 1275 | } |
1194 | 1276 | |
... | ... | @@ -1223,6 +1305,8 @@ export interface OrderBaseInfoQueryVO { |
1223 | 1305 | customerCode?: string; |
1224 | 1306 | customerPo?: string; |
1225 | 1307 | customerStyle?: string; |
1308 | + /** @format int32 */ | |
1309 | + end?: number; | |
1226 | 1310 | /** @format int64 */ |
1227 | 1311 | id?: number; |
1228 | 1312 | ids?: Array<number>; |
... | ... | @@ -1244,6 +1328,8 @@ export interface OrderBaseInfoQueryVO { |
1244 | 1328 | productionDepartmentConsignTime?: string; |
1245 | 1329 | projectNo?: string; |
1246 | 1330 | /** @format int32 */ |
1331 | + start?: number; | |
1332 | + /** @format int32 */ | |
1247 | 1333 | total?: number; |
1248 | 1334 | } |
1249 | 1335 | |
... | ... | @@ -1304,6 +1390,8 @@ export interface OrderFieldLockApplyQueryVO { |
1304 | 1390 | auditUserId?: number; |
1305 | 1391 | /** @format int32 */ |
1306 | 1392 | current?: number; |
1393 | + /** @format int32 */ | |
1394 | + end?: number; | |
1307 | 1395 | fields?: string; |
1308 | 1396 | /** @format int64 */ |
1309 | 1397 | id?: number; |
... | ... | @@ -1313,6 +1401,8 @@ export interface OrderFieldLockApplyQueryVO { |
1313 | 1401 | /** @format int32 */ |
1314 | 1402 | pageSize?: number; |
1315 | 1403 | /** @format int32 */ |
1404 | + start?: number; | |
1405 | + /** @format int32 */ | |
1316 | 1406 | status?: number; |
1317 | 1407 | statusList?: Array<number>; |
1318 | 1408 | /** @format int32 */ |
... | ... | @@ -1358,9 +1448,19 @@ export interface OrderInspectionStageVO { |
1358 | 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 | 1459 | export interface OrderOptLogQueryVO { |
1362 | 1460 | /** @format int32 */ |
1363 | 1461 | current?: number; |
1462 | + /** @format int32 */ | |
1463 | + end?: number; | |
1364 | 1464 | /** @format int64 */ |
1365 | 1465 | id?: number; |
1366 | 1466 | ids?: Array<number>; |
... | ... | @@ -1369,6 +1469,8 @@ export interface OrderOptLogQueryVO { |
1369 | 1469 | /** @format int32 */ |
1370 | 1470 | pageSize?: number; |
1371 | 1471 | /** @format int32 */ |
1472 | + start?: number; | |
1473 | + /** @format int32 */ | |
1372 | 1474 | total?: number; |
1373 | 1475 | } |
1374 | 1476 | |
... | ... | @@ -1674,6 +1776,8 @@ export interface QueryBankStatementDto { |
1674 | 1776 | collectionDatetimeEnd?: string; |
1675 | 1777 | /** @format int32 */ |
1676 | 1778 | current?: number; |
1779 | + /** @format int32 */ | |
1780 | + end?: number; | |
1677 | 1781 | /** @format int64 */ |
1678 | 1782 | id?: number; |
1679 | 1783 | /** @format int32 */ |
... | ... | @@ -1695,6 +1799,8 @@ export interface QueryBankStatementDto { |
1695 | 1799 | remark?: string; |
1696 | 1800 | remarkNote?: string; |
1697 | 1801 | serialNumber?: string; |
1802 | + /** @format int32 */ | |
1803 | + start?: number; | |
1698 | 1804 | status?: string; |
1699 | 1805 | /** @format int32 */ |
1700 | 1806 | total?: number; |
... | ... | @@ -1784,6 +1890,325 @@ export interface ReissueInvoiceDto { |
1784 | 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 | 2212 | export interface ResetPwdVO { |
1788 | 2213 | /** @format int64 */ |
1789 | 2214 | userId?: number; |
... | ... | @@ -1829,6 +2254,8 @@ export interface SysLogQueryVO { |
1829 | 2254 | /** @format int32 */ |
1830 | 2255 | current?: number; |
1831 | 2256 | description?: string; |
2257 | + /** @format int32 */ | |
2258 | + end?: number; | |
1832 | 2259 | exceptionDetail?: string; |
1833 | 2260 | /** @format int64 */ |
1834 | 2261 | id?: number; |
... | ... | @@ -1839,6 +2266,8 @@ export interface SysLogQueryVO { |
1839 | 2266 | pageSize?: number; |
1840 | 2267 | params?: string; |
1841 | 2268 | requestIp?: string; |
2269 | + /** @format int32 */ | |
2270 | + start?: number; | |
1842 | 2271 | /** @format int64 */ |
1843 | 2272 | time?: number; |
1844 | 2273 | /** @format int32 */ |
... | ... | @@ -2002,8 +2431,12 @@ export interface UserCenterInfoRequest { |
2002 | 2431 | /** @format int32 */ |
2003 | 2432 | current?: number; |
2004 | 2433 | /** @format int32 */ |
2434 | + end?: number; | |
2435 | + /** @format int32 */ | |
2005 | 2436 | pageSize?: number; |
2006 | 2437 | /** @format int32 */ |
2438 | + start?: number; | |
2439 | + /** @format int32 */ | |
2007 | 2440 | total?: number; |
2008 | 2441 | /** |
2009 | 2442 | * @description |
... | ... | @@ -2023,6 +2456,8 @@ export interface UserDetailRequest { |
2023 | 2456 | /** @format int32 */ |
2024 | 2457 | current?: number; |
2025 | 2458 | /** @format int32 */ |
2459 | + end?: number; | |
2460 | + /** @format int32 */ | |
2026 | 2461 | pageSize?: number; |
2027 | 2462 | /** |
2028 | 2463 | * @description |
... | ... | @@ -2030,6 +2465,8 @@ export interface UserDetailRequest { |
2030 | 2465 | */ |
2031 | 2466 | phone?: string; |
2032 | 2467 | /** @format int32 */ |
2468 | + start?: number; | |
2469 | + /** @format int32 */ | |
2033 | 2470 | total?: number; |
2034 | 2471 | /** |
2035 | 2472 | * @description |
... | ... | @@ -2046,6 +2483,8 @@ export interface UserListRequest { |
2046 | 2483 | * 创建日期开始时间 |
2047 | 2484 | */ |
2048 | 2485 | dateLimit?: string; |
2486 | + /** @format int32 */ | |
2487 | + end?: number; | |
2049 | 2488 | /** |
2050 | 2489 | * @description |
2051 | 2490 | * 单位 |
... | ... | @@ -2070,10 +2509,23 @@ export interface UserListRequest { |
2070 | 2509 | phone?: string; |
2071 | 2510 | /** |
2072 | 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 | 2523 | * salesCode |
2074 | 2524 | */ |
2075 | 2525 | salesCode?: string; |
2076 | 2526 | /** @format int32 */ |
2527 | + start?: number; | |
2528 | + /** @format int32 */ | |
2077 | 2529 | total?: number; |
2078 | 2530 | /** |
2079 | 2531 | * @description |
... | ... | @@ -2083,11 +2535,23 @@ export interface UserListRequest { |
2083 | 2535 | uid?: number; |
2084 | 2536 | /** |
2085 | 2537 | * @description |
2538 | + * ids | |
2539 | + */ | |
2540 | + uids?: Array<number>; | |
2541 | + /** | |
2542 | + * @description | |
2086 | 2543 | * 用户名 |
2087 | 2544 | */ |
2088 | 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 | 2555 | export interface View { |
2092 | 2556 | contentType?: string; |
2093 | 2557 | } |
... | ... | @@ -2152,6 +2616,11 @@ export interface SalesRechargePrepaymentAuditRequest { |
2152 | 2616 | * 是否通过 |
2153 | 2617 | */ |
2154 | 2618 | pass?: boolean; |
2619 | + /** | |
2620 | + * @description | |
2621 | + * 手机号 | |
2622 | + */ | |
2623 | + phone?: string; | |
2155 | 2624 | } |
2156 | 2625 | |
2157 | 2626 | export interface SalesRechargePrepaymentCreateRequest { |
... | ... | @@ -2257,6 +2726,8 @@ export interface SalesRechargePrepaymentRequest { |
2257 | 2726 | * @format int32 |
2258 | 2727 | */ |
2259 | 2728 | enableFlag?: number; |
2729 | + /** @format int32 */ | |
2730 | + end?: number; | |
2260 | 2731 | /** |
2261 | 2732 | * @description |
2262 | 2733 | * id |
... | ... | @@ -2301,6 +2772,8 @@ export interface SalesRechargePrepaymentRequest { |
2301 | 2772 | * 销售代表 |
2302 | 2773 | */ |
2303 | 2774 | salesCode?: string; |
2775 | + /** @format int32 */ | |
2776 | + start?: number; | |
2304 | 2777 | /** |
2305 | 2778 | * @description |
2306 | 2779 | * 状态 |
... | ... | @@ -2479,6 +2952,38 @@ export interface TsgURL { |
2479 | 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 | 2987 | export interface UploadPaymentReceiptDTO { |
2483 | 2988 | /** |
2484 | 2989 | * @description | ... | ... |
src/services/request.ts
... | ... | @@ -34,6 +34,7 @@ import type { |
34 | 34 | CancelInvoiceAndBankStatementDto, |
35 | 35 | CancelSendOrderDto, |
36 | 36 | CaptchaMessageVO, |
37 | + CommonAuditRequest, | |
37 | 38 | CustomFieldRes, |
38 | 39 | CustomerCustomerListReq, |
39 | 40 | CustomerDetailDto, |
... | ... | @@ -43,6 +44,7 @@ import type { |
43 | 44 | DictionaryQueryVO, |
44 | 45 | DictionaryVO, |
45 | 46 | DistrictDo, |
47 | + DistrictSearchDo, | |
46 | 48 | Dto, |
47 | 49 | InventoryMaterialStockReq, |
48 | 50 | InvoiceDto, |
... | ... | @@ -54,10 +56,12 @@ import type { |
54 | 56 | MaterialUnitListRes, |
55 | 57 | MeasureUnitListRes, |
56 | 58 | MessageQueryDTO, |
59 | + ModelAndView, | |
57 | 60 | OrderAddVO, |
58 | 61 | OrderAuditLogQueryVO, |
59 | 62 | OrderBaseInfoQueryVO, |
60 | 63 | OrderFieldLockApplyQueryVO, |
64 | + OrderMainProDo, | |
61 | 65 | OrderOptLogQueryVO, |
62 | 66 | OrderProfitAnalysisVo, |
63 | 67 | OrderStagesDelDo, |
... | ... | @@ -82,6 +86,16 @@ import type { |
82 | 86 | QueryMainOrderDto, |
83 | 87 | QueryReportFormsDto, |
84 | 88 | ReissueInvoiceDto, |
89 | + ResearchGroupAddRequest, | |
90 | + ResearchGroupDeleteRequest, | |
91 | + ResearchGroupDetailRequest, | |
92 | + ResearchGroupEditRequest, | |
93 | + ResearchGroupListRequest, | |
94 | + ResearchGroupMemberRequestAddRequest, | |
95 | + ResearchGroupMemberRequestDeleteRequest, | |
96 | + ResearchGroupMemberRequestDetailRequest, | |
97 | + ResearchGroupMemberRequestEditRequest, | |
98 | + ResearchGroupMemberRequestsRequest, | |
85 | 99 | ResetPwdVO, |
86 | 100 | SalOrderSaveDto, |
87 | 101 | SalesRechargePrepaymentAuditRequest, |
... | ... | @@ -103,9 +117,11 @@ import type { |
103 | 117 | UpdatePwdVO, |
104 | 118 | UploadPaymentReceiptDTO, |
105 | 119 | UserAddressListRequest, |
120 | + UserAddressSaveRequest, | |
106 | 121 | UserCenterInfoRequest, |
107 | 122 | UserDetailRequest, |
108 | 123 | UserListRequest, |
124 | + UserNowMoneyCheckRequest, | |
109 | 125 | } from './definition'; |
110 | 126 | |
111 | 127 | /** @description request parameter type for postApiLocalStorageUpload */ |
... | ... | @@ -1468,8 +1484,8 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() => { |
1468 | 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 | 1490 | * @description |
1475 | 1491 | * request |
... | ... | @@ -1478,12 +1494,12 @@ export interface PostCanrdApiUserListOption { |
1478 | 1494 | /** |
1479 | 1495 | @description |
1480 | 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 | 1504 | * @description |
1489 | 1505 | * OK |
... | ... | @@ -1511,36 +1527,51 @@ export interface PostCanrdApiUserListResponse { |
1511 | 1527 | 404: any; |
1512 | 1528 | } |
1513 | 1529 | |
1514 | -export type PostCanrdApiUserListResponseSuccess = | |
1515 | - PostCanrdApiUserListResponse[200]; | |
1530 | +export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess = | |
1531 | + PostCanrdApiUserInnerOrderSystemAddressSaveResponse[200]; | |
1516 | 1532 | /** |
1517 | 1533 | * @description |
1518 | - * 获取用户列表 | |
1534 | + * 查询地址信息 | |
1519 | 1535 | * @tags canrd-mobile-api-controller |
1520 | 1536 | * @produces * |
1521 | 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 | 1576 | * @description |
1546 | 1577 | * OK |
... | ... | @@ -1548,6 +1579,11 @@ export interface GetDistrictSelectAllResponse { |
1548 | 1579 | 200: ServerResult; |
1549 | 1580 | /** |
1550 | 1581 | * @description |
1582 | + * Created | |
1583 | + */ | |
1584 | + 201: any; | |
1585 | + /** | |
1586 | + * @description | |
1551 | 1587 | * Unauthorized |
1552 | 1588 | */ |
1553 | 1589 | 401: any; |
... | ... | @@ -1563,21 +1599,25 @@ export interface GetDistrictSelectAllResponse { |
1563 | 1599 | 404: any; |
1564 | 1600 | } |
1565 | 1601 | |
1566 | -export type GetDistrictSelectAllResponseSuccess = | |
1567 | - GetDistrictSelectAllResponse[200]; | |
1602 | +export type PostCanrdApiUserListResponseSuccess = | |
1603 | + PostCanrdApiUserListResponse[200]; | |
1568 | 1604 | /** |
1569 | 1605 | * @description |
1570 | - * 查询全部 | |
1571 | - * @tags order-district-controller | |
1606 | + * 获取用户列表 | |
1607 | + * @tags canrd-mobile-api-controller | |
1572 | 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 | 1617 | return requester(request.url, { |
1579 | 1618 | method: request.method, |
1580 | - }) as unknown as Promise<GetDistrictSelectAllResponseSuccess>; | |
1619 | + ...option, | |
1620 | + }) as unknown as Promise<PostCanrdApiUserListResponseSuccess>; | |
1581 | 1621 | } |
1582 | 1622 | |
1583 | 1623 | /** http method */ |
... | ... | @@ -1587,22 +1627,22 @@ export const getDistrictSelectAll = /* #__PURE__ */ (() => { |
1587 | 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 | 1633 | * @description |
1594 | - * pid | |
1634 | + * request | |
1595 | 1635 | */ |
1596 | 1636 | body: { |
1597 | 1637 | /** |
1598 | 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 | 1647 | * @description |
1608 | 1648 | * OK |
... | ... | @@ -1630,25 +1670,25 @@ export interface PostDistrictSelectBelongResponse { |
1630 | 1670 | 404: any; |
1631 | 1671 | } |
1632 | 1672 | |
1633 | -export type PostDistrictSelectBelongResponseSuccess = | |
1634 | - PostDistrictSelectBelongResponse[200]; | |
1673 | +export type PostCanrdApiUserNowMoneyCheckResponseSuccess = | |
1674 | + PostCanrdApiUserNowMoneyCheckResponse[200]; | |
1635 | 1675 | /** |
1636 | 1676 | * @description |
1637 | - * 根据父级进行筛选 | |
1638 | - * @tags order-district-controller | |
1677 | + * 检查用户额度 | |
1678 | + * @tags canrd-mobile-api-controller | |
1639 | 1679 | * @produces * |
1640 | 1680 | * @consumes application/json |
1641 | 1681 | */ |
1642 | -export const postDistrictSelectBelong = /* #__PURE__ */ (() => { | |
1682 | +export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => { | |
1643 | 1683 | const method = 'post'; |
1644 | - const url = '/district/selectBelong'; | |
1684 | + const url = '/canrd/api/user/nowMoney/check'; | |
1645 | 1685 | function request( |
1646 | - option: PostDistrictSelectBelongOption, | |
1647 | - ): Promise<PostDistrictSelectBelongResponseSuccess> { | |
1686 | + option: PostCanrdApiUserNowMoneyCheckOption, | |
1687 | + ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> { | |
1648 | 1688 | return requester(request.url, { |
1649 | 1689 | method: request.method, |
1650 | 1690 | ...option, |
1651 | - }) as unknown as Promise<PostDistrictSelectBelongResponseSuccess>; | |
1691 | + }) as unknown as Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess>; | |
1652 | 1692 | } |
1653 | 1693 | |
1654 | 1694 | /** http method */ |
... | ... | @@ -1658,22 +1698,22 @@ export const postDistrictSelectBelong = /* #__PURE__ */ (() => { |
1658 | 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 | 1704 | * @description |
1665 | - * districtDo | |
1705 | + * request | |
1666 | 1706 | */ |
1667 | 1707 | body: { |
1668 | 1708 | /** |
1669 | 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 | 1718 | * @description |
1679 | 1719 | * OK |
... | ... | @@ -1701,25 +1741,24 @@ export interface PostDistrictSelectBelongAndLevelResponse { |
1701 | 1741 | 404: any; |
1702 | 1742 | } |
1703 | 1743 | |
1704 | -export type PostDistrictSelectBelongAndLevelResponseSuccess = | |
1705 | - PostDistrictSelectBelongAndLevelResponse[200]; | |
1744 | +export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200]; | |
1706 | 1745 | /** |
1707 | 1746 | * @description |
1708 | - * 根据父级和等级进行筛选 | |
1709 | - * @tags order-district-controller | |
1747 | + * audit | |
1748 | + * @tags common-controller | |
1710 | 1749 | * @produces * |
1711 | 1750 | * @consumes application/json |
1712 | 1751 | */ |
1713 | -export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() => { | |
1752 | +export const postCommonAudit = /* #__PURE__ */ (() => { | |
1714 | 1753 | const method = 'post'; |
1715 | - const url = '/district/selectBelongAndLevel'; | |
1754 | + const url = '/common/audit'; | |
1716 | 1755 | function request( |
1717 | - option: PostDistrictSelectBelongAndLevelOption, | |
1718 | - ): Promise<PostDistrictSelectBelongAndLevelResponseSuccess> { | |
1756 | + option: PostCommonAuditOption, | |
1757 | + ): Promise<PostCommonAuditResponseSuccess> { | |
1719 | 1758 | return requester(request.url, { |
1720 | 1759 | method: request.method, |
1721 | 1760 | ...option, |
1722 | - }) as unknown as Promise<PostDistrictSelectBelongAndLevelResponseSuccess>; | |
1761 | + }) as unknown as Promise<PostCommonAuditResponseSuccess>; | |
1723 | 1762 | } |
1724 | 1763 | |
1725 | 1764 | /** http method */ |
... | ... | @@ -1729,22 +1768,22 @@ export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() => { |
1729 | 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 | 1774 | * @description |
1736 | - * district | |
1775 | + * orderMainProDo | |
1737 | 1776 | */ |
1738 | 1777 | body: { |
1739 | 1778 | /** |
1740 | 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 | 1788 | * @description |
1750 | 1789 | * OK |
... | ... | @@ -1772,25 +1811,25 @@ export interface PostDistrictSelectBelongByNameResponse { |
1772 | 1811 | 404: any; |
1773 | 1812 | } |
1774 | 1813 | |
1775 | -export type PostDistrictSelectBelongByNameResponseSuccess = | |
1776 | - PostDistrictSelectBelongByNameResponse[200]; | |
1814 | +export type PostDistrictAddOrderAndProvinceResponseSuccess = | |
1815 | + PostDistrictAddOrderAndProvinceResponse[200]; | |
1777 | 1816 | /** |
1778 | 1817 | * @description |
1779 | - * 根据父级名字进行筛选 | |
1818 | + * 添加到订单省市区关系表 | |
1780 | 1819 | * @tags order-district-controller |
1781 | 1820 | * @produces * |
1782 | 1821 | * @consumes application/json |
1783 | 1822 | */ |
1784 | -export const postDistrictSelectBelongByName = /* #__PURE__ */ (() => { | |
1823 | +export const postDistrictAddOrderAndProvince = /* #__PURE__ */ (() => { | |
1785 | 1824 | const method = 'post'; |
1786 | - const url = '/district/selectBelongByName'; | |
1825 | + const url = '/district/addOrderAndProvince'; | |
1787 | 1826 | function request( |
1788 | - option: PostDistrictSelectBelongByNameOption, | |
1789 | - ): Promise<PostDistrictSelectBelongByNameResponseSuccess> { | |
1827 | + option: PostDistrictAddOrderAndProvinceOption, | |
1828 | + ): Promise<PostDistrictAddOrderAndProvinceResponseSuccess> { | |
1790 | 1829 | return requester(request.url, { |
1791 | 1830 | method: request.method, |
1792 | 1831 | ...option, |
1793 | - }) as unknown as Promise<PostDistrictSelectBelongByNameResponseSuccess>; | |
1832 | + }) as unknown as Promise<PostDistrictAddOrderAndProvinceResponseSuccess>; | |
1794 | 1833 | } |
1795 | 1834 | |
1796 | 1835 | /** http method */ |
... | ... | @@ -1800,22 +1839,22 @@ export const postDistrictSelectBelongByName = /* #__PURE__ */ (() => { |
1800 | 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 | 1845 | * @description |
1807 | - * level | |
1846 | + * oId | |
1808 | 1847 | */ |
1809 | 1848 | body: { |
1810 | 1849 | /** |
1811 | 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 | 1859 | * @description |
1821 | 1860 | * OK |
... | ... | @@ -1843,25 +1882,25 @@ export interface PostDistrictSelectByLevelResponse { |
1843 | 1882 | 404: any; |
1844 | 1883 | } |
1845 | 1884 | |
1846 | -export type PostDistrictSelectByLevelResponseSuccess = | |
1847 | - PostDistrictSelectByLevelResponse[200]; | |
1885 | +export type PostDistrictSelOrderProvinceResponseSuccess = | |
1886 | + PostDistrictSelOrderProvinceResponse[200]; | |
1848 | 1887 | /** |
1849 | 1888 | * @description |
1850 | - * 根据等级查询 | |
1889 | + * 查询订单的省市区 | |
1851 | 1890 | * @tags order-district-controller |
1852 | 1891 | * @produces * |
1853 | 1892 | * @consumes application/json |
1854 | 1893 | */ |
1855 | -export const postDistrictSelectByLevel = /* #__PURE__ */ (() => { | |
1894 | +export const postDistrictSelOrderProvince = /* #__PURE__ */ (() => { | |
1856 | 1895 | const method = 'post'; |
1857 | - const url = '/district/selectByLevel'; | |
1896 | + const url = '/district/selOrderProvince'; | |
1858 | 1897 | function request( |
1859 | - option: PostDistrictSelectByLevelOption, | |
1860 | - ): Promise<PostDistrictSelectByLevelResponseSuccess> { | |
1898 | + option: PostDistrictSelOrderProvinceOption, | |
1899 | + ): Promise<PostDistrictSelOrderProvinceResponseSuccess> { | |
1861 | 1900 | return requester(request.url, { |
1862 | 1901 | method: request.method, |
1863 | 1902 | ...option, |
1864 | - }) as unknown as Promise<PostDistrictSelectByLevelResponseSuccess>; | |
1903 | + }) as unknown as Promise<PostDistrictSelOrderProvinceResponseSuccess>; | |
1865 | 1904 | } |
1866 | 1905 | |
1867 | 1906 | /** http method */ |
... | ... | @@ -1871,15 +1910,13 @@ export const postDistrictSelectByLevel = /* #__PURE__ */ (() => { |
1871 | 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 | 1916 | * @description |
1878 | 1917 | * OK |
1879 | 1918 | */ |
1880 | - 200: { | |
1881 | - [propertyName: string]: any; | |
1882 | - }; | |
1919 | + 200: ServerResult; | |
1883 | 1920 | /** |
1884 | 1921 | * @description |
1885 | 1922 | * Unauthorized |
... | ... | @@ -1897,20 +1934,21 @@ export interface GetErrorResponse { |
1897 | 1934 | 404: any; |
1898 | 1935 | } |
1899 | 1936 | |
1900 | -export type GetErrorResponseSuccess = GetErrorResponse[200]; | |
1937 | +export type GetDistrictSelectAllResponseSuccess = | |
1938 | + GetDistrictSelectAllResponse[200]; | |
1901 | 1939 | /** |
1902 | 1940 | * @description |
1903 | - * error | |
1904 | - * @tags basic-error-controller | |
1941 | + * 查询全部 | |
1942 | + * @tags order-district-controller | |
1905 | 1943 | * @produces * |
1906 | 1944 | */ |
1907 | -export const getError = /* #__PURE__ */ (() => { | |
1945 | +export const getDistrictSelectAll = /* #__PURE__ */ (() => { | |
1908 | 1946 | const method = 'get'; |
1909 | - const url = '/error'; | |
1910 | - function request(): Promise<GetErrorResponseSuccess> { | |
1947 | + const url = '/district/selectAll'; | |
1948 | + function request(): Promise<GetDistrictSelectAllResponseSuccess> { | |
1911 | 1949 | return requester(request.url, { |
1912 | 1950 | method: request.method, |
1913 | - }) as unknown as Promise<GetErrorResponseSuccess>; | |
1951 | + }) as unknown as Promise<GetDistrictSelectAllResponseSuccess>; | |
1914 | 1952 | } |
1915 | 1953 | |
1916 | 1954 | /** http method */ |
... | ... | @@ -1920,15 +1958,27 @@ export const getError = /* #__PURE__ */ (() => { |
1920 | 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 | 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 | 1983 | * @description |
1934 | 1984 | * Created |
... | ... | @@ -1951,21 +2001,25 @@ export interface PutErrorResponse { |
1951 | 2001 | 404: any; |
1952 | 2002 | } |
1953 | 2003 | |
1954 | -export type PutErrorResponseSuccess = PutErrorResponse[200]; | |
2004 | +export type PostDistrictSelectBelongResponseSuccess = | |
2005 | + PostDistrictSelectBelongResponse[200]; | |
1955 | 2006 | /** |
1956 | 2007 | * @description |
1957 | - * error | |
1958 | - * @tags basic-error-controller | |
2008 | + * 根据父级进行筛选 | |
2009 | + * @tags order-district-controller | |
1959 | 2010 | * @produces * |
1960 | 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 | 2019 | return requester(request.url, { |
1967 | 2020 | method: request.method, |
1968 | - }) as unknown as Promise<PutErrorResponseSuccess>; | |
2021 | + ...option, | |
2022 | + }) as unknown as Promise<PostDistrictSelectBelongResponseSuccess>; | |
1969 | 2023 | } |
1970 | 2024 | |
1971 | 2025 | /** http method */ |
... | ... | @@ -1975,15 +2029,27 @@ export const putError = /* #__PURE__ */ (() => { |
1975 | 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 | 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 | 2054 | * @description |
1989 | 2055 | * Created |
... | ... | @@ -2006,21 +2072,25 @@ export interface PostErrorResponse { |
2006 | 2072 | 404: any; |
2007 | 2073 | } |
2008 | 2074 | |
2009 | -export type PostErrorResponseSuccess = PostErrorResponse[200]; | |
2075 | +export type PostDistrictSelectBelongAndLevelResponseSuccess = | |
2076 | + PostDistrictSelectBelongAndLevelResponse[200]; | |
2010 | 2077 | /** |
2011 | 2078 | * @description |
2012 | - * error | |
2013 | - * @tags basic-error-controller | |
2079 | + * 根据父级和等级进行筛选 | |
2080 | + * @tags order-district-controller | |
2014 | 2081 | * @produces * |
2015 | 2082 | * @consumes application/json |
2016 | 2083 | */ |
2017 | -export const postError = /* #__PURE__ */ (() => { | |
2084 | +export const postDistrictSelectBelongAndLevel = /* #__PURE__ */ (() => { | |
2018 | 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 | 2090 | return requester(request.url, { |
2022 | 2091 | method: request.method, |
2023 | - }) as unknown as Promise<PostErrorResponseSuccess>; | |
2092 | + ...option, | |
2093 | + }) as unknown as Promise<PostDistrictSelectBelongAndLevelResponseSuccess>; | |
2024 | 2094 | } |
2025 | 2095 | |
2026 | 2096 | /** http method */ |
... | ... | @@ -2030,20 +2100,873 @@ export const postError = /* #__PURE__ */ (() => { |
2030 | 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 | 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 | 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 | 2971 | * @description |
2049 | 2972 | * Unauthorized |
... | ... | @@ -2054,22 +2977,245 @@ export interface DeleteErrorResponse { |
2054 | 2977 | * Forbidden |
2055 | 2978 | */ |
2056 | 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 | 3203 | * @description |
2062 | - * error | |
2063 | - * @tags basic-error-controller | |
3204 | + * salBillOutbound | |
3205 | + * @tags kingdee-erp-controller | |
2064 | 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 | 3215 | return requester(request.url, { |
2071 | 3216 | method: request.method, |
2072 | - }) as unknown as Promise<DeleteErrorResponseSuccess>; | |
3217 | + ...option, | |
3218 | + }) as unknown as Promise<PostKingdeeRepSalBillOutboundResponseSuccess>; | |
2073 | 3219 | } |
2074 | 3220 | |
2075 | 3221 | /** http method */ |
... | ... | @@ -2079,20 +3225,32 @@ export const deleteError = /* #__PURE__ */ (() => { |
2079 | 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 | 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 | 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 | 3255 | * @description |
2098 | 3256 | * Unauthorized |
... | ... | @@ -2103,23 +3261,32 @@ export interface OptionsErrorResponse { |
2103 | 3261 | * Forbidden |
2104 | 3262 | */ |
2105 | 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 | 3274 | * @description |
2111 | - * error | |
2112 | - * @tags basic-error-controller | |
3275 | + * salOrderSave | |
3276 | + * @tags kingdee-erp-controller | |
2113 | 3277 | * @produces * |
2114 | 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 | 3286 | return requester(request.url, { |
2121 | 3287 | method: request.method, |
2122 | - }) as unknown as Promise<OptionsErrorResponseSuccess>; | |
3288 | + ...option, | |
3289 | + }) as unknown as Promise<PostKingdeeRepSalOrderSaveResponseSuccess>; | |
2123 | 3290 | } |
2124 | 3291 | |
2125 | 3292 | /** http method */ |
... | ... | @@ -2129,20 +3296,32 @@ export const optionsError = /* #__PURE__ */ (() => { |
2129 | 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 | 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 | 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 | 3326 | * @description |
2148 | 3327 | * Unauthorized |
... | ... | @@ -2153,23 +3332,32 @@ export interface HeadErrorResponse { |
2153 | 3332 | * Forbidden |
2154 | 3333 | */ |
2155 | 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 | 3345 | * @description |
2161 | - * error | |
2162 | - * @tags basic-error-controller | |
3346 | + * listCustomFields | |
3347 | + * @tags kingdee-erp-controller | |
2163 | 3348 | * @produces * |
2164 | 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 | 3357 | return requester(request.url, { |
2171 | 3358 | method: request.method, |
2172 | - }) as unknown as Promise<HeadErrorResponseSuccess>; | |
3359 | + ...option, | |
3360 | + }) as unknown as Promise<PostKingdeeRepSystemCustomFieldResponseSuccess>; | |
2173 | 3361 | } |
2174 | 3362 | |
2175 | 3363 | /** http method */ |
... | ... | @@ -2179,20 +3367,32 @@ export const headError = /* #__PURE__ */ (() => { |
2179 | 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 | 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 | 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 | 3397 | * @description |
2198 | 3398 | * Unauthorized |
... | ... | @@ -2203,23 +3403,32 @@ export interface PatchErrorResponse { |
2203 | 3403 | * Forbidden |
2204 | 3404 | */ |
2205 | 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 | 3416 | * @description |
2211 | - * error | |
2212 | - * @tags basic-error-controller | |
3417 | + * 为官网提供上传文件的接口 | |
3418 | + * @tags 官网 | |
2213 | 3419 | * @produces * |
2214 | 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 | 3428 | return requester(request.url, { |
2221 | 3429 | method: request.method, |
2222 | - }) as unknown as Promise<PatchErrorResponseSuccess>; | |
3430 | + ...option, | |
3431 | + }) as unknown as Promise<PostOfficialWebsiteUploadAliOssResponseSuccess>; | |
2223 | 3432 | } |
2224 | 3433 | |
2225 | 3434 | /** http method */ |
... | ... | @@ -2229,27 +3438,27 @@ export const patchError = /* #__PURE__ */ (() => { |
2229 | 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 | 3444 | * @description |
2236 | - * req | |
3445 | + * orderFieldLockApplyQueryVO | |
2237 | 3446 | */ |
2238 | 3447 | body: { |
2239 | 3448 | /** |
2240 | 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 | 3458 | * @description |
2250 | 3459 | * OK |
2251 | 3460 | */ |
2252 | - 200: CustomerListRes; | |
3461 | + 200: ServerResult; | |
2253 | 3462 | /** |
2254 | 3463 | * @description |
2255 | 3464 | * Created |
... | ... | @@ -2272,25 +3481,25 @@ export interface PostKingdeeRepCustomerResponse { |
2272 | 3481 | 404: any; |
2273 | 3482 | } |
2274 | 3483 | |
2275 | -export type PostKingdeeRepCustomerResponseSuccess = | |
2276 | - PostKingdeeRepCustomerResponse[200]; | |
3484 | +export type PostOrderErpApplyListResponseSuccess = | |
3485 | + PostOrderErpApplyListResponse[200]; | |
2277 | 3486 | /** |
2278 | 3487 | * @description |
2279 | - * listCustomers | |
2280 | - * @tags kingdee-erp-controller | |
3488 | + * 分页查询 | |
3489 | + * @tags 用户订单-字段锁定申请(忽略) | |
2281 | 3490 | * @produces * |
2282 | 3491 | * @consumes application/json |
2283 | 3492 | */ |
2284 | -export const postKingdeeRepCustomer = /* #__PURE__ */ (() => { | |
3493 | +export const postOrderErpApplyList = /* #__PURE__ */ (() => { | |
2285 | 3494 | const method = 'post'; |
2286 | - const url = '/kingdee/rep/customer'; | |
3495 | + const url = '/order/erp/apply/list'; | |
2287 | 3496 | function request( |
2288 | - option: PostKingdeeRepCustomerOption, | |
2289 | - ): Promise<PostKingdeeRepCustomerResponseSuccess> { | |
3497 | + option: PostOrderErpApplyListOption, | |
3498 | + ): Promise<PostOrderErpApplyListResponseSuccess> { | |
2290 | 3499 | return requester(request.url, { |
2291 | 3500 | method: request.method, |
2292 | 3501 | ...option, |
2293 | - }) as unknown as Promise<PostKingdeeRepCustomerResponseSuccess>; | |
3502 | + }) as unknown as Promise<PostOrderErpApplyListResponseSuccess>; | |
2294 | 3503 | } |
2295 | 3504 | |
2296 | 3505 | /** http method */ |
... | ... | @@ -2300,27 +3509,27 @@ export const postKingdeeRepCustomer = /* #__PURE__ */ (() => { |
2300 | 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 | 3515 | * @description |
2307 | - * dto | |
3516 | + * queryVO | |
2308 | 3517 | */ |
2309 | 3518 | body: { |
2310 | 3519 | /** |
2311 | 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 | 3529 | * @description |
2321 | 3530 | * OK |
2322 | 3531 | */ |
2323 | - 200: CustomerDetailRes; | |
3532 | + 200: ServerResult; | |
2324 | 3533 | /** |
2325 | 3534 | * @description |
2326 | 3535 | * Created |
... | ... | @@ -2343,25 +3552,25 @@ export interface PostKingdeeRepCustomerDetailResponse { |
2343 | 3552 | 404: any; |
2344 | 3553 | } |
2345 | 3554 | |
2346 | -export type PostKingdeeRepCustomerDetailResponseSuccess = | |
2347 | - PostKingdeeRepCustomerDetailResponse[200]; | |
3555 | +export type PostOrderErpAuditAuditListResponseSuccess = | |
3556 | + PostOrderErpAuditAuditListResponse[200]; | |
2348 | 3557 | /** |
2349 | 3558 | * @description |
2350 | - * getCustomerDetail | |
2351 | - * @tags kingdee-erp-controller | |
3559 | + * 已审批列表 | |
3560 | + * @tags 审批管理 | |
2352 | 3561 | * @produces * |
2353 | 3562 | * @consumes application/json |
2354 | 3563 | */ |
2355 | -export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() => { | |
3564 | +export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => { | |
2356 | 3565 | const method = 'post'; |
2357 | - const url = '/kingdee/rep/customerDetail'; | |
3566 | + const url = '/order/erp/audit/audit_list'; | |
2358 | 3567 | function request( |
2359 | - option: PostKingdeeRepCustomerDetailOption, | |
2360 | - ): Promise<PostKingdeeRepCustomerDetailResponseSuccess> { | |
3568 | + option: PostOrderErpAuditAuditListOption, | |
3569 | + ): Promise<PostOrderErpAuditAuditListResponseSuccess> { | |
2361 | 3570 | return requester(request.url, { |
2362 | 3571 | method: request.method, |
2363 | 3572 | ...option, |
2364 | - }) as unknown as Promise<PostKingdeeRepCustomerDetailResponseSuccess>; | |
3573 | + }) as unknown as Promise<PostOrderErpAuditAuditListResponseSuccess>; | |
2365 | 3574 | } |
2366 | 3575 | |
2367 | 3576 | /** http method */ |
... | ... | @@ -2371,27 +3580,27 @@ export const postKingdeeRepCustomerDetail = /* #__PURE__ */ (() => { |
2371 | 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 | 3586 | * @description |
2378 | - * req | |
3587 | + * auditVO | |
2379 | 3588 | */ |
2380 | 3589 | body: { |
2381 | 3590 | /** |
2382 | 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 | 3600 | * @description |
2392 | 3601 | * OK |
2393 | 3602 | */ |
2394 | - 200: SaveReply; | |
3603 | + 200: ServerResult; | |
2395 | 3604 | /** |
2396 | 3605 | * @description |
2397 | 3606 | * Created |
... | ... | @@ -2414,25 +3623,25 @@ export interface PostKingdeeRepCustomerSaveResponse { |
2414 | 3623 | 404: any; |
2415 | 3624 | } |
2416 | 3625 | |
2417 | -export type PostKingdeeRepCustomerSaveResponseSuccess = | |
2418 | - PostKingdeeRepCustomerSaveResponse[200]; | |
3626 | +export type PostOrderErpAuditDoAuditResponseSuccess = | |
3627 | + PostOrderErpAuditDoAuditResponse[200]; | |
2419 | 3628 | /** |
2420 | 3629 | * @description |
2421 | - * customerSave | |
2422 | - * @tags kingdee-erp-controller | |
3630 | + * 审核 | |
3631 | + * @tags 审批管理 | |
2423 | 3632 | * @produces * |
2424 | 3633 | * @consumes application/json |
2425 | 3634 | */ |
2426 | -export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() => { | |
3635 | +export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => { | |
2427 | 3636 | const method = 'post'; |
2428 | - const url = '/kingdee/rep/customerSave'; | |
3637 | + const url = '/order/erp/audit/do_audit'; | |
2429 | 3638 | function request( |
2430 | - option: PostKingdeeRepCustomerSaveOption, | |
2431 | - ): Promise<PostKingdeeRepCustomerSaveResponseSuccess> { | |
3639 | + option: PostOrderErpAuditDoAuditOption, | |
3640 | + ): Promise<PostOrderErpAuditDoAuditResponseSuccess> { | |
2432 | 3641 | return requester(request.url, { |
2433 | 3642 | method: request.method, |
2434 | 3643 | ...option, |
2435 | - }) as unknown as Promise<PostKingdeeRepCustomerSaveResponseSuccess>; | |
3644 | + }) as unknown as Promise<PostOrderErpAuditDoAuditResponseSuccess>; | |
2436 | 3645 | } |
2437 | 3646 | |
2438 | 3647 | /** http method */ |
... | ... | @@ -2442,27 +3651,27 @@ export const postKingdeeRepCustomerSave = /* #__PURE__ */ (() => { |
2442 | 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 | 3657 | * @description |
2449 | - * req | |
3658 | + * queryVO | |
2450 | 3659 | */ |
2451 | 3660 | body: { |
2452 | 3661 | /** |
2453 | 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 | 3671 | * @description |
2463 | 3672 | * OK |
2464 | 3673 | */ |
2465 | - 200: MaterialListReply; | |
3674 | + 200: ServerResult; | |
2466 | 3675 | /** |
2467 | 3676 | * @description |
2468 | 3677 | * Created |
... | ... | @@ -2485,25 +3694,25 @@ export interface PostKingdeeRepMaterialResponse { |
2485 | 3694 | 404: any; |
2486 | 3695 | } |
2487 | 3696 | |
2488 | -export type PostKingdeeRepMaterialResponseSuccess = | |
2489 | - PostKingdeeRepMaterialResponse[200]; | |
3697 | +export type PostOrderErpAuditListByPageResponseSuccess = | |
3698 | + PostOrderErpAuditListByPageResponse[200]; | |
2490 | 3699 | /** |
2491 | 3700 | * @description |
2492 | - * listMaterial | |
2493 | - * @tags kingdee-erp-controller | |
3701 | + * 分页查询 | |
3702 | + * @tags 审批管理 | |
2494 | 3703 | * @produces * |
2495 | 3704 | * @consumes application/json |
2496 | 3705 | */ |
2497 | -export const postKingdeeRepMaterial = /* #__PURE__ */ (() => { | |
3706 | +export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => { | |
2498 | 3707 | const method = 'post'; |
2499 | - const url = '/kingdee/rep/material'; | |
3708 | + const url = '/order/erp/audit/list_by_page'; | |
2500 | 3709 | function request( |
2501 | - option: PostKingdeeRepMaterialOption, | |
2502 | - ): Promise<PostKingdeeRepMaterialResponseSuccess> { | |
3710 | + option: PostOrderErpAuditListByPageOption, | |
3711 | + ): Promise<PostOrderErpAuditListByPageResponseSuccess> { | |
2503 | 3712 | return requester(request.url, { |
2504 | 3713 | method: request.method, |
2505 | 3714 | ...option, |
2506 | - }) as unknown as Promise<PostKingdeeRepMaterialResponseSuccess>; | |
3715 | + }) as unknown as Promise<PostOrderErpAuditListByPageResponseSuccess>; | |
2507 | 3716 | } |
2508 | 3717 | |
2509 | 3718 | /** http method */ |
... | ... | @@ -2513,27 +3722,27 @@ export const postKingdeeRepMaterial = /* #__PURE__ */ (() => { |
2513 | 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 | 3728 | * @description |
2520 | - * req | |
3729 | + * orderAuditLogQueryVO | |
2521 | 3730 | */ |
2522 | 3731 | body: { |
2523 | 3732 | /** |
2524 | 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 | 3742 | * @description |
2534 | 3743 | * OK |
2535 | 3744 | */ |
2536 | - 200: MaterialStockRes; | |
3745 | + 200: ServerResult; | |
2537 | 3746 | /** |
2538 | 3747 | * @description |
2539 | 3748 | * Created |
... | ... | @@ -2556,25 +3765,25 @@ export interface PostKingdeeRepMaterialStockResponse { |
2556 | 3765 | 404: any; |
2557 | 3766 | } |
2558 | 3767 | |
2559 | -export type PostKingdeeRepMaterialStockResponseSuccess = | |
2560 | - PostKingdeeRepMaterialStockResponse[200]; | |
3768 | +export type PostOrderErpAuditLogListByPageResponseSuccess = | |
3769 | + PostOrderErpAuditLogListByPageResponse[200]; | |
2561 | 3770 | /** |
2562 | 3771 | * @description |
2563 | - * listMaterialStock | |
2564 | - * @tags kingdee-erp-controller | |
3772 | + * 分页查询 | |
3773 | + * @tags 用户订单审批日志 | |
2565 | 3774 | * @produces * |
2566 | 3775 | * @consumes application/json |
2567 | 3776 | */ |
2568 | -export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() => { | |
3777 | +export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => { | |
2569 | 3778 | const method = 'post'; |
2570 | - const url = '/kingdee/rep/materialStock'; | |
3779 | + const url = '/order/erp/audit/log/list_by_page'; | |
2571 | 3780 | function request( |
2572 | - option: PostKingdeeRepMaterialStockOption, | |
2573 | - ): Promise<PostKingdeeRepMaterialStockResponseSuccess> { | |
3781 | + option: PostOrderErpAuditLogListByPageOption, | |
3782 | + ): Promise<PostOrderErpAuditLogListByPageResponseSuccess> { | |
2574 | 3783 | return requester(request.url, { |
2575 | 3784 | method: request.method, |
2576 | 3785 | ...option, |
2577 | - }) as unknown as Promise<PostKingdeeRepMaterialStockResponseSuccess>; | |
3786 | + }) as unknown as Promise<PostOrderErpAuditLogListByPageResponseSuccess>; | |
2578 | 3787 | } |
2579 | 3788 | |
2580 | 3789 | /** http method */ |
... | ... | @@ -2584,27 +3793,27 @@ export const postKingdeeRepMaterialStock = /* #__PURE__ */ (() => { |
2584 | 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 | 3799 | * @description |
2591 | - * req | |
3800 | + * orderAuditLogQueryVO | |
2592 | 3801 | */ |
2593 | 3802 | body: { |
2594 | 3803 | /** |
2595 | 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 | 3813 | * @description |
2605 | 3814 | * OK |
2606 | 3815 | */ |
2607 | - 200: MaterialUnitListRes; | |
3816 | + 200: ServerResult; | |
2608 | 3817 | /** |
2609 | 3818 | * @description |
2610 | 3819 | * Created |
... | ... | @@ -2627,25 +3836,25 @@ export interface PostKingdeeRepMaterialUnitResponse { |
2627 | 3836 | 404: any; |
2628 | 3837 | } |
2629 | 3838 | |
2630 | -export type PostKingdeeRepMaterialUnitResponseSuccess = | |
2631 | - PostKingdeeRepMaterialUnitResponse[200]; | |
3839 | +export type PostOrderErpAuditLogQueryByIdResponseSuccess = | |
3840 | + PostOrderErpAuditLogQueryByIdResponse[200]; | |
2632 | 3841 | /** |
2633 | 3842 | * @description |
2634 | - * getMaterialDetail | |
2635 | - * @tags kingdee-erp-controller | |
3843 | + * 通过主键查询单条数据 | |
3844 | + * @tags 用户订单审批日志 | |
2636 | 3845 | * @produces * |
2637 | 3846 | * @consumes application/json |
2638 | 3847 | */ |
2639 | -export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() => { | |
3848 | +export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() => { | |
2640 | 3849 | const method = 'post'; |
2641 | - const url = '/kingdee/rep/materialUnit'; | |
3850 | + const url = '/order/erp/audit/log/query_by_id'; | |
2642 | 3851 | function request( |
2643 | - option: PostKingdeeRepMaterialUnitOption, | |
2644 | - ): Promise<PostKingdeeRepMaterialUnitResponseSuccess> { | |
3852 | + option: PostOrderErpAuditLogQueryByIdOption, | |
3853 | + ): Promise<PostOrderErpAuditLogQueryByIdResponseSuccess> { | |
2645 | 3854 | return requester(request.url, { |
2646 | 3855 | method: request.method, |
2647 | 3856 | ...option, |
2648 | - }) as unknown as Promise<PostKingdeeRepMaterialUnitResponseSuccess>; | |
3857 | + }) as unknown as Promise<PostOrderErpAuditLogQueryByIdResponseSuccess>; | |
2649 | 3858 | } |
2650 | 3859 | |
2651 | 3860 | /** http method */ |
... | ... | @@ -2655,27 +3864,27 @@ export const postKingdeeRepMaterialUnit = /* #__PURE__ */ (() => { |
2655 | 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 | 3870 | * @description |
2662 | - * req | |
3871 | + * queryVO | |
2663 | 3872 | */ |
2664 | 3873 | body: { |
2665 | 3874 | /** |
2666 | 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 | 3884 | * @description |
2676 | 3885 | * OK |
2677 | 3886 | */ |
2678 | - 200: MeasureUnitListRes; | |
3887 | + 200: ServerResult; | |
2679 | 3888 | /** |
2680 | 3889 | * @description |
2681 | 3890 | * Created |
... | ... | @@ -2698,25 +3907,25 @@ export interface PostKingdeeRepMeasureUnitResponse { |
2698 | 3907 | 404: any; |
2699 | 3908 | } |
2700 | 3909 | |
2701 | -export type PostKingdeeRepMeasureUnitResponseSuccess = | |
2702 | - PostKingdeeRepMeasureUnitResponse[200]; | |
3910 | +export type PostOrderErpAuditWaitAuditListResponseSuccess = | |
3911 | + PostOrderErpAuditWaitAuditListResponse[200]; | |
2703 | 3912 | /** |
2704 | 3913 | * @description |
2705 | - * getCustomerDetail | |
2706 | - * @tags kingdee-erp-controller | |
3914 | + * 待审批列表 | |
3915 | + * @tags 审批管理 | |
2707 | 3916 | * @produces * |
2708 | 3917 | * @consumes application/json |
2709 | 3918 | */ |
2710 | -export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() => { | |
3919 | +export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() => { | |
2711 | 3920 | const method = 'post'; |
2712 | - const url = '/kingdee/rep/measureUnit'; | |
3921 | + const url = '/order/erp/audit/wait_audit_list'; | |
2713 | 3922 | function request( |
2714 | - option: PostKingdeeRepMeasureUnitOption, | |
2715 | - ): Promise<PostKingdeeRepMeasureUnitResponseSuccess> { | |
3923 | + option: PostOrderErpAuditWaitAuditListOption, | |
3924 | + ): Promise<PostOrderErpAuditWaitAuditListResponseSuccess> { | |
2716 | 3925 | return requester(request.url, { |
2717 | 3926 | method: request.method, |
2718 | 3927 | ...option, |
2719 | - }) as unknown as Promise<PostKingdeeRepMeasureUnitResponseSuccess>; | |
3928 | + }) as unknown as Promise<PostOrderErpAuditWaitAuditListResponseSuccess>; | |
2720 | 3929 | } |
2721 | 3930 | |
2722 | 3931 | /** http method */ |
... | ... | @@ -2726,22 +3935,22 @@ export const postKingdeeRepMeasureUnit = /* #__PURE__ */ (() => { |
2726 | 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 | 3941 | * @description |
2733 | - * salOrderSaveDto | |
3942 | + * loginByPhoneVO | |
2734 | 3943 | */ |
2735 | 3944 | body: { |
2736 | 3945 | /** |
2737 | 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 | 3955 | * @description |
2747 | 3956 | * OK |
... | ... | @@ -2769,25 +3978,25 @@ export interface PostKingdeeRepSalBillOutboundResponse { |
2769 | 3978 | 404: any; |
2770 | 3979 | } |
2771 | 3980 | |
2772 | -export type PostKingdeeRepSalBillOutboundResponseSuccess = | |
2773 | - PostKingdeeRepSalBillOutboundResponse[200]; | |
3981 | +export type PostOrderErpAuthLoginByPhoneResponseSuccess = | |
3982 | + PostOrderErpAuthLoginByPhoneResponse[200]; | |
2774 | 3983 | /** |
2775 | 3984 | * @description |
2776 | - * salBillOutbound | |
2777 | - * @tags kingdee-erp-controller | |
3985 | + * 手机登录 | |
3986 | + * @tags login-controller | |
2778 | 3987 | * @produces * |
2779 | 3988 | * @consumes application/json |
2780 | 3989 | */ |
2781 | -export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() => { | |
3990 | +export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => { | |
2782 | 3991 | const method = 'post'; |
2783 | - const url = '/kingdee/rep/salBillOutbound'; | |
3992 | + const url = '/order/erp/auth/login_by_phone'; | |
2784 | 3993 | function request( |
2785 | - option: PostKingdeeRepSalBillOutboundOption, | |
2786 | - ): Promise<PostKingdeeRepSalBillOutboundResponseSuccess> { | |
3994 | + option: PostOrderErpAuthLoginByPhoneOption, | |
3995 | + ): Promise<PostOrderErpAuthLoginByPhoneResponseSuccess> { | |
2787 | 3996 | return requester(request.url, { |
2788 | 3997 | method: request.method, |
2789 | 3998 | ...option, |
2790 | - }) as unknown as Promise<PostKingdeeRepSalBillOutboundResponseSuccess>; | |
3999 | + }) as unknown as Promise<PostOrderErpAuthLoginByPhoneResponseSuccess>; | |
2791 | 4000 | } |
2792 | 4001 | |
2793 | 4002 | /** http method */ |
... | ... | @@ -2797,22 +4006,22 @@ export const postKingdeeRepSalBillOutbound = /* #__PURE__ */ (() => { |
2797 | 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 | 4012 | * @description |
2804 | - * salOrderSaveDto | |
4013 | + * loginByPwdVO | |
2805 | 4014 | */ |
2806 | 4015 | body: { |
2807 | 4016 | /** |
2808 | 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 | 4026 | * @description |
2818 | 4027 | * OK |
... | ... | @@ -2840,25 +4049,25 @@ export interface PostKingdeeRepSalOrderSaveResponse { |
2840 | 4049 | 404: any; |
2841 | 4050 | } |
2842 | 4051 | |
2843 | -export type PostKingdeeRepSalOrderSaveResponseSuccess = | |
2844 | - PostKingdeeRepSalOrderSaveResponse[200]; | |
4052 | +export type PostOrderErpAuthLoginByPwdResponseSuccess = | |
4053 | + PostOrderErpAuthLoginByPwdResponse[200]; | |
2845 | 4054 | /** |
2846 | 4055 | * @description |
2847 | - * salOrderSave | |
2848 | - * @tags kingdee-erp-controller | |
4056 | + * 用户登录 | |
4057 | + * @tags login-controller | |
2849 | 4058 | * @produces * |
2850 | 4059 | * @consumes application/json |
2851 | 4060 | */ |
2852 | -export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() => { | |
4061 | +export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => { | |
2853 | 4062 | const method = 'post'; |
2854 | - const url = '/kingdee/rep/salOrderSave'; | |
4063 | + const url = '/order/erp/auth/login_by_pwd'; | |
2855 | 4064 | function request( |
2856 | - option: PostKingdeeRepSalOrderSaveOption, | |
2857 | - ): Promise<PostKingdeeRepSalOrderSaveResponseSuccess> { | |
4065 | + option: PostOrderErpAuthLoginByPwdOption, | |
4066 | + ): Promise<PostOrderErpAuthLoginByPwdResponseSuccess> { | |
2858 | 4067 | return requester(request.url, { |
2859 | 4068 | method: request.method, |
2860 | 4069 | ...option, |
2861 | - }) as unknown as Promise<PostKingdeeRepSalOrderSaveResponseSuccess>; | |
4070 | + }) as unknown as Promise<PostOrderErpAuthLoginByPwdResponseSuccess>; | |
2862 | 4071 | } |
2863 | 4072 | |
2864 | 4073 | /** http method */ |
... | ... | @@ -2868,27 +4077,13 @@ export const postKingdeeRepSalOrderSave = /* #__PURE__ */ (() => { |
2868 | 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 | 4083 | * @description |
2889 | 4084 | * OK |
2890 | 4085 | */ |
2891 | - 200: CustomFieldRes; | |
4086 | + 200: ServerResult; | |
2892 | 4087 | /** |
2893 | 4088 | * @description |
2894 | 4089 | * Created |
... | ... | @@ -2911,25 +4106,22 @@ export interface PostKingdeeRepSystemCustomFieldResponse { |
2911 | 4106 | 404: any; |
2912 | 4107 | } |
2913 | 4108 | |
2914 | -export type PostKingdeeRepSystemCustomFieldResponseSuccess = | |
2915 | - PostKingdeeRepSystemCustomFieldResponse[200]; | |
4109 | +export type PostOrderErpAuthLoginOutResponseSuccess = | |
4110 | + PostOrderErpAuthLoginOutResponse[200]; | |
2916 | 4111 | /** |
2917 | 4112 | * @description |
2918 | - * listCustomFields | |
2919 | - * @tags kingdee-erp-controller | |
4113 | + * 退出登录 | |
4114 | + * @tags login-controller | |
2920 | 4115 | * @produces * |
2921 | 4116 | * @consumes application/json |
2922 | 4117 | */ |
2923 | -export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() => { | |
4118 | +export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => { | |
2924 | 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 | 4122 | return requester(request.url, { |
2930 | 4123 | method: request.method, |
2931 | - ...option, | |
2932 | - }) as unknown as Promise<PostKingdeeRepSystemCustomFieldResponseSuccess>; | |
4124 | + }) as unknown as Promise<PostOrderErpAuthLoginOutResponseSuccess>; | |
2933 | 4125 | } |
2934 | 4126 | |
2935 | 4127 | /** http method */ |
... | ... | @@ -2939,22 +4131,22 @@ export const postKingdeeRepSystemCustomField = /* #__PURE__ */ (() => { |
2939 | 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 | 4137 | * @description |
2946 | - * files | |
4138 | + * modifyPwdVO | |
2947 | 4139 | */ |
2948 | - formData: { | |
4140 | + body: { | |
2949 | 4141 | /** |
2950 | 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 | 4151 | * @description |
2960 | 4152 | * OK |
... | ... | @@ -2982,25 +4174,25 @@ export interface PostOfficialWebsiteUploadAliOssResponse { |
2982 | 4174 | 404: any; |
2983 | 4175 | } |
2984 | 4176 | |
2985 | -export type PostOfficialWebsiteUploadAliOssResponseSuccess = | |
2986 | - PostOfficialWebsiteUploadAliOssResponse[200]; | |
4177 | +export type PostOrderErpAuthPasswordModifyResponseSuccess = | |
4178 | + PostOrderErpAuthPasswordModifyResponse[200]; | |
2987 | 4179 | /** |
2988 | 4180 | * @description |
2989 | - * 为官网提供上传文件的接口 | |
2990 | - * @tags 官网 | |
4181 | + * 用户登录 | |
4182 | + * @tags login-controller | |
2991 | 4183 | * @produces * |
2992 | 4184 | * @consumes application/json |
2993 | 4185 | */ |
2994 | -export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() => { | |
4186 | +export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => { | |
2995 | 4187 | const method = 'post'; |
2996 | - const url = '/official/website/uploadAliOss'; | |
4188 | + const url = '/order/erp/auth/password_modify'; | |
2997 | 4189 | function request( |
2998 | - option: PostOfficialWebsiteUploadAliOssOption, | |
2999 | - ): Promise<PostOfficialWebsiteUploadAliOssResponseSuccess> { | |
4190 | + option: PostOrderErpAuthPasswordModifyOption, | |
4191 | + ): Promise<PostOrderErpAuthPasswordModifyResponseSuccess> { | |
3000 | 4192 | return requester(request.url, { |
3001 | 4193 | method: request.method, |
3002 | 4194 | ...option, |
3003 | - }) as unknown as Promise<PostOfficialWebsiteUploadAliOssResponseSuccess>; | |
4195 | + }) as unknown as Promise<PostOrderErpAuthPasswordModifyResponseSuccess>; | |
3004 | 4196 | } |
3005 | 4197 | |
3006 | 4198 | /** http method */ |
... | ... | @@ -3010,22 +4202,22 @@ export const postOfficialWebsiteUploadAliOss = /* #__PURE__ */ (() => { |
3010 | 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 | 4208 | * @description |
3017 | - * orderFieldLockApplyQueryVO | |
4209 | + * registerVO | |
3018 | 4210 | */ |
3019 | 4211 | body: { |
3020 | 4212 | /** |
3021 | 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 | 4222 | * @description |
3031 | 4223 | * OK |
... | ... | @@ -3053,25 +4245,25 @@ export interface PostOrderErpApplyListResponse { |
3053 | 4245 | 404: any; |
3054 | 4246 | } |
3055 | 4247 | |
3056 | -export type PostOrderErpApplyListResponseSuccess = | |
3057 | - PostOrderErpApplyListResponse[200]; | |
4248 | +export type PostOrderErpAuthPhoneRegisterResponseSuccess = | |
4249 | + PostOrderErpAuthPhoneRegisterResponse[200]; | |
3058 | 4250 | /** |
3059 | 4251 | * @description |
3060 | - * 分页查询 | |
3061 | - * @tags 用户订单-字段锁定申请(忽略) | |
4252 | + * 手机注册 | |
4253 | + * @tags login-controller | |
3062 | 4254 | * @produces * |
3063 | 4255 | * @consumes application/json |
3064 | 4256 | */ |
3065 | -export const postOrderErpApplyList = /* #__PURE__ */ (() => { | |
4257 | +export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => { | |
3066 | 4258 | const method = 'post'; |
3067 | - const url = '/order/erp/apply/list'; | |
4259 | + const url = '/order/erp/auth/phone_register'; | |
3068 | 4260 | function request( |
3069 | - option: PostOrderErpApplyListOption, | |
3070 | - ): Promise<PostOrderErpApplyListResponseSuccess> { | |
4261 | + option: PostOrderErpAuthPhoneRegisterOption, | |
4262 | + ): Promise<PostOrderErpAuthPhoneRegisterResponseSuccess> { | |
3071 | 4263 | return requester(request.url, { |
3072 | 4264 | method: request.method, |
3073 | 4265 | ...option, |
3074 | - }) as unknown as Promise<PostOrderErpApplyListResponseSuccess>; | |
4266 | + }) as unknown as Promise<PostOrderErpAuthPhoneRegisterResponseSuccess>; | |
3075 | 4267 | } |
3076 | 4268 | |
3077 | 4269 | /** http method */ |
... | ... | @@ -3081,22 +4273,22 @@ export const postOrderErpApplyList = /* #__PURE__ */ (() => { |
3081 | 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 | 4279 | * @description |
3088 | - * queryVO | |
4280 | + * recoverEmailVO | |
3089 | 4281 | */ |
3090 | 4282 | body: { |
3091 | 4283 | /** |
3092 | 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 | 4293 | * @description |
3102 | 4294 | * OK |
... | ... | @@ -3124,25 +4316,25 @@ export interface PostOrderErpAuditAuditListResponse { |
3124 | 4316 | 404: any; |
3125 | 4317 | } |
3126 | 4318 | |
3127 | -export type PostOrderErpAuditAuditListResponseSuccess = | |
3128 | - PostOrderErpAuditAuditListResponse[200]; | |
4319 | +export type PostOrderErpAuthSendPasswordRecoverMailResponseSuccess = | |
4320 | + PostOrderErpAuthSendPasswordRecoverMailResponse[200]; | |
3129 | 4321 | /** |
3130 | 4322 | * @description |
3131 | - * 已审批列表 | |
3132 | - * @tags 审批管理 | |
4323 | + * sendPasswordRecoverMail | |
4324 | + * @tags login-controller | |
3133 | 4325 | * @produces * |
3134 | 4326 | * @consumes application/json |
3135 | 4327 | */ |
3136 | -export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => { | |
4328 | +export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => { | |
3137 | 4329 | const method = 'post'; |
3138 | - const url = '/order/erp/audit/audit_list'; | |
4330 | + const url = '/order/erp/auth/send_password_recover_mail'; | |
3139 | 4331 | function request( |
3140 | - option: PostOrderErpAuditAuditListOption, | |
3141 | - ): Promise<PostOrderErpAuditAuditListResponseSuccess> { | |
4332 | + option: PostOrderErpAuthSendPasswordRecoverMailOption, | |
4333 | + ): Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess> { | |
3142 | 4334 | return requester(request.url, { |
3143 | 4335 | method: request.method, |
3144 | 4336 | ...option, |
3145 | - }) as unknown as Promise<PostOrderErpAuditAuditListResponseSuccess>; | |
4337 | + }) as unknown as Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess>; | |
3146 | 4338 | } |
3147 | 4339 | |
3148 | 4340 | /** http method */ |
... | ... | @@ -3152,22 +4344,22 @@ export const postOrderErpAuditAuditList = /* #__PURE__ */ (() => { |
3152 | 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 | 4350 | * @description |
3159 | - * auditVO | |
4351 | + * tokenApiDto | |
3160 | 4352 | */ |
3161 | 4353 | body: { |
3162 | 4354 | /** |
3163 | 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 | 4364 | * @description |
3173 | 4365 | * OK |
... | ... | @@ -3195,25 +4387,25 @@ export interface PostOrderErpAuditDoAuditResponse { |
3195 | 4387 | 404: any; |
3196 | 4388 | } |
3197 | 4389 | |
3198 | -export type PostOrderErpAuditDoAuditResponseSuccess = | |
3199 | - PostOrderErpAuditDoAuditResponse[200]; | |
4390 | +export type PostOrderErpAuthTokenResponseSuccess = | |
4391 | + PostOrderErpAuthTokenResponse[200]; | |
3200 | 4392 | /** |
3201 | 4393 | * @description |
3202 | - * 审核 | |
3203 | - * @tags 审批管理 | |
4394 | + * 获取token | |
4395 | + * @tags login-controller | |
3204 | 4396 | * @produces * |
3205 | 4397 | * @consumes application/json |
3206 | 4398 | */ |
3207 | -export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => { | |
4399 | +export const postOrderErpAuthToken = /* #__PURE__ */ (() => { | |
3208 | 4400 | const method = 'post'; |
3209 | - const url = '/order/erp/audit/do_audit'; | |
4401 | + const url = '/order/erp/auth/token'; | |
3210 | 4402 | function request( |
3211 | - option: PostOrderErpAuditDoAuditOption, | |
3212 | - ): Promise<PostOrderErpAuditDoAuditResponseSuccess> { | |
4403 | + option: PostOrderErpAuthTokenOption, | |
4404 | + ): Promise<PostOrderErpAuthTokenResponseSuccess> { | |
3213 | 4405 | return requester(request.url, { |
3214 | 4406 | method: request.method, |
3215 | 4407 | ...option, |
3216 | - }) as unknown as Promise<PostOrderErpAuditDoAuditResponseSuccess>; | |
4408 | + }) as unknown as Promise<PostOrderErpAuthTokenResponseSuccess>; | |
3217 | 4409 | } |
3218 | 4410 | |
3219 | 4411 | /** http method */ |
... | ... | @@ -3223,22 +4415,8 @@ export const postOrderErpAuditDoAudit = /* #__PURE__ */ (() => { |
3223 | 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 | 4421 | * @description |
3244 | 4422 | * OK |
... | ... | @@ -3266,25 +4444,22 @@ export interface PostOrderErpAuditListByPageResponse { |
3266 | 4444 | 404: any; |
3267 | 4445 | } |
3268 | 4446 | |
3269 | -export type PostOrderErpAuditListByPageResponseSuccess = | |
3270 | - PostOrderErpAuditListByPageResponse[200]; | |
4447 | +export type PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess = | |
4448 | + PostOrderErpCaptchaGetImgCaptchaCodeResponse[200]; | |
3271 | 4449 | /** |
3272 | 4450 | * @description |
3273 | - * 分页查询 | |
3274 | - * @tags 审批管理 | |
4451 | + * 获取图片验证码 | |
4452 | + * @tags 验证码 | |
3275 | 4453 | * @produces * |
3276 | 4454 | * @consumes application/json |
3277 | 4455 | */ |
3278 | -export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => { | |
4456 | +export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() => { | |
3279 | 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 | 4460 | return requester(request.url, { |
3285 | 4461 | method: request.method, |
3286 | - ...option, | |
3287 | - }) as unknown as Promise<PostOrderErpAuditListByPageResponseSuccess>; | |
4462 | + }) as unknown as Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess>; | |
3288 | 4463 | } |
3289 | 4464 | |
3290 | 4465 | /** http method */ |
... | ... | @@ -3294,22 +4469,22 @@ export const postOrderErpAuditListByPage = /* #__PURE__ */ (() => { |
3294 | 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 | 4475 | * @description |
3301 | - * orderAuditLogQueryVO | |
4476 | + * msgVo | |
3302 | 4477 | */ |
3303 | 4478 | body: { |
3304 | 4479 | /** |
3305 | 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 | 4489 | * @description |
3315 | 4490 | * OK |
... | ... | @@ -3337,25 +4512,25 @@ export interface PostOrderErpAuditLogListByPageResponse { |
3337 | 4512 | 404: any; |
3338 | 4513 | } |
3339 | 4514 | |
3340 | -export type PostOrderErpAuditLogListByPageResponseSuccess = | |
3341 | - PostOrderErpAuditLogListByPageResponse[200]; | |
4515 | +export type PostOrderErpCaptchaSendCaptchaCodeResponseSuccess = | |
4516 | + PostOrderErpCaptchaSendCaptchaCodeResponse[200]; | |
3342 | 4517 | /** |
3343 | 4518 | * @description |
3344 | - * 分页查询 | |
3345 | - * @tags 用户订单审批日志 | |
4519 | + * 获取验证码 | |
4520 | + * @tags 验证码 | |
3346 | 4521 | * @produces * |
3347 | 4522 | * @consumes application/json |
3348 | 4523 | */ |
3349 | -export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => { | |
4524 | +export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() => { | |
3350 | 4525 | const method = 'post'; |
3351 | - const url = '/order/erp/audit/log/list_by_page'; | |
4526 | + const url = '/order/erp/captcha/send_captcha_code'; | |
3352 | 4527 | function request( |
3353 | - option: PostOrderErpAuditLogListByPageOption, | |
3354 | - ): Promise<PostOrderErpAuditLogListByPageResponseSuccess> { | |
4528 | + option: PostOrderErpCaptchaSendCaptchaCodeOption, | |
4529 | + ): Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess> { | |
3355 | 4530 | return requester(request.url, { |
3356 | 4531 | method: request.method, |
3357 | 4532 | ...option, |
3358 | - }) as unknown as Promise<PostOrderErpAuditLogListByPageResponseSuccess>; | |
4533 | + }) as unknown as Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess>; | |
3359 | 4534 | } |
3360 | 4535 | |
3361 | 4536 | /** http method */ |
... | ... | @@ -3365,22 +4540,22 @@ export const postOrderErpAuditLogListByPage = /* #__PURE__ */ (() => { |
3365 | 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 | 4546 | * @description |
3372 | - * orderAuditLogQueryVO | |
4547 | + * deptVO | |
3373 | 4548 | */ |
3374 | 4549 | body: { |
3375 | 4550 | /** |
3376 | 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 | 4560 | * @description |
3386 | 4561 | * OK |
... | ... | @@ -3408,25 +4583,24 @@ export interface PostOrderErpAuditLogQueryByIdResponse { |
3408 | 4583 | 404: any; |
3409 | 4584 | } |
3410 | 4585 | |
3411 | -export type PostOrderErpAuditLogQueryByIdResponseSuccess = | |
3412 | - PostOrderErpAuditLogQueryByIdResponse[200]; | |
4586 | +export type PutOrderErpDeptsResponseSuccess = PutOrderErpDeptsResponse[200]; | |
3413 | 4587 | /** |
3414 | 4588 | * @description |
3415 | - * 通过主键查询单条数据 | |
3416 | - * @tags 用户订单审批日志 | |
4589 | + * 修改部门 | |
4590 | + * @tags 系统:部门管理 | |
3417 | 4591 | * @produces * |
3418 | 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 | 4597 | function request( |
3424 | - option: PostOrderErpAuditLogQueryByIdOption, | |
3425 | - ): Promise<PostOrderErpAuditLogQueryByIdResponseSuccess> { | |
4598 | + option: PutOrderErpDeptsOption, | |
4599 | + ): Promise<PutOrderErpDeptsResponseSuccess> { | |
3426 | 4600 | return requester(request.url, { |
3427 | 4601 | method: request.method, |
3428 | 4602 | ...option, |
3429 | - }) as unknown as Promise<PostOrderErpAuditLogQueryByIdResponseSuccess>; | |
4603 | + }) as unknown as Promise<PutOrderErpDeptsResponseSuccess>; | |
3430 | 4604 | } |
3431 | 4605 | |
3432 | 4606 | /** http method */ |
... | ... | @@ -3436,8 +4610,8 @@ export const postOrderErpAuditLogQueryById = /* #__PURE__ */ (() => { |
3436 | 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 | 4616 | * @description |
3443 | 4617 | * queryVO |
... | ... | @@ -3446,12 +4620,12 @@ export interface PostOrderErpAuditWaitAuditListOption { |
3446 | 4620 | /** |
3447 | 4621 | @description |
3448 | 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 | 4630 | * @description |
3457 | 4631 | * OK |
... | ... | @@ -3459,9 +4633,9 @@ export interface PostOrderErpAuditWaitAuditListResponse { |
3459 | 4633 | 200: ServerResult; |
3460 | 4634 | /** |
3461 | 4635 | * @description |
3462 | - * Created | |
4636 | + * No Content | |
3463 | 4637 | */ |
3464 | - 201: any; | |
4638 | + 204: any; | |
3465 | 4639 | /** |
3466 | 4640 | * @description |
3467 | 4641 | * Unauthorized |
... | ... | @@ -3472,32 +4646,26 @@ export interface PostOrderErpAuditWaitAuditListResponse { |
3472 | 4646 | * Forbidden |
3473 | 4647 | */ |
3474 | 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 | 4654 | * @description |
3486 | - * 待审批列表 | |
3487 | - * @tags 审批管理 | |
4655 | + * 删除部门 | |
4656 | + * @tags 系统:部门管理 | |
3488 | 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 | 4662 | function request( |
3495 | - option: PostOrderErpAuditWaitAuditListOption, | |
3496 | - ): Promise<PostOrderErpAuditWaitAuditListResponseSuccess> { | |
4663 | + option: DeleteOrderErpDeptsOption, | |
4664 | + ): Promise<DeleteOrderErpDeptsResponseSuccess> { | |
3497 | 4665 | return requester(request.url, { |
3498 | 4666 | method: request.method, |
3499 | 4667 | ...option, |
3500 | - }) as unknown as Promise<PostOrderErpAuditWaitAuditListResponseSuccess>; | |
4668 | + }) as unknown as Promise<DeleteOrderErpDeptsResponseSuccess>; | |
3501 | 4669 | } |
3502 | 4670 | |
3503 | 4671 | /** http method */ |
... | ... | @@ -3507,22 +4675,22 @@ export const postOrderErpAuditWaitAuditList = /* #__PURE__ */ (() => { |
3507 | 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 | 4681 | * @description |
3514 | - * loginByPhoneVO | |
4682 | + * deptVO | |
3515 | 4683 | */ |
3516 | 4684 | body: { |
3517 | 4685 | /** |
3518 | 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 | 4695 | * @description |
3528 | 4696 | * OK |
... | ... | @@ -3550,25 +4718,25 @@ export interface PostOrderErpAuthLoginByPhoneResponse { |
3550 | 4718 | 404: any; |
3551 | 4719 | } |
3552 | 4720 | |
3553 | -export type PostOrderErpAuthLoginByPhoneResponseSuccess = | |
3554 | - PostOrderErpAuthLoginByPhoneResponse[200]; | |
4721 | +export type PostOrderErpDeptsAddResponseSuccess = | |
4722 | + PostOrderErpDeptsAddResponse[200]; | |
3555 | 4723 | /** |
3556 | 4724 | * @description |
3557 | - * 手机登录 | |
3558 | - * @tags login-controller | |
4725 | + * 新增部门 | |
4726 | + * @tags 系统:部门管理 | |
3559 | 4727 | * @produces * |
3560 | 4728 | * @consumes application/json |
3561 | 4729 | */ |
3562 | -export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => { | |
4730 | +export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => { | |
3563 | 4731 | const method = 'post'; |
3564 | - const url = '/order/erp/auth/login_by_phone'; | |
4732 | + const url = '/order/erp/depts/add'; | |
3565 | 4733 | function request( |
3566 | - option: PostOrderErpAuthLoginByPhoneOption, | |
3567 | - ): Promise<PostOrderErpAuthLoginByPhoneResponseSuccess> { | |
4734 | + option: PostOrderErpDeptsAddOption, | |
4735 | + ): Promise<PostOrderErpDeptsAddResponseSuccess> { | |
3568 | 4736 | return requester(request.url, { |
3569 | 4737 | method: request.method, |
3570 | 4738 | ...option, |
3571 | - }) as unknown as Promise<PostOrderErpAuthLoginByPhoneResponseSuccess>; | |
4739 | + }) as unknown as Promise<PostOrderErpDeptsAddResponseSuccess>; | |
3572 | 4740 | } |
3573 | 4741 | |
3574 | 4742 | /** http method */ |
... | ... | @@ -3578,22 +4746,22 @@ export const postOrderErpAuthLoginByPhone = /* #__PURE__ */ (() => { |
3578 | 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 | 4752 | * @description |
3585 | - * loginByPwdVO | |
4753 | + * queryVO | |
3586 | 4754 | */ |
3587 | 4755 | body: { |
3588 | 4756 | /** |
3589 | 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 | 4766 | * @description |
3599 | 4767 | * OK |
... | ... | @@ -3621,25 +4789,25 @@ export interface PostOrderErpAuthLoginByPwdResponse { |
3621 | 4789 | 404: any; |
3622 | 4790 | } |
3623 | 4791 | |
3624 | -export type PostOrderErpAuthLoginByPwdResponseSuccess = | |
3625 | - PostOrderErpAuthLoginByPwdResponse[200]; | |
4792 | +export type PostOrderErpDeptsListByPageResponseSuccess = | |
4793 | + PostOrderErpDeptsListByPageResponse[200]; | |
3626 | 4794 | /** |
3627 | 4795 | * @description |
3628 | - * 用户登录 | |
3629 | - * @tags login-controller | |
4796 | + * 查询部门 | |
4797 | + * @tags 系统:部门管理 | |
3630 | 4798 | * @produces * |
3631 | 4799 | * @consumes application/json |
3632 | 4800 | */ |
3633 | -export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => { | |
4801 | +export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => { | |
3634 | 4802 | const method = 'post'; |
3635 | - const url = '/order/erp/auth/login_by_pwd'; | |
4803 | + const url = '/order/erp/depts/list_by_page'; | |
3636 | 4804 | function request( |
3637 | - option: PostOrderErpAuthLoginByPwdOption, | |
3638 | - ): Promise<PostOrderErpAuthLoginByPwdResponseSuccess> { | |
4805 | + option: PostOrderErpDeptsListByPageOption, | |
4806 | + ): Promise<PostOrderErpDeptsListByPageResponseSuccess> { | |
3639 | 4807 | return requester(request.url, { |
3640 | 4808 | method: request.method, |
3641 | 4809 | ...option, |
3642 | - }) as unknown as Promise<PostOrderErpAuthLoginByPwdResponseSuccess>; | |
4810 | + }) as unknown as Promise<PostOrderErpDeptsListByPageResponseSuccess>; | |
3643 | 4811 | } |
3644 | 4812 | |
3645 | 4813 | /** http method */ |
... | ... | @@ -3649,8 +4817,22 @@ export const postOrderErpAuthLoginByPwd = /* #__PURE__ */ (() => { |
3649 | 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 | 4837 | * @description |
3656 | 4838 | * OK |
... | ... | @@ -3678,22 +4860,25 @@ export interface PostOrderErpAuthLoginOutResponse { |
3678 | 4860 | 404: any; |
3679 | 4861 | } |
3680 | 4862 | |
3681 | -export type PostOrderErpAuthLoginOutResponseSuccess = | |
3682 | - PostOrderErpAuthLoginOutResponse[200]; | |
4863 | +export type PostOrderErpDictionaryAddResponseSuccess = | |
4864 | + PostOrderErpDictionaryAddResponse[200]; | |
3683 | 4865 | /** |
3684 | 4866 | * @description |
3685 | - * 退出登录 | |
3686 | - * @tags login-controller | |
4867 | + * 新增字典 | |
4868 | + * @tags 系统:字典管理 | |
3687 | 4869 | * @produces * |
3688 | 4870 | * @consumes application/json |
3689 | 4871 | */ |
3690 | -export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => { | |
4872 | +export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => { | |
3691 | 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 | 4878 | return requester(request.url, { |
3695 | 4879 | method: request.method, |
3696 | - }) as unknown as Promise<PostOrderErpAuthLoginOutResponseSuccess>; | |
4880 | + ...option, | |
4881 | + }) as unknown as Promise<PostOrderErpDictionaryAddResponseSuccess>; | |
3697 | 4882 | } |
3698 | 4883 | |
3699 | 4884 | /** http method */ |
... | ... | @@ -3703,22 +4888,22 @@ export const postOrderErpAuthLoginOut = /* #__PURE__ */ (() => { |
3703 | 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 | 4894 | * @description |
3710 | - * modifyPwdVO | |
4895 | + * queryVO | |
3711 | 4896 | */ |
3712 | 4897 | body: { |
3713 | 4898 | /** |
3714 | 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 | 4908 | * @description |
3724 | 4909 | * OK |
... | ... | @@ -3746,25 +4931,25 @@ export interface PostOrderErpAuthPasswordModifyResponse { |
3746 | 4931 | 404: any; |
3747 | 4932 | } |
3748 | 4933 | |
3749 | -export type PostOrderErpAuthPasswordModifyResponseSuccess = | |
3750 | - PostOrderErpAuthPasswordModifyResponse[200]; | |
4934 | +export type PostOrderErpDictionaryDeleteResponseSuccess = | |
4935 | + PostOrderErpDictionaryDeleteResponse[200]; | |
3751 | 4936 | /** |
3752 | 4937 | * @description |
3753 | - * 用户登录 | |
3754 | - * @tags login-controller | |
4938 | + * 删除字典 | |
4939 | + * @tags 系统:字典管理 | |
3755 | 4940 | * @produces * |
3756 | 4941 | * @consumes application/json |
3757 | 4942 | */ |
3758 | -export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => { | |
4943 | +export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => { | |
3759 | 4944 | const method = 'post'; |
3760 | - const url = '/order/erp/auth/password_modify'; | |
4945 | + const url = '/order/erp/dictionary/delete'; | |
3761 | 4946 | function request( |
3762 | - option: PostOrderErpAuthPasswordModifyOption, | |
3763 | - ): Promise<PostOrderErpAuthPasswordModifyResponseSuccess> { | |
4947 | + option: PostOrderErpDictionaryDeleteOption, | |
4948 | + ): Promise<PostOrderErpDictionaryDeleteResponseSuccess> { | |
3764 | 4949 | return requester(request.url, { |
3765 | 4950 | method: request.method, |
3766 | 4951 | ...option, |
3767 | - }) as unknown as Promise<PostOrderErpAuthPasswordModifyResponseSuccess>; | |
4952 | + }) as unknown as Promise<PostOrderErpDictionaryDeleteResponseSuccess>; | |
3768 | 4953 | } |
3769 | 4954 | |
3770 | 4955 | /** http method */ |
... | ... | @@ -3774,22 +4959,22 @@ export const postOrderErpAuthPasswordModify = /* #__PURE__ */ (() => { |
3774 | 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 | 4965 | * @description |
3781 | - * registerVO | |
4966 | + * dictionaryVO | |
3782 | 4967 | */ |
3783 | 4968 | body: { |
3784 | 4969 | /** |
3785 | 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 | 4979 | * @description |
3795 | 4980 | * OK |
... | ... | @@ -3817,25 +5002,25 @@ export interface PostOrderErpAuthPhoneRegisterResponse { |
3817 | 5002 | 404: any; |
3818 | 5003 | } |
3819 | 5004 | |
3820 | -export type PostOrderErpAuthPhoneRegisterResponseSuccess = | |
3821 | - PostOrderErpAuthPhoneRegisterResponse[200]; | |
5005 | +export type PostOrderErpDictionaryEditResponseSuccess = | |
5006 | + PostOrderErpDictionaryEditResponse[200]; | |
3822 | 5007 | /** |
3823 | 5008 | * @description |
3824 | - * 手机注册 | |
3825 | - * @tags login-controller | |
5009 | + * 修改字典 | |
5010 | + * @tags 系统:字典管理 | |
3826 | 5011 | * @produces * |
3827 | 5012 | * @consumes application/json |
3828 | 5013 | */ |
3829 | -export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => { | |
5014 | +export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => { | |
3830 | 5015 | const method = 'post'; |
3831 | - const url = '/order/erp/auth/phone_register'; | |
5016 | + const url = '/order/erp/dictionary/edit'; | |
3832 | 5017 | function request( |
3833 | - option: PostOrderErpAuthPhoneRegisterOption, | |
3834 | - ): Promise<PostOrderErpAuthPhoneRegisterResponseSuccess> { | |
5018 | + option: PostOrderErpDictionaryEditOption, | |
5019 | + ): Promise<PostOrderErpDictionaryEditResponseSuccess> { | |
3835 | 5020 | return requester(request.url, { |
3836 | 5021 | method: request.method, |
3837 | 5022 | ...option, |
3838 | - }) as unknown as Promise<PostOrderErpAuthPhoneRegisterResponseSuccess>; | |
5023 | + }) as unknown as Promise<PostOrderErpDictionaryEditResponseSuccess>; | |
3839 | 5024 | } |
3840 | 5025 | |
3841 | 5026 | /** http method */ |
... | ... | @@ -3845,22 +5030,22 @@ export const postOrderErpAuthPhoneRegister = /* #__PURE__ */ (() => { |
3845 | 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 | 5036 | * @description |
3852 | - * recoverEmailVO | |
5037 | + * queryVO | |
3853 | 5038 | */ |
3854 | 5039 | body: { |
3855 | 5040 | /** |
3856 | 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 | 5050 | * @description |
3866 | 5051 | * OK |
... | ... | @@ -3888,25 +5073,25 @@ export interface PostOrderErpAuthSendPasswordRecoverMailResponse { |
3888 | 5073 | 404: any; |
3889 | 5074 | } |
3890 | 5075 | |
3891 | -export type PostOrderErpAuthSendPasswordRecoverMailResponseSuccess = | |
3892 | - PostOrderErpAuthSendPasswordRecoverMailResponse[200]; | |
5076 | +export type PostOrderErpDictionaryGetAllResponseSuccess = | |
5077 | + PostOrderErpDictionaryGetAllResponse[200]; | |
3893 | 5078 | /** |
3894 | 5079 | * @description |
3895 | - * sendPasswordRecoverMail | |
3896 | - * @tags login-controller | |
5080 | + * 获取所有字典 | |
5081 | + * @tags 系统:字典管理 | |
3897 | 5082 | * @produces * |
3898 | 5083 | * @consumes application/json |
3899 | 5084 | */ |
3900 | -export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => { | |
5085 | +export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => { | |
3901 | 5086 | const method = 'post'; |
3902 | - const url = '/order/erp/auth/send_password_recover_mail'; | |
5087 | + const url = '/order/erp/dictionary/get_all'; | |
3903 | 5088 | function request( |
3904 | - option: PostOrderErpAuthSendPasswordRecoverMailOption, | |
3905 | - ): Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess> { | |
5089 | + option: PostOrderErpDictionaryGetAllOption, | |
5090 | + ): Promise<PostOrderErpDictionaryGetAllResponseSuccess> { | |
3906 | 5091 | return requester(request.url, { |
3907 | 5092 | method: request.method, |
3908 | 5093 | ...option, |
3909 | - }) as unknown as Promise<PostOrderErpAuthSendPasswordRecoverMailResponseSuccess>; | |
5094 | + }) as unknown as Promise<PostOrderErpDictionaryGetAllResponseSuccess>; | |
3910 | 5095 | } |
3911 | 5096 | |
3912 | 5097 | /** http method */ |
... | ... | @@ -3916,22 +5101,22 @@ export const postOrderErpAuthSendPasswordRecoverMail = /* #__PURE__ */ (() => { |
3916 | 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 | 5107 | * @description |
3923 | - * tokenApiDto | |
5108 | + * queryVO | |
3924 | 5109 | */ |
3925 | 5110 | body: { |
3926 | 5111 | /** |
3927 | 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 | 5121 | * @description |
3937 | 5122 | * OK |
... | ... | @@ -3959,25 +5144,25 @@ export interface PostOrderErpAuthTokenResponse { |
3959 | 5144 | 404: any; |
3960 | 5145 | } |
3961 | 5146 | |
3962 | -export type PostOrderErpAuthTokenResponseSuccess = | |
3963 | - PostOrderErpAuthTokenResponse[200]; | |
5147 | +export type PostOrderErpDictionaryListByPageResponseSuccess = | |
5148 | + PostOrderErpDictionaryListByPageResponse[200]; | |
3964 | 5149 | /** |
3965 | 5150 | * @description |
3966 | - * 获取token | |
3967 | - * @tags login-controller | |
5151 | + * 查询字典列表 | |
5152 | + * @tags 系统:字典管理 | |
3968 | 5153 | * @produces * |
3969 | 5154 | * @consumes application/json |
3970 | 5155 | */ |
3971 | -export const postOrderErpAuthToken = /* #__PURE__ */ (() => { | |
5156 | +export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => { | |
3972 | 5157 | const method = 'post'; |
3973 | - const url = '/order/erp/auth/token'; | |
5158 | + const url = '/order/erp/dictionary/list_by_page'; | |
3974 | 5159 | function request( |
3975 | - option: PostOrderErpAuthTokenOption, | |
3976 | - ): Promise<PostOrderErpAuthTokenResponseSuccess> { | |
5160 | + option: PostOrderErpDictionaryListByPageOption, | |
5161 | + ): Promise<PostOrderErpDictionaryListByPageResponseSuccess> { | |
3977 | 5162 | return requester(request.url, { |
3978 | 5163 | method: request.method, |
3979 | 5164 | ...option, |
3980 | - }) as unknown as Promise<PostOrderErpAuthTokenResponseSuccess>; | |
5165 | + }) as unknown as Promise<PostOrderErpDictionaryListByPageResponseSuccess>; | |
3981 | 5166 | } |
3982 | 5167 | |
3983 | 5168 | /** http method */ |
... | ... | @@ -3987,8 +5172,8 @@ export const postOrderErpAuthToken = /* #__PURE__ */ (() => { |
3987 | 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 | 5178 | * @description |
3994 | 5179 | * OK |
... | ... | @@ -3996,11 +5181,6 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse { |
3996 | 5181 | 200: ServerResult; |
3997 | 5182 | /** |
3998 | 5183 | * @description |
3999 | - * Created | |
4000 | - */ | |
4001 | - 201: any; | |
4002 | - /** | |
4003 | - * @description | |
4004 | 5184 | * Unauthorized |
4005 | 5185 | */ |
4006 | 5186 | 401: any; |
... | ... | @@ -4016,22 +5196,21 @@ export interface PostOrderErpCaptchaGetImgCaptchaCodeResponse { |
4016 | 5196 | 404: any; |
4017 | 5197 | } |
4018 | 5198 | |
4019 | -export type PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess = | |
4020 | - PostOrderErpCaptchaGetImgCaptchaCodeResponse[200]; | |
5199 | +export type GetOrderErpIndexChartDataResponseSuccess = | |
5200 | + GetOrderErpIndexChartDataResponse[200]; | |
4021 | 5201 | /** |
4022 | 5202 | * @description |
4023 | - * 获取图片验证码 | |
4024 | - * @tags 验证码 | |
5203 | + * 首页订单趋势 | |
5204 | + * @tags 首页 | |
4025 | 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 | 5211 | return requester(request.url, { |
4033 | 5212 | method: request.method, |
4034 | - }) as unknown as Promise<PostOrderErpCaptchaGetImgCaptchaCodeResponseSuccess>; | |
5213 | + }) as unknown as Promise<GetOrderErpIndexChartDataResponseSuccess>; | |
4035 | 5214 | } |
4036 | 5215 | |
4037 | 5216 | /** http method */ |
... | ... | @@ -4041,22 +5220,8 @@ export const postOrderErpCaptchaGetImgCaptchaCode = /* #__PURE__ */ (() => { |
4041 | 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 | 5226 | * @description |
4062 | 5227 | * OK |
... | ... | @@ -4064,11 +5229,6 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse { |
4064 | 5229 | 200: ServerResult; |
4065 | 5230 | /** |
4066 | 5231 | * @description |
4067 | - * Created | |
4068 | - */ | |
4069 | - 201: any; | |
4070 | - /** | |
4071 | - * @description | |
4072 | 5232 | * Unauthorized |
4073 | 5233 | */ |
4074 | 5234 | 401: any; |
... | ... | @@ -4084,25 +5244,21 @@ export interface PostOrderErpCaptchaSendCaptchaCodeResponse { |
4084 | 5244 | 404: any; |
4085 | 5245 | } |
4086 | 5246 | |
4087 | -export type PostOrderErpCaptchaSendCaptchaCodeResponseSuccess = | |
4088 | - PostOrderErpCaptchaSendCaptchaCodeResponse[200]; | |
5247 | +export type GetOrderErpIndexDataResponseSuccess = | |
5248 | + GetOrderErpIndexDataResponse[200]; | |
4089 | 5249 | /** |
4090 | 5250 | * @description |
4091 | - * 获取验证码 | |
4092 | - * @tags 验证码 | |
5251 | + * 首页统计数据 | |
5252 | + * @tags 首页 | |
4093 | 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 | 5259 | return requester(request.url, { |
4103 | 5260 | method: request.method, |
4104 | - ...option, | |
4105 | - }) as unknown as Promise<PostOrderErpCaptchaSendCaptchaCodeResponseSuccess>; | |
5261 | + }) as unknown as Promise<GetOrderErpIndexDataResponseSuccess>; | |
4106 | 5262 | } |
4107 | 5263 | |
4108 | 5264 | /** http method */ |
... | ... | @@ -4112,22 +5268,22 @@ export const postOrderErpCaptchaSendCaptchaCode = /* #__PURE__ */ (() => { |
4112 | 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 | 5274 | * @description |
4119 | - * deptVO | |
5275 | + * jobVO | |
4120 | 5276 | */ |
4121 | 5277 | body: { |
4122 | 5278 | /** |
4123 | 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 | 5288 | * @description |
4133 | 5289 | * OK |
... | ... | @@ -4155,24 +5311,25 @@ export interface PutOrderErpDeptsResponse { |
4155 | 5311 | 404: any; |
4156 | 5312 | } |
4157 | 5313 | |
4158 | -export type PutOrderErpDeptsResponseSuccess = PutOrderErpDeptsResponse[200]; | |
5314 | +export type PostOrderErpJobsAddResponseSuccess = | |
5315 | + PostOrderErpJobsAddResponse[200]; | |
4159 | 5316 | /** |
4160 | 5317 | * @description |
4161 | - * 修改部门 | |
4162 | - * @tags 系统:部门管理 | |
5318 | + * 新增岗位 | |
5319 | + * @tags 系统:岗位管理 | |
4163 | 5320 | * @produces * |
4164 | 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 | 5326 | function request( |
4170 | - option: PutOrderErpDeptsOption, | |
4171 | - ): Promise<PutOrderErpDeptsResponseSuccess> { | |
5327 | + option: PostOrderErpJobsAddOption, | |
5328 | + ): Promise<PostOrderErpJobsAddResponseSuccess> { | |
4172 | 5329 | return requester(request.url, { |
4173 | 5330 | method: request.method, |
4174 | 5331 | ...option, |
4175 | - }) as unknown as Promise<PutOrderErpDeptsResponseSuccess>; | |
5332 | + }) as unknown as Promise<PostOrderErpJobsAddResponseSuccess>; | |
4176 | 5333 | } |
4177 | 5334 | |
4178 | 5335 | /** http method */ |
... | ... | @@ -4182,8 +5339,8 @@ export const putOrderErpDepts = /* #__PURE__ */ (() => { |
4182 | 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 | 5345 | * @description |
4189 | 5346 | * queryVO |
... | ... | @@ -4192,12 +5349,12 @@ export interface DeleteOrderErpDeptsOption { |
4192 | 5349 | /** |
4193 | 5350 | @description |
4194 | 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 | 5359 | * @description |
4203 | 5360 | * OK |
... | ... | @@ -4205,9 +5362,9 @@ export interface DeleteOrderErpDeptsResponse { |
4205 | 5362 | 200: ServerResult; |
4206 | 5363 | /** |
4207 | 5364 | * @description |
4208 | - * No Content | |
5365 | + * Created | |
4209 | 5366 | */ |
4210 | - 204: any; | |
5367 | + 201: any; | |
4211 | 5368 | /** |
4212 | 5369 | * @description |
4213 | 5370 | * Unauthorized |
... | ... | @@ -4218,26 +5375,32 @@ export interface DeleteOrderErpDeptsResponse { |
4218 | 5375 | * Forbidden |
4219 | 5376 | */ |
4220 | 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 | 5388 | * @description |
4227 | - * 删除部门 | |
4228 | - * @tags 系统:部门管理 | |
5389 | + * 删除岗位 | |
5390 | + * @tags 系统:岗位管理 | |
4229 | 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 | 5397 | function request( |
4235 | - option: DeleteOrderErpDeptsOption, | |
4236 | - ): Promise<DeleteOrderErpDeptsResponseSuccess> { | |
5398 | + option: PostOrderErpJobsDeleteOption, | |
5399 | + ): Promise<PostOrderErpJobsDeleteResponseSuccess> { | |
4237 | 5400 | return requester(request.url, { |
4238 | 5401 | method: request.method, |
4239 | 5402 | ...option, |
4240 | - }) as unknown as Promise<DeleteOrderErpDeptsResponseSuccess>; | |
5403 | + }) as unknown as Promise<PostOrderErpJobsDeleteResponseSuccess>; | |
4241 | 5404 | } |
4242 | 5405 | |
4243 | 5406 | /** http method */ |
... | ... | @@ -4247,22 +5410,22 @@ export const deleteOrderErpDepts = /* #__PURE__ */ (() => { |
4247 | 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 | 5416 | * @description |
4254 | - * deptVO | |
5417 | + * jobVO | |
4255 | 5418 | */ |
4256 | 5419 | body: { |
4257 | 5420 | /** |
4258 | 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 | 5430 | * @description |
4268 | 5431 | * OK |
... | ... | @@ -4290,25 +5453,25 @@ export interface PostOrderErpDeptsAddResponse { |
4290 | 5453 | 404: any; |
4291 | 5454 | } |
4292 | 5455 | |
4293 | -export type PostOrderErpDeptsAddResponseSuccess = | |
4294 | - PostOrderErpDeptsAddResponse[200]; | |
5456 | +export type PostOrderErpJobsEditResponseSuccess = | |
5457 | + PostOrderErpJobsEditResponse[200]; | |
4295 | 5458 | /** |
4296 | 5459 | * @description |
4297 | - * 新增部门 | |
4298 | - * @tags 系统:部门管理 | |
5460 | + * 修改岗位 | |
5461 | + * @tags 系统:岗位管理 | |
4299 | 5462 | * @produces * |
4300 | 5463 | * @consumes application/json |
4301 | 5464 | */ |
4302 | -export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => { | |
5465 | +export const postOrderErpJobsEdit = /* #__PURE__ */ (() => { | |
4303 | 5466 | const method = 'post'; |
4304 | - const url = '/order/erp/depts/add'; | |
5467 | + const url = '/order/erp/jobs/edit'; | |
4305 | 5468 | function request( |
4306 | - option: PostOrderErpDeptsAddOption, | |
4307 | - ): Promise<PostOrderErpDeptsAddResponseSuccess> { | |
5469 | + option: PostOrderErpJobsEditOption, | |
5470 | + ): Promise<PostOrderErpJobsEditResponseSuccess> { | |
4308 | 5471 | return requester(request.url, { |
4309 | 5472 | method: request.method, |
4310 | 5473 | ...option, |
4311 | - }) as unknown as Promise<PostOrderErpDeptsAddResponseSuccess>; | |
5474 | + }) as unknown as Promise<PostOrderErpJobsEditResponseSuccess>; | |
4312 | 5475 | } |
4313 | 5476 | |
4314 | 5477 | /** http method */ |
... | ... | @@ -4318,8 +5481,8 @@ export const postOrderErpDeptsAdd = /* #__PURE__ */ (() => { |
4318 | 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 | 5487 | * @description |
4325 | 5488 | * queryVO |
... | ... | @@ -4328,12 +5491,12 @@ export interface PostOrderErpDeptsListByPageOption { |
4328 | 5491 | /** |
4329 | 5492 | @description |
4330 | 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 | 5501 | * @description |
4339 | 5502 | * OK |
... | ... | @@ -4361,25 +5524,25 @@ export interface PostOrderErpDeptsListByPageResponse { |
4361 | 5524 | 404: any; |
4362 | 5525 | } |
4363 | 5526 | |
4364 | -export type PostOrderErpDeptsListByPageResponseSuccess = | |
4365 | - PostOrderErpDeptsListByPageResponse[200]; | |
5527 | +export type PostOrderErpJobsListByPageResponseSuccess = | |
5528 | + PostOrderErpJobsListByPageResponse[200]; | |
4366 | 5529 | /** |
4367 | 5530 | * @description |
4368 | - * 查询部门 | |
4369 | - * @tags 系统:部门管理 | |
5531 | + * 查询岗位 | |
5532 | + * @tags 系统:岗位管理 | |
4370 | 5533 | * @produces * |
4371 | 5534 | * @consumes application/json |
4372 | 5535 | */ |
4373 | -export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => { | |
5536 | +export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => { | |
4374 | 5537 | const method = 'post'; |
4375 | - const url = '/order/erp/depts/list_by_page'; | |
5538 | + const url = '/order/erp/jobs/list_by_page'; | |
4376 | 5539 | function request( |
4377 | - option: PostOrderErpDeptsListByPageOption, | |
4378 | - ): Promise<PostOrderErpDeptsListByPageResponseSuccess> { | |
5540 | + option: PostOrderErpJobsListByPageOption, | |
5541 | + ): Promise<PostOrderErpJobsListByPageResponseSuccess> { | |
4379 | 5542 | return requester(request.url, { |
4380 | 5543 | method: request.method, |
4381 | 5544 | ...option, |
4382 | - }) as unknown as Promise<PostOrderErpDeptsListByPageResponseSuccess>; | |
5545 | + }) as unknown as Promise<PostOrderErpJobsListByPageResponseSuccess>; | |
4383 | 5546 | } |
4384 | 5547 | |
4385 | 5548 | /** http method */ |
... | ... | @@ -4389,22 +5552,22 @@ export const postOrderErpDeptsListByPage = /* #__PURE__ */ (() => { |
4389 | 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 | 5558 | * @description |
4396 | - * dictionaryVO | |
5559 | + * sysLogQueryVO | |
4397 | 5560 | */ |
4398 | 5561 | body: { |
4399 | 5562 | /** |
4400 | 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 | 5572 | * @description |
4410 | 5573 | * OK |
... | ... | @@ -4432,25 +5595,25 @@ export interface PostOrderErpDictionaryAddResponse { |
4432 | 5595 | 404: any; |
4433 | 5596 | } |
4434 | 5597 | |
4435 | -export type PostOrderErpDictionaryAddResponseSuccess = | |
4436 | - PostOrderErpDictionaryAddResponse[200]; | |
5598 | +export type PostOrderErpLogsListResponseSuccess = | |
5599 | + PostOrderErpLogsListResponse[200]; | |
4437 | 5600 | /** |
4438 | 5601 | * @description |
4439 | - * 新增字典 | |
4440 | - * @tags 系统:字典管理 | |
5602 | + * 分页查询 | |
5603 | + * @tags 系统日志 | |
4441 | 5604 | * @produces * |
4442 | 5605 | * @consumes application/json |
4443 | 5606 | */ |
4444 | -export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => { | |
5607 | +export const postOrderErpLogsList = /* #__PURE__ */ (() => { | |
4445 | 5608 | const method = 'post'; |
4446 | - const url = '/order/erp/dictionary/add'; | |
5609 | + const url = '/order/erp/logs/list'; | |
4447 | 5610 | function request( |
4448 | - option: PostOrderErpDictionaryAddOption, | |
4449 | - ): Promise<PostOrderErpDictionaryAddResponseSuccess> { | |
5611 | + option: PostOrderErpLogsListOption, | |
5612 | + ): Promise<PostOrderErpLogsListResponseSuccess> { | |
4450 | 5613 | return requester(request.url, { |
4451 | 5614 | method: request.method, |
4452 | 5615 | ...option, |
4453 | - }) as unknown as Promise<PostOrderErpDictionaryAddResponseSuccess>; | |
5616 | + }) as unknown as Promise<PostOrderErpLogsListResponseSuccess>; | |
4454 | 5617 | } |
4455 | 5618 | |
4456 | 5619 | /** http method */ |
... | ... | @@ -4460,22 +5623,22 @@ export const postOrderErpDictionaryAdd = /* #__PURE__ */ (() => { |
4460 | 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 | 5629 | * @description |
4467 | - * queryVO | |
5630 | + * menuVO | |
4468 | 5631 | */ |
4469 | 5632 | body: { |
4470 | 5633 | /** |
4471 | 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 | 5643 | * @description |
4481 | 5644 | * OK |
... | ... | @@ -4503,25 +5666,25 @@ export interface PostOrderErpDictionaryDeleteResponse { |
4503 | 5666 | 404: any; |
4504 | 5667 | } |
4505 | 5668 | |
4506 | -export type PostOrderErpDictionaryDeleteResponseSuccess = | |
4507 | - PostOrderErpDictionaryDeleteResponse[200]; | |
5669 | +export type PostOrderErpMenusAddResponseSuccess = | |
5670 | + PostOrderErpMenusAddResponse[200]; | |
4508 | 5671 | /** |
4509 | 5672 | * @description |
4510 | - * 删除字典 | |
4511 | - * @tags 系统:字典管理 | |
5673 | + * 新增菜单 | |
5674 | + * @tags 系统:菜单管理 | |
4512 | 5675 | * @produces * |
4513 | 5676 | * @consumes application/json |
4514 | 5677 | */ |
4515 | -export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => { | |
5678 | +export const postOrderErpMenusAdd = /* #__PURE__ */ (() => { | |
4516 | 5679 | const method = 'post'; |
4517 | - const url = '/order/erp/dictionary/delete'; | |
5680 | + const url = '/order/erp/menus/add'; | |
4518 | 5681 | function request( |
4519 | - option: PostOrderErpDictionaryDeleteOption, | |
4520 | - ): Promise<PostOrderErpDictionaryDeleteResponseSuccess> { | |
5682 | + option: PostOrderErpMenusAddOption, | |
5683 | + ): Promise<PostOrderErpMenusAddResponseSuccess> { | |
4521 | 5684 | return requester(request.url, { |
4522 | 5685 | method: request.method, |
4523 | 5686 | ...option, |
4524 | - }) as unknown as Promise<PostOrderErpDictionaryDeleteResponseSuccess>; | |
5687 | + }) as unknown as Promise<PostOrderErpMenusAddResponseSuccess>; | |
4525 | 5688 | } |
4526 | 5689 | |
4527 | 5690 | /** http method */ |
... | ... | @@ -4531,22 +5694,22 @@ export const postOrderErpDictionaryDelete = /* #__PURE__ */ (() => { |
4531 | 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 | 5700 | * @description |
4538 | - * dictionaryVO | |
5701 | + * queryVO | |
4539 | 5702 | */ |
4540 | 5703 | body: { |
4541 | 5704 | /** |
4542 | 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 | 5714 | * @description |
4552 | 5715 | * OK |
... | ... | @@ -4574,25 +5737,25 @@ export interface PostOrderErpDictionaryEditResponse { |
4574 | 5737 | 404: any; |
4575 | 5738 | } |
4576 | 5739 | |
4577 | -export type PostOrderErpDictionaryEditResponseSuccess = | |
4578 | - PostOrderErpDictionaryEditResponse[200]; | |
5740 | +export type PostOrderErpMenusAllResponseSuccess = | |
5741 | + PostOrderErpMenusAllResponse[200]; | |
4579 | 5742 | /** |
4580 | 5743 | * @description |
4581 | - * 修改字典 | |
4582 | - * @tags 系统:字典管理 | |
5744 | + * 查询菜单 | |
5745 | + * @tags 系统:菜单管理 | |
4583 | 5746 | * @produces * |
4584 | 5747 | * @consumes application/json |
4585 | 5748 | */ |
4586 | -export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => { | |
5749 | +export const postOrderErpMenusAll = /* #__PURE__ */ (() => { | |
4587 | 5750 | const method = 'post'; |
4588 | - const url = '/order/erp/dictionary/edit'; | |
5751 | + const url = '/order/erp/menus/all'; | |
4589 | 5752 | function request( |
4590 | - option: PostOrderErpDictionaryEditOption, | |
4591 | - ): Promise<PostOrderErpDictionaryEditResponseSuccess> { | |
5753 | + option: PostOrderErpMenusAllOption, | |
5754 | + ): Promise<PostOrderErpMenusAllResponseSuccess> { | |
4592 | 5755 | return requester(request.url, { |
4593 | 5756 | method: request.method, |
4594 | 5757 | ...option, |
4595 | - }) as unknown as Promise<PostOrderErpDictionaryEditResponseSuccess>; | |
5758 | + }) as unknown as Promise<PostOrderErpMenusAllResponseSuccess>; | |
4596 | 5759 | } |
4597 | 5760 | |
4598 | 5761 | /** http method */ |
... | ... | @@ -4602,22 +5765,8 @@ export const postOrderErpDictionaryEdit = /* #__PURE__ */ (() => { |
4602 | 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 | 5771 | * @description |
4623 | 5772 | * OK |
... | ... | @@ -4645,25 +5794,22 @@ export interface PostOrderErpDictionaryGetAllResponse { |
4645 | 5794 | 404: any; |
4646 | 5795 | } |
4647 | 5796 | |
4648 | -export type PostOrderErpDictionaryGetAllResponseSuccess = | |
4649 | - PostOrderErpDictionaryGetAllResponse[200]; | |
5797 | +export type PostOrderErpMenusBuildResponseSuccess = | |
5798 | + PostOrderErpMenusBuildResponse[200]; | |
4650 | 5799 | /** |
4651 | 5800 | * @description |
4652 | - * 获取所有字典 | |
4653 | - * @tags 系统:字典管理 | |
5801 | + * 获取前端所需菜单 | |
5802 | + * @tags 系统:菜单管理 | |
4654 | 5803 | * @produces * |
4655 | 5804 | * @consumes application/json |
4656 | 5805 | */ |
4657 | -export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => { | |
5806 | +export const postOrderErpMenusBuild = /* #__PURE__ */ (() => { | |
4658 | 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 | 5810 | return requester(request.url, { |
4664 | 5811 | method: request.method, |
4665 | - ...option, | |
4666 | - }) as unknown as Promise<PostOrderErpDictionaryGetAllResponseSuccess>; | |
5812 | + }) as unknown as Promise<PostOrderErpMenusBuildResponseSuccess>; | |
4667 | 5813 | } |
4668 | 5814 | |
4669 | 5815 | /** http method */ |
... | ... | @@ -4673,8 +5819,8 @@ export const postOrderErpDictionaryGetAll = /* #__PURE__ */ (() => { |
4673 | 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 | 5825 | * @description |
4680 | 5826 | * queryVO |
... | ... | @@ -4683,12 +5829,12 @@ export interface PostOrderErpDictionaryListByPageOption { |
4683 | 5829 | /** |
4684 | 5830 | @description |
4685 | 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 | 5839 | * @description |
4694 | 5840 | * OK |
... | ... | @@ -4716,25 +5862,25 @@ export interface PostOrderErpDictionaryListByPageResponse { |
4716 | 5862 | 404: any; |
4717 | 5863 | } |
4718 | 5864 | |
4719 | -export type PostOrderErpDictionaryListByPageResponseSuccess = | |
4720 | - PostOrderErpDictionaryListByPageResponse[200]; | |
5865 | +export type PostOrderErpMenusDeleteResponseSuccess = | |
5866 | + PostOrderErpMenusDeleteResponse[200]; | |
4721 | 5867 | /** |
4722 | 5868 | * @description |
4723 | - * 查询字典列表 | |
4724 | - * @tags 系统:字典管理 | |
5869 | + * 删除菜单 | |
5870 | + * @tags 系统:菜单管理 | |
4725 | 5871 | * @produces * |
4726 | 5872 | * @consumes application/json |
4727 | 5873 | */ |
4728 | -export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => { | |
5874 | +export const postOrderErpMenusDelete = /* #__PURE__ */ (() => { | |
4729 | 5875 | const method = 'post'; |
4730 | - const url = '/order/erp/dictionary/list_by_page'; | |
5876 | + const url = '/order/erp/menus/delete'; | |
4731 | 5877 | function request( |
4732 | - option: PostOrderErpDictionaryListByPageOption, | |
4733 | - ): Promise<PostOrderErpDictionaryListByPageResponseSuccess> { | |
5878 | + option: PostOrderErpMenusDeleteOption, | |
5879 | + ): Promise<PostOrderErpMenusDeleteResponseSuccess> { | |
4734 | 5880 | return requester(request.url, { |
4735 | 5881 | method: request.method, |
4736 | 5882 | ...option, |
4737 | - }) as unknown as Promise<PostOrderErpDictionaryListByPageResponseSuccess>; | |
5883 | + }) as unknown as Promise<PostOrderErpMenusDeleteResponseSuccess>; | |
4738 | 5884 | } |
4739 | 5885 | |
4740 | 5886 | /** http method */ |
... | ... | @@ -4744,8 +5890,22 @@ export const postOrderErpDictionaryListByPage = /* #__PURE__ */ (() => { |
4744 | 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 | 5910 | * @description |
4751 | 5911 | * OK |
... | ... | @@ -4753,6 +5913,11 @@ export interface GetOrderErpIndexChartDataResponse { |
4753 | 5913 | 200: ServerResult; |
4754 | 5914 | /** |
4755 | 5915 | * @description |
5916 | + * Created | |
5917 | + */ | |
5918 | + 201: any; | |
5919 | + /** | |
5920 | + * @description | |
4756 | 5921 | * Unauthorized |
4757 | 5922 | */ |
4758 | 5923 | 401: any; |
... | ... | @@ -4768,21 +5933,25 @@ export interface GetOrderErpIndexChartDataResponse { |
4768 | 5933 | 404: any; |
4769 | 5934 | } |
4770 | 5935 | |
4771 | -export type GetOrderErpIndexChartDataResponseSuccess = | |
4772 | - GetOrderErpIndexChartDataResponse[200]; | |
5936 | +export type PostOrderErpMenusEditResponseSuccess = | |
5937 | + PostOrderErpMenusEditResponse[200]; | |
4773 | 5938 | /** |
4774 | 5939 | * @description |
4775 | - * 首页订单趋势 | |
4776 | - * @tags 首页 | |
5940 | + * 修改菜单 | |
5941 | + * @tags 系统:菜单管理 | |
4777 | 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 | 5951 | return requester(request.url, { |
4784 | 5952 | method: request.method, |
4785 | - }) as unknown as Promise<GetOrderErpIndexChartDataResponseSuccess>; | |
5953 | + ...option, | |
5954 | + }) as unknown as Promise<PostOrderErpMenusEditResponseSuccess>; | |
4786 | 5955 | } |
4787 | 5956 | |
4788 | 5957 | /** http method */ |
... | ... | @@ -4792,8 +5961,8 @@ export const getOrderErpIndexChartData = /* #__PURE__ */ (() => { |
4792 | 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 | 5967 | * @description |
4799 | 5968 | * OK |
... | ... | @@ -4801,6 +5970,11 @@ export interface GetOrderErpIndexDataResponse { |
4801 | 5970 | 200: ServerResult; |
4802 | 5971 | /** |
4803 | 5972 | * @description |
5973 | + * Created | |
5974 | + */ | |
5975 | + 201: any; | |
5976 | + /** | |
5977 | + * @description | |
4804 | 5978 | * Unauthorized |
4805 | 5979 | */ |
4806 | 5980 | 401: any; |
... | ... | @@ -4816,21 +5990,22 @@ export interface GetOrderErpIndexDataResponse { |
4816 | 5990 | 404: any; |
4817 | 5991 | } |
4818 | 5992 | |
4819 | -export type GetOrderErpIndexDataResponseSuccess = | |
4820 | - GetOrderErpIndexDataResponse[200]; | |
5993 | +export type PostOrderErpMenusTreeResponseSuccess = | |
5994 | + PostOrderErpMenusTreeResponse[200]; | |
4821 | 5995 | /** |
4822 | 5996 | * @description |
4823 | - * 首页统计数据 | |
4824 | - * @tags 首页 | |
5997 | + * 返回全部的菜单 | |
5998 | + * @tags 系统:菜单管理 | |
4825 | 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 | 6006 | return requester(request.url, { |
4832 | 6007 | method: request.method, |
4833 | - }) as unknown as Promise<GetOrderErpIndexDataResponseSuccess>; | |
6008 | + }) as unknown as Promise<PostOrderErpMenusTreeResponseSuccess>; | |
4834 | 6009 | } |
4835 | 6010 | |
4836 | 6011 | /** http method */ |
... | ... | @@ -4840,22 +6015,8 @@ export const getOrderErpIndexData = /* #__PURE__ */ (() => { |
4840 | 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 | 6021 | * @description |
4861 | 6022 | * OK |
... | ... | @@ -4883,25 +6044,22 @@ export interface PostOrderErpJobsAddResponse { |
4883 | 6044 | 404: any; |
4884 | 6045 | } |
4885 | 6046 | |
4886 | -export type PostOrderErpJobsAddResponseSuccess = | |
4887 | - PostOrderErpJobsAddResponse[200]; | |
6047 | +export type PostOrderErpMessageGetUnreadNumResponseSuccess = | |
6048 | + PostOrderErpMessageGetUnreadNumResponse[200]; | |
4888 | 6049 | /** |
4889 | 6050 | * @description |
4890 | - * 新增岗位 | |
4891 | - * @tags 系统:岗位管理 | |
6051 | + * getUnreadNum | |
6052 | + * @tags message-controller | |
4892 | 6053 | * @produces * |
4893 | 6054 | * @consumes application/json |
4894 | 6055 | */ |
4895 | -export const postOrderErpJobsAdd = /* #__PURE__ */ (() => { | |
6056 | +export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => { | |
4896 | 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 | 6060 | return requester(request.url, { |
4902 | 6061 | method: request.method, |
4903 | - ...option, | |
4904 | - }) as unknown as Promise<PostOrderErpJobsAddResponseSuccess>; | |
6062 | + }) as unknown as Promise<PostOrderErpMessageGetUnreadNumResponseSuccess>; | |
4905 | 6063 | } |
4906 | 6064 | |
4907 | 6065 | /** http method */ |
... | ... | @@ -4911,22 +6069,22 @@ export const postOrderErpJobsAdd = /* #__PURE__ */ (() => { |
4911 | 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 | 6075 | * @description |
4918 | - * queryVO | |
6076 | + * messageQueryDTO | |
4919 | 6077 | */ |
4920 | 6078 | body: { |
4921 | 6079 | /** |
4922 | 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 | 6089 | * @description |
4932 | 6090 | * OK |
... | ... | @@ -4954,25 +6112,25 @@ export interface PostOrderErpJobsDeleteResponse { |
4954 | 6112 | 404: any; |
4955 | 6113 | } |
4956 | 6114 | |
4957 | -export type PostOrderErpJobsDeleteResponseSuccess = | |
4958 | - PostOrderErpJobsDeleteResponse[200]; | |
6115 | +export type PostOrderErpMessageQueryMyMessageResponseSuccess = | |
6116 | + PostOrderErpMessageQueryMyMessageResponse[200]; | |
4959 | 6117 | /** |
4960 | 6118 | * @description |
4961 | - * 删除岗位 | |
4962 | - * @tags 系统:岗位管理 | |
6119 | + * queryMyMessage | |
6120 | + * @tags message-controller | |
4963 | 6121 | * @produces * |
4964 | 6122 | * @consumes application/json |
4965 | 6123 | */ |
4966 | -export const postOrderErpJobsDelete = /* #__PURE__ */ (() => { | |
6124 | +export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => { | |
4967 | 6125 | const method = 'post'; |
4968 | - const url = '/order/erp/jobs/delete'; | |
6126 | + const url = '/order/erp/message/queryMyMessage'; | |
4969 | 6127 | function request( |
4970 | - option: PostOrderErpJobsDeleteOption, | |
4971 | - ): Promise<PostOrderErpJobsDeleteResponseSuccess> { | |
6128 | + option: PostOrderErpMessageQueryMyMessageOption, | |
6129 | + ): Promise<PostOrderErpMessageQueryMyMessageResponseSuccess> { | |
4972 | 6130 | return requester(request.url, { |
4973 | 6131 | method: request.method, |
4974 | 6132 | ...option, |
4975 | - }) as unknown as Promise<PostOrderErpJobsDeleteResponseSuccess>; | |
6133 | + }) as unknown as Promise<PostOrderErpMessageQueryMyMessageResponseSuccess>; | |
4976 | 6134 | } |
4977 | 6135 | |
4978 | 6136 | /** http method */ |
... | ... | @@ -4982,22 +6140,22 @@ export const postOrderErpJobsDelete = /* #__PURE__ */ (() => { |
4982 | 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 | 6146 | * @description |
4989 | - * jobVO | |
6147 | + * ids | |
4990 | 6148 | */ |
4991 | 6149 | body: { |
4992 | 6150 | /** |
4993 | 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 | 6160 | * @description |
5003 | 6161 | * OK |
... | ... | @@ -5025,25 +6183,25 @@ export interface PostOrderErpJobsEditResponse { |
5025 | 6183 | 404: any; |
5026 | 6184 | } |
5027 | 6185 | |
5028 | -export type PostOrderErpJobsEditResponseSuccess = | |
5029 | - PostOrderErpJobsEditResponse[200]; | |
6186 | +export type PostOrderErpMessageReadResponseSuccess = | |
6187 | + PostOrderErpMessageReadResponse[200]; | |
5030 | 6188 | /** |
5031 | 6189 | * @description |
5032 | - * 修改岗位 | |
5033 | - * @tags 系统:岗位管理 | |
6190 | + * read | |
6191 | + * @tags message-controller | |
5034 | 6192 | * @produces * |
5035 | 6193 | * @consumes application/json |
5036 | 6194 | */ |
5037 | -export const postOrderErpJobsEdit = /* #__PURE__ */ (() => { | |
6195 | +export const postOrderErpMessageRead = /* #__PURE__ */ (() => { | |
5038 | 6196 | const method = 'post'; |
5039 | - const url = '/order/erp/jobs/edit'; | |
6197 | + const url = '/order/erp/message/read'; | |
5040 | 6198 | function request( |
5041 | - option: PostOrderErpJobsEditOption, | |
5042 | - ): Promise<PostOrderErpJobsEditResponseSuccess> { | |
6199 | + option: PostOrderErpMessageReadOption, | |
6200 | + ): Promise<PostOrderErpMessageReadResponseSuccess> { | |
5043 | 6201 | return requester(request.url, { |
5044 | 6202 | method: request.method, |
5045 | 6203 | ...option, |
5046 | - }) as unknown as Promise<PostOrderErpJobsEditResponseSuccess>; | |
6204 | + }) as unknown as Promise<PostOrderErpMessageReadResponseSuccess>; | |
5047 | 6205 | } |
5048 | 6206 | |
5049 | 6207 | /** http method */ |
... | ... | @@ -5053,22 +6211,8 @@ export const postOrderErpJobsEdit = /* #__PURE__ */ (() => { |
5053 | 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 | 6217 | * @description |
5074 | 6218 | * OK |
... | ... | @@ -5096,25 +6240,22 @@ export interface PostOrderErpJobsListByPageResponse { |
5096 | 6240 | 404: any; |
5097 | 6241 | } |
5098 | 6242 | |
5099 | -export type PostOrderErpJobsListByPageResponseSuccess = | |
5100 | - PostOrderErpJobsListByPageResponse[200]; | |
6243 | +export type PostOrderErpMessageReadAllResponseSuccess = | |
6244 | + PostOrderErpMessageReadAllResponse[200]; | |
5101 | 6245 | /** |
5102 | 6246 | * @description |
5103 | - * 查询岗位 | |
5104 | - * @tags 系统:岗位管理 | |
6247 | + * readAll | |
6248 | + * @tags message-controller | |
5105 | 6249 | * @produces * |
5106 | 6250 | * @consumes application/json |
5107 | 6251 | */ |
5108 | -export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => { | |
6252 | +export const postOrderErpMessageReadAll = /* #__PURE__ */ (() => { | |
5109 | 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 | 6256 | return requester(request.url, { |
5115 | 6257 | method: request.method, |
5116 | - ...option, | |
5117 | - }) as unknown as Promise<PostOrderErpJobsListByPageResponseSuccess>; | |
6258 | + }) as unknown as Promise<PostOrderErpMessageReadAllResponseSuccess>; | |
5118 | 6259 | } |
5119 | 6260 | |
5120 | 6261 | /** http method */ |
... | ... | @@ -5124,22 +6265,22 @@ export const postOrderErpJobsListByPage = /* #__PURE__ */ (() => { |
5124 | 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 | 6271 | * @description |
5131 | - * sysLogQueryVO | |
6272 | + * queryVO | |
5132 | 6273 | */ |
5133 | 6274 | body: { |
5134 | 6275 | /** |
5135 | 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 | 6285 | * @description |
5145 | 6286 | * OK |
... | ... | @@ -5167,25 +6308,25 @@ export interface PostOrderErpLogsListResponse { |
5167 | 6308 | 404: any; |
5168 | 6309 | } |
5169 | 6310 | |
5170 | -export type PostOrderErpLogsListResponseSuccess = | |
5171 | - PostOrderErpLogsListResponse[200]; | |
6311 | +export type PostOrderErpOptLogListByPageResponseSuccess = | |
6312 | + PostOrderErpOptLogListByPageResponse[200]; | |
5172 | 6313 | /** |
5173 | 6314 | * @description |
5174 | 6315 | * 分页查询 |
5175 | - * @tags 系统日志 | |
6316 | + * @tags 订单操作日志 | |
5176 | 6317 | * @produces * |
5177 | 6318 | * @consumes application/json |
5178 | 6319 | */ |
5179 | -export const postOrderErpLogsList = /* #__PURE__ */ (() => { | |
6320 | +export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => { | |
5180 | 6321 | const method = 'post'; |
5181 | - const url = '/order/erp/logs/list'; | |
6322 | + const url = '/order/erp/opt/log/list_by_page'; | |
5182 | 6323 | function request( |
5183 | - option: PostOrderErpLogsListOption, | |
5184 | - ): Promise<PostOrderErpLogsListResponseSuccess> { | |
6324 | + option: PostOrderErpOptLogListByPageOption, | |
6325 | + ): Promise<PostOrderErpOptLogListByPageResponseSuccess> { | |
5185 | 6326 | return requester(request.url, { |
5186 | 6327 | method: request.method, |
5187 | 6328 | ...option, |
5188 | - }) as unknown as Promise<PostOrderErpLogsListResponseSuccess>; | |
6329 | + }) as unknown as Promise<PostOrderErpOptLogListByPageResponseSuccess>; | |
5189 | 6330 | } |
5190 | 6331 | |
5191 | 6332 | /** http method */ |
... | ... | @@ -5195,22 +6336,22 @@ export const postOrderErpLogsList = /* #__PURE__ */ (() => { |
5195 | 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 | 6342 | * @description |
5202 | - * menuVO | |
6343 | + * orderAddVO | |
5203 | 6344 | */ |
5204 | 6345 | body: { |
5205 | 6346 | /** |
5206 | 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 | 6356 | * @description |
5216 | 6357 | * OK |
... | ... | @@ -5238,25 +6379,25 @@ export interface PostOrderErpMenusAddResponse { |
5238 | 6379 | 404: any; |
5239 | 6380 | } |
5240 | 6381 | |
5241 | -export type PostOrderErpMenusAddResponseSuccess = | |
5242 | - PostOrderErpMenusAddResponse[200]; | |
6382 | +export type PostOrderErpOrderAddResponseSuccess = | |
6383 | + PostOrderErpOrderAddResponse[200]; | |
5243 | 6384 | /** |
5244 | 6385 | * @description |
5245 | - * 新增菜单 | |
5246 | - * @tags 系统:菜单管理 | |
6386 | + * 新增数据 | |
6387 | + * @tags 订单管理 | |
5247 | 6388 | * @produces * |
5248 | 6389 | * @consumes application/json |
5249 | 6390 | */ |
5250 | -export const postOrderErpMenusAdd = /* #__PURE__ */ (() => { | |
6391 | +export const postOrderErpOrderAdd = /* #__PURE__ */ (() => { | |
5251 | 6392 | const method = 'post'; |
5252 | - const url = '/order/erp/menus/add'; | |
6393 | + const url = '/order/erp/order/add'; | |
5253 | 6394 | function request( |
5254 | - option: PostOrderErpMenusAddOption, | |
5255 | - ): Promise<PostOrderErpMenusAddResponseSuccess> { | |
6395 | + option: PostOrderErpOrderAddOption, | |
6396 | + ): Promise<PostOrderErpOrderAddResponseSuccess> { | |
5256 | 6397 | return requester(request.url, { |
5257 | 6398 | method: request.method, |
5258 | 6399 | ...option, |
5259 | - }) as unknown as Promise<PostOrderErpMenusAddResponseSuccess>; | |
6400 | + }) as unknown as Promise<PostOrderErpOrderAddResponseSuccess>; | |
5260 | 6401 | } |
5261 | 6402 | |
5262 | 6403 | /** http method */ |
... | ... | @@ -5266,22 +6407,22 @@ export const postOrderErpMenusAdd = /* #__PURE__ */ (() => { |
5266 | 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 | 6413 | * @description |
5273 | - * queryVO | |
6414 | + * orderBaseInfoQueryVO | |
5274 | 6415 | */ |
5275 | 6416 | body: { |
5276 | 6417 | /** |
5277 | 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 | 6427 | * @description |
5287 | 6428 | * OK |
... | ... | @@ -5309,25 +6450,25 @@ export interface PostOrderErpMenusAllResponse { |
5309 | 6450 | 404: any; |
5310 | 6451 | } |
5311 | 6452 | |
5312 | -export type PostOrderErpMenusAllResponseSuccess = | |
5313 | - PostOrderErpMenusAllResponse[200]; | |
6453 | +export type PostOrderErpOrderDeleteByIdResponseSuccess = | |
6454 | + PostOrderErpOrderDeleteByIdResponse[200]; | |
5314 | 6455 | /** |
5315 | 6456 | * @description |
5316 | - * 查询菜单 | |
5317 | - * @tags 系统:菜单管理 | |
6457 | + * 删除数据 | |
6458 | + * @tags 订单管理 | |
5318 | 6459 | * @produces * |
5319 | 6460 | * @consumes application/json |
5320 | 6461 | */ |
5321 | -export const postOrderErpMenusAll = /* #__PURE__ */ (() => { | |
6462 | +export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => { | |
5322 | 6463 | const method = 'post'; |
5323 | - const url = '/order/erp/menus/all'; | |
6464 | + const url = '/order/erp/order/delete_by_id'; | |
5324 | 6465 | function request( |
5325 | - option: PostOrderErpMenusAllOption, | |
5326 | - ): Promise<PostOrderErpMenusAllResponseSuccess> { | |
6466 | + option: PostOrderErpOrderDeleteByIdOption, | |
6467 | + ): Promise<PostOrderErpOrderDeleteByIdResponseSuccess> { | |
5327 | 6468 | return requester(request.url, { |
5328 | 6469 | method: request.method, |
5329 | 6470 | ...option, |
5330 | - }) as unknown as Promise<PostOrderErpMenusAllResponseSuccess>; | |
6471 | + }) as unknown as Promise<PostOrderErpOrderDeleteByIdResponseSuccess>; | |
5331 | 6472 | } |
5332 | 6473 | |
5333 | 6474 | /** http method */ |
... | ... | @@ -5337,8 +6478,22 @@ export const postOrderErpMenusAll = /* #__PURE__ */ (() => { |
5337 | 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 | 6498 | * @description |
5344 | 6499 | * OK |
... | ... | @@ -5366,22 +6521,25 @@ export interface PostOrderErpMenusBuildResponse { |
5366 | 6521 | 404: any; |
5367 | 6522 | } |
5368 | 6523 | |
5369 | -export type PostOrderErpMenusBuildResponseSuccess = | |
5370 | - PostOrderErpMenusBuildResponse[200]; | |
6524 | +export type PostOrderErpOrderEditResponseSuccess = | |
6525 | + PostOrderErpOrderEditResponse[200]; | |
5371 | 6526 | /** |
5372 | 6527 | * @description |
5373 | - * 获取前端所需菜单 | |
5374 | - * @tags 系统:菜单管理 | |
6528 | + * 编辑数据 | |
6529 | + * @tags 订单管理 | |
5375 | 6530 | * @produces * |
5376 | 6531 | * @consumes application/json |
5377 | 6532 | */ |
5378 | -export const postOrderErpMenusBuild = /* #__PURE__ */ (() => { | |
6533 | +export const postOrderErpOrderEdit = /* #__PURE__ */ (() => { | |
5379 | 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 | 6539 | return requester(request.url, { |
5383 | 6540 | method: request.method, |
5384 | - }) as unknown as Promise<PostOrderErpMenusBuildResponseSuccess>; | |
6541 | + ...option, | |
6542 | + }) as unknown as Promise<PostOrderErpOrderEditResponseSuccess>; | |
5385 | 6543 | } |
5386 | 6544 | |
5387 | 6545 | /** http method */ |
... | ... | @@ -5391,22 +6549,22 @@ export const postOrderErpMenusBuild = /* #__PURE__ */ (() => { |
5391 | 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 | 6555 | * @description |
5398 | - * queryVO | |
6556 | + * orderBaseInfoQueryVO | |
5399 | 6557 | */ |
5400 | 6558 | body: { |
5401 | 6559 | /** |
5402 | 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 | 6569 | * @description |
5412 | 6570 | * OK |
... | ... | @@ -5434,25 +6592,25 @@ export interface PostOrderErpMenusDeleteResponse { |
5434 | 6592 | 404: any; |
5435 | 6593 | } |
5436 | 6594 | |
5437 | -export type PostOrderErpMenusDeleteResponseSuccess = | |
5438 | - PostOrderErpMenusDeleteResponse[200]; | |
6595 | +export type PostOrderErpOrderExportResponseSuccess = | |
6596 | + PostOrderErpOrderExportResponse[200]; | |
5439 | 6597 | /** |
5440 | 6598 | * @description |
5441 | - * 删除菜单 | |
5442 | - * @tags 系统:菜单管理 | |
6599 | + * 导出订单 | |
6600 | + * @tags 订单管理 | |
5443 | 6601 | * @produces * |
5444 | 6602 | * @consumes application/json |
5445 | 6603 | */ |
5446 | -export const postOrderErpMenusDelete = /* #__PURE__ */ (() => { | |
6604 | +export const postOrderErpOrderExport = /* #__PURE__ */ (() => { | |
5447 | 6605 | const method = 'post'; |
5448 | - const url = '/order/erp/menus/delete'; | |
6606 | + const url = '/order/erp/order/export'; | |
5449 | 6607 | function request( |
5450 | - option: PostOrderErpMenusDeleteOption, | |
5451 | - ): Promise<PostOrderErpMenusDeleteResponseSuccess> { | |
6608 | + option: PostOrderErpOrderExportOption, | |
6609 | + ): Promise<PostOrderErpOrderExportResponseSuccess> { | |
5452 | 6610 | return requester(request.url, { |
5453 | 6611 | method: request.method, |
5454 | 6612 | ...option, |
5455 | - }) as unknown as Promise<PostOrderErpMenusDeleteResponseSuccess>; | |
6613 | + }) as unknown as Promise<PostOrderErpOrderExportResponseSuccess>; | |
5456 | 6614 | } |
5457 | 6615 | |
5458 | 6616 | /** http method */ |
... | ... | @@ -5462,22 +6620,22 @@ export const postOrderErpMenusDelete = /* #__PURE__ */ (() => { |
5462 | 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 | 6626 | * @description |
5469 | - * menuVO | |
6627 | + * fieldVO | |
5470 | 6628 | */ |
5471 | 6629 | body: { |
5472 | 6630 | /** |
5473 | 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 | 6640 | * @description |
5483 | 6641 | * OK |
... | ... | @@ -5505,25 +6663,25 @@ export interface PostOrderErpMenusEditResponse { |
5505 | 6663 | 404: any; |
5506 | 6664 | } |
5507 | 6665 | |
5508 | -export type PostOrderErpMenusEditResponseSuccess = | |
5509 | - PostOrderErpMenusEditResponse[200]; | |
6666 | +export type PostOrderErpOrderFieldUnlockApplyResponseSuccess = | |
6667 | + PostOrderErpOrderFieldUnlockApplyResponse[200]; | |
5510 | 6668 | /** |
5511 | 6669 | * @description |
5512 | - * 修改菜单 | |
5513 | - * @tags 系统:菜单管理 | |
6670 | + * 字段解锁申请 | |
6671 | + * @tags 订单管理 | |
5514 | 6672 | * @produces * |
5515 | 6673 | * @consumes application/json |
5516 | 6674 | */ |
5517 | -export const postOrderErpMenusEdit = /* #__PURE__ */ (() => { | |
6675 | +export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => { | |
5518 | 6676 | const method = 'post'; |
5519 | - const url = '/order/erp/menus/edit'; | |
6677 | + const url = '/order/erp/order/field_unlock_apply'; | |
5520 | 6678 | function request( |
5521 | - option: PostOrderErpMenusEditOption, | |
5522 | - ): Promise<PostOrderErpMenusEditResponseSuccess> { | |
6679 | + option: PostOrderErpOrderFieldUnlockApplyOption, | |
6680 | + ): Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess> { | |
5523 | 6681 | return requester(request.url, { |
5524 | 6682 | method: request.method, |
5525 | 6683 | ...option, |
5526 | - }) as unknown as Promise<PostOrderErpMenusEditResponseSuccess>; | |
6684 | + }) as unknown as Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess>; | |
5527 | 6685 | } |
5528 | 6686 | |
5529 | 6687 | /** http method */ |
... | ... | @@ -5533,8 +6691,22 @@ export const postOrderErpMenusEdit = /* #__PURE__ */ (() => { |
5533 | 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 | 6711 | * @description |
5540 | 6712 | * OK |
... | ... | @@ -5562,22 +6734,25 @@ export interface PostOrderErpMenusTreeResponse { |
5562 | 6734 | 404: any; |
5563 | 6735 | } |
5564 | 6736 | |
5565 | -export type PostOrderErpMenusTreeResponseSuccess = | |
5566 | - PostOrderErpMenusTreeResponse[200]; | |
6737 | +export type PostOrderErpOrderListByPageResponseSuccess = | |
6738 | + PostOrderErpOrderListByPageResponse[200]; | |
5567 | 6739 | /** |
5568 | 6740 | * @description |
5569 | - * 返回全部的菜单 | |
5570 | - * @tags 系统:菜单管理 | |
6741 | + * 分页查询 | |
6742 | + * @tags 订单管理 | |
5571 | 6743 | * @produces * |
5572 | 6744 | * @consumes application/json |
5573 | 6745 | */ |
5574 | -export const postOrderErpMenusTree = /* #__PURE__ */ (() => { | |
6746 | +export const postOrderErpOrderListByPage = /* #__PURE__ */ (() => { | |
5575 | 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 | 6752 | return requester(request.url, { |
5579 | 6753 | method: request.method, |
5580 | - }) as unknown as Promise<PostOrderErpMenusTreeResponseSuccess>; | |
6754 | + ...option, | |
6755 | + }) as unknown as Promise<PostOrderErpOrderListByPageResponseSuccess>; | |
5581 | 6756 | } |
5582 | 6757 | |
5583 | 6758 | /** http method */ |
... | ... | @@ -5587,8 +6762,22 @@ export const postOrderErpMenusTree = /* #__PURE__ */ (() => { |
5587 | 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 | 6782 | * @description |
5594 | 6783 | * OK |
... | ... | @@ -5616,22 +6805,25 @@ export interface PostOrderErpMessageGetUnreadNumResponse { |
5616 | 6805 | 404: any; |
5617 | 6806 | } |
5618 | 6807 | |
5619 | -export type PostOrderErpMessageGetUnreadNumResponseSuccess = | |
5620 | - PostOrderErpMessageGetUnreadNumResponse[200]; | |
6808 | +export type PostOrderErpOrderQueryByIdResponseSuccess = | |
6809 | + PostOrderErpOrderQueryByIdResponse[200]; | |
5621 | 6810 | /** |
5622 | 6811 | * @description |
5623 | - * getUnreadNum | |
5624 | - * @tags message-controller | |
6812 | + * queryById | |
6813 | + * @tags 订单管理 | |
5625 | 6814 | * @produces * |
5626 | 6815 | * @consumes application/json |
5627 | 6816 | */ |
5628 | -export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => { | |
6817 | +export const postOrderErpOrderQueryById = /* #__PURE__ */ (() => { | |
5629 | 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 | 6823 | return requester(request.url, { |
5633 | 6824 | method: request.method, |
5634 | - }) as unknown as Promise<PostOrderErpMessageGetUnreadNumResponseSuccess>; | |
6825 | + ...option, | |
6826 | + }) as unknown as Promise<PostOrderErpOrderQueryByIdResponseSuccess>; | |
5635 | 6827 | } |
5636 | 6828 | |
5637 | 6829 | /** http method */ |
... | ... | @@ -5641,22 +6833,22 @@ export const postOrderErpMessageGetUnreadNum = /* #__PURE__ */ (() => { |
5641 | 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 | 6839 | * @description |
5648 | - * messageQueryDTO | |
6840 | + * orderStagesFromDo | |
5649 | 6841 | */ |
5650 | 6842 | body: { |
5651 | 6843 | /** |
5652 | 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 | 6853 | * @description |
5662 | 6854 | * OK |
... | ... | @@ -5684,25 +6876,25 @@ export interface PostOrderErpMessageQueryMyMessageResponse { |
5684 | 6876 | 404: any; |
5685 | 6877 | } |
5686 | 6878 | |
5687 | -export type PostOrderErpMessageQueryMyMessageResponseSuccess = | |
5688 | - PostOrderErpMessageQueryMyMessageResponse[200]; | |
6879 | +export type PostOrderErpOrderStagesAddResponseSuccess = | |
6880 | + PostOrderErpOrderStagesAddResponse[200]; | |
5689 | 6881 | /** |
5690 | 6882 | * @description |
5691 | - * queryMyMessage | |
5692 | - * @tags message-controller | |
6883 | + * 添加或者修改分期账单 | |
6884 | + * @tags order-stages-controller | |
5693 | 6885 | * @produces * |
5694 | 6886 | * @consumes application/json |
5695 | 6887 | */ |
5696 | -export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => { | |
6888 | +export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => { | |
5697 | 6889 | const method = 'post'; |
5698 | - const url = '/order/erp/message/queryMyMessage'; | |
6890 | + const url = '/order/erp/orderStages/add'; | |
5699 | 6891 | function request( |
5700 | - option: PostOrderErpMessageQueryMyMessageOption, | |
5701 | - ): Promise<PostOrderErpMessageQueryMyMessageResponseSuccess> { | |
6892 | + option: PostOrderErpOrderStagesAddOption, | |
6893 | + ): Promise<PostOrderErpOrderStagesAddResponseSuccess> { | |
5702 | 6894 | return requester(request.url, { |
5703 | 6895 | method: request.method, |
5704 | 6896 | ...option, |
5705 | - }) as unknown as Promise<PostOrderErpMessageQueryMyMessageResponseSuccess>; | |
6897 | + }) as unknown as Promise<PostOrderErpOrderStagesAddResponseSuccess>; | |
5706 | 6898 | } |
5707 | 6899 | |
5708 | 6900 | /** http method */ |
... | ... | @@ -5712,22 +6904,22 @@ export const postOrderErpMessageQueryMyMessage = /* #__PURE__ */ (() => { |
5712 | 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 | 6910 | * @description |
5719 | - * ids | |
6911 | + * orderStagesDelDo | |
5720 | 6912 | */ |
5721 | 6913 | body: { |
5722 | 6914 | /** |
5723 | 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 | 6924 | * @description |
5733 | 6925 | * OK |
... | ... | @@ -5735,9 +6927,9 @@ export interface PostOrderErpMessageReadResponse { |
5735 | 6927 | 200: ServerResult; |
5736 | 6928 | /** |
5737 | 6929 | * @description |
5738 | - * Created | |
6930 | + * No Content | |
5739 | 6931 | */ |
5740 | - 201: any; | |
6932 | + 204: any; | |
5741 | 6933 | /** |
5742 | 6934 | * @description |
5743 | 6935 | * Unauthorized |
... | ... | @@ -5748,32 +6940,26 @@ export interface PostOrderErpMessageReadResponse { |
5748 | 6940 | * Forbidden |
5749 | 6941 | */ |
5750 | 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 | 6948 | * @description |
5762 | - * read | |
5763 | - * @tags message-controller | |
6949 | + * 删除分期账单 | |
6950 | + * @tags order-stages-controller | |
5764 | 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 | 6956 | function request( |
5771 | - option: PostOrderErpMessageReadOption, | |
5772 | - ): Promise<PostOrderErpMessageReadResponseSuccess> { | |
6957 | + option: DeleteOrderErpOrderStagesDelectOption, | |
6958 | + ): Promise<DeleteOrderErpOrderStagesDelectResponseSuccess> { | |
5773 | 6959 | return requester(request.url, { |
5774 | 6960 | method: request.method, |
5775 | 6961 | ...option, |
5776 | - }) as unknown as Promise<PostOrderErpMessageReadResponseSuccess>; | |
6962 | + }) as unknown as Promise<DeleteOrderErpOrderStagesDelectResponseSuccess>; | |
5777 | 6963 | } |
5778 | 6964 | |
5779 | 6965 | /** http method */ |
... | ... | @@ -5783,18 +6969,13 @@ export const postOrderErpMessageRead = /* #__PURE__ */ (() => { |
5783 | 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 | 6975 | * @description |
5790 | 6976 | * OK |
5791 | 6977 | */ |
5792 | - 200: ServerResult; | |
5793 | - /** | |
5794 | - * @description | |
5795 | - * Created | |
5796 | - */ | |
5797 | - 201: any; | |
6978 | + 200: any; | |
5798 | 6979 | /** |
5799 | 6980 | * @description |
5800 | 6981 | * Unauthorized |
... | ... | @@ -5812,22 +6993,21 @@ export interface PostOrderErpMessageReadAllResponse { |
5812 | 6993 | 404: any; |
5813 | 6994 | } |
5814 | 6995 | |
5815 | -export type PostOrderErpMessageReadAllResponseSuccess = | |
5816 | - PostOrderErpMessageReadAllResponse[200]; | |
6996 | +export type GetOrderErpOrderStagesExportResponseSuccess = | |
6997 | + GetOrderErpOrderStagesExportResponse[200]; | |
5817 | 6998 | /** |
5818 | 6999 | * @description |
5819 | - * readAll | |
5820 | - * @tags message-controller | |
7000 | + * 导出分期账单 | |
7001 | + * @tags order-stages-controller | |
5821 | 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 | 7008 | return requester(request.url, { |
5829 | 7009 | method: request.method, |
5830 | - }) as unknown as Promise<PostOrderErpMessageReadAllResponseSuccess>; | |
7010 | + }) as unknown as Promise<GetOrderErpOrderStagesExportResponseSuccess>; | |
5831 | 7011 | } |
5832 | 7012 | |
5833 | 7013 | /** http method */ |
... | ... | @@ -5837,22 +7017,22 @@ export const postOrderErpMessageReadAll = /* #__PURE__ */ (() => { |
5837 | 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 | 7023 | * @description |
5844 | - * queryVO | |
7024 | + * file | |
5845 | 7025 | */ |
5846 | - body: { | |
7026 | + formData: { | |
5847 | 7027 | /** |
5848 | 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 | 7037 | * @description |
5858 | 7038 | * OK |
... | ... | @@ -5880,25 +7060,25 @@ export interface PostOrderErpOptLogListByPageResponse { |
5880 | 7060 | 404: any; |
5881 | 7061 | } |
5882 | 7062 | |
5883 | -export type PostOrderErpOptLogListByPageResponseSuccess = | |
5884 | - PostOrderErpOptLogListByPageResponse[200]; | |
7063 | +export type PostOrderErpOrderStagesImportResponseSuccess = | |
7064 | + PostOrderErpOrderStagesImportResponse[200]; | |
5885 | 7065 | /** |
5886 | 7066 | * @description |
5887 | - * 分页查询 | |
5888 | - * @tags 订单操作日志 | |
7067 | + * 导入分期账单 | |
7068 | + * @tags order-stages-controller | |
5889 | 7069 | * @produces * |
5890 | - * @consumes application/json | |
7070 | + * @consumes multipart/form-data | |
5891 | 7071 | */ |
5892 | -export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => { | |
7072 | +export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() => { | |
5893 | 7073 | const method = 'post'; |
5894 | - const url = '/order/erp/opt/log/list_by_page'; | |
7074 | + const url = '/order/erp/orderStages/import'; | |
5895 | 7075 | function request( |
5896 | - option: PostOrderErpOptLogListByPageOption, | |
5897 | - ): Promise<PostOrderErpOptLogListByPageResponseSuccess> { | |
7076 | + option: PostOrderErpOrderStagesImportOption, | |
7077 | + ): Promise<PostOrderErpOrderStagesImportResponseSuccess> { | |
5898 | 7078 | return requester(request.url, { |
5899 | 7079 | method: request.method, |
5900 | 7080 | ...option, |
5901 | - }) as unknown as Promise<PostOrderErpOptLogListByPageResponseSuccess>; | |
7081 | + }) as unknown as Promise<PostOrderErpOrderStagesImportResponseSuccess>; | |
5902 | 7082 | } |
5903 | 7083 | |
5904 | 7084 | /** http method */ |
... | ... | @@ -5908,22 +7088,70 @@ export const postOrderErpOptLogListByPage = /* #__PURE__ */ (() => { |
5908 | 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 | 7142 | * @description |
5915 | - * orderAddVO | |
7143 | + * orderStagesFromDo | |
5916 | 7144 | */ |
5917 | 7145 | body: { |
5918 | 7146 | /** |
5919 | 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 | 7156 | * @description |
5929 | 7157 | * OK |
... | ... | @@ -5951,25 +7179,25 @@ export interface PostOrderErpOrderAddResponse { |
5951 | 7179 | 404: any; |
5952 | 7180 | } |
5953 | 7181 | |
5954 | -export type PostOrderErpOrderAddResponseSuccess = | |
5955 | - PostOrderErpOrderAddResponse[200]; | |
7182 | +export type PostOrderErpOrderStagesSaveOrUpdateResponseSuccess = | |
7183 | + PostOrderErpOrderStagesSaveOrUpdateResponse[200]; | |
5956 | 7184 | /** |
5957 | 7185 | * @description |
5958 | - * 新增数据 | |
5959 | - * @tags 订单管理 | |
7186 | + * 添加或者修改分期账单 | |
7187 | + * @tags order-stages-controller | |
5960 | 7188 | * @produces * |
5961 | 7189 | * @consumes application/json |
5962 | 7190 | */ |
5963 | -export const postOrderErpOrderAdd = /* #__PURE__ */ (() => { | |
7191 | +export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => { | |
5964 | 7192 | const method = 'post'; |
5965 | - const url = '/order/erp/order/add'; | |
7193 | + const url = '/order/erp/orderStages/saveOrUpdate'; | |
5966 | 7194 | function request( |
5967 | - option: PostOrderErpOrderAddOption, | |
5968 | - ): Promise<PostOrderErpOrderAddResponseSuccess> { | |
7195 | + option: PostOrderErpOrderStagesSaveOrUpdateOption, | |
7196 | + ): Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess> { | |
5969 | 7197 | return requester(request.url, { |
5970 | 7198 | method: request.method, |
5971 | 7199 | ...option, |
5972 | - }) as unknown as Promise<PostOrderErpOrderAddResponseSuccess>; | |
7200 | + }) as unknown as Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess>; | |
5973 | 7201 | } |
5974 | 7202 | |
5975 | 7203 | /** http method */ |
... | ... | @@ -5979,22 +7207,22 @@ export const postOrderErpOrderAdd = /* #__PURE__ */ (() => { |
5979 | 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 | 7213 | * @description |
5986 | - * orderBaseInfoQueryVO | |
7214 | + * orderStagesSelDo | |
5987 | 7215 | */ |
5988 | 7216 | body: { |
5989 | 7217 | /** |
5990 | 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 | 7227 | * @description |
6000 | 7228 | * OK |
... | ... | @@ -6022,25 +7250,25 @@ export interface PostOrderErpOrderDeleteByIdResponse { |
6022 | 7250 | 404: any; |
6023 | 7251 | } |
6024 | 7252 | |
6025 | -export type PostOrderErpOrderDeleteByIdResponseSuccess = | |
6026 | - PostOrderErpOrderDeleteByIdResponse[200]; | |
7253 | +export type PostOrderErpOrderStagesSearchResponseSuccess = | |
7254 | + PostOrderErpOrderStagesSearchResponse[200]; | |
6027 | 7255 | /** |
6028 | 7256 | * @description |
6029 | - * 删除数据 | |
6030 | - * @tags 订单管理 | |
7257 | + * 条件搜索分期账单 | |
7258 | + * @tags order-stages-controller | |
6031 | 7259 | * @produces * |
6032 | 7260 | * @consumes application/json |
6033 | 7261 | */ |
6034 | -export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => { | |
7262 | +export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => { | |
6035 | 7263 | const method = 'post'; |
6036 | - const url = '/order/erp/order/delete_by_id'; | |
7264 | + const url = '/order/erp/orderStages/search'; | |
6037 | 7265 | function request( |
6038 | - option: PostOrderErpOrderDeleteByIdOption, | |
6039 | - ): Promise<PostOrderErpOrderDeleteByIdResponseSuccess> { | |
7266 | + option: PostOrderErpOrderStagesSearchOption, | |
7267 | + ): Promise<PostOrderErpOrderStagesSearchResponseSuccess> { | |
6040 | 7268 | return requester(request.url, { |
6041 | 7269 | method: request.method, |
6042 | 7270 | ...option, |
6043 | - }) as unknown as Promise<PostOrderErpOrderDeleteByIdResponseSuccess>; | |
7271 | + }) as unknown as Promise<PostOrderErpOrderStagesSearchResponseSuccess>; | |
6044 | 7272 | } |
6045 | 7273 | |
6046 | 7274 | /** http method */ |
... | ... | @@ -6050,22 +7278,22 @@ export const postOrderErpOrderDeleteById = /* #__PURE__ */ (() => { |
6050 | 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 | 7284 | * @description |
6057 | - * updateVO | |
7285 | + * file | |
6058 | 7286 | */ |
6059 | - body: { | |
7287 | + formData: { | |
6060 | 7288 | /** |
6061 | 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 | 7298 | * @description |
6071 | 7299 | * OK |
... | ... | @@ -6093,25 +7321,25 @@ export interface PostOrderErpOrderEditResponse { |
6093 | 7321 | 404: any; |
6094 | 7322 | } |
6095 | 7323 | |
6096 | -export type PostOrderErpOrderEditResponseSuccess = | |
6097 | - PostOrderErpOrderEditResponse[200]; | |
7324 | +export type PostOrderErpOrderStagesUploadResponseSuccess = | |
7325 | + PostOrderErpOrderStagesUploadResponse[200]; | |
6098 | 7326 | /** |
6099 | 7327 | * @description |
6100 | - * 编辑数据 | |
6101 | - * @tags 订单管理 | |
7328 | + * 合同文件上传 | |
7329 | + * @tags order-stages-controller | |
6102 | 7330 | * @produces * |
6103 | - * @consumes application/json | |
7331 | + * @consumes multipart/form-data | |
6104 | 7332 | */ |
6105 | -export const postOrderErpOrderEdit = /* #__PURE__ */ (() => { | |
7333 | +export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => { | |
6106 | 7334 | const method = 'post'; |
6107 | - const url = '/order/erp/order/edit'; | |
7335 | + const url = '/order/erp/orderStages/upload'; | |
6108 | 7336 | function request( |
6109 | - option: PostOrderErpOrderEditOption, | |
6110 | - ): Promise<PostOrderErpOrderEditResponseSuccess> { | |
7337 | + option: PostOrderErpOrderStagesUploadOption, | |
7338 | + ): Promise<PostOrderErpOrderStagesUploadResponseSuccess> { | |
6111 | 7339 | return requester(request.url, { |
6112 | 7340 | method: request.method, |
6113 | 7341 | ...option, |
6114 | - }) as unknown as Promise<PostOrderErpOrderEditResponseSuccess>; | |
7342 | + }) as unknown as Promise<PostOrderErpOrderStagesUploadResponseSuccess>; | |
6115 | 7343 | } |
6116 | 7344 | |
6117 | 7345 | /** http method */ |
... | ... | @@ -6121,22 +7349,22 @@ export const postOrderErpOrderEdit = /* #__PURE__ */ (() => { |
6121 | 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 | 7355 | * @description |
6128 | - * orderBaseInfoQueryVO | |
7356 | + * orderStagesPayWayList | |
6129 | 7357 | */ |
6130 | 7358 | body: { |
6131 | 7359 | /** |
6132 | 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 | 7369 | * @description |
6142 | 7370 | * OK |
... | ... | @@ -6164,50 +7392,51 @@ export interface PostOrderErpOrderExportResponse { |
6164 | 7392 | 404: any; |
6165 | 7393 | } |
6166 | 7394 | |
6167 | -export type PostOrderErpOrderExportResponseSuccess = | |
6168 | - PostOrderErpOrderExportResponse[200]; | |
7395 | +export type PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess = | |
7396 | + PostOrderErpOrderStagesPayWaySaveOrUpdateResponse[200]; | |
6169 | 7397 | /** |
6170 | 7398 | * @description |
6171 | - * 导出订单 | |
6172 | - * @tags 订单管理 | |
7399 | + * 修改或者保存 | |
7400 | + * @tags order-stages-pay-way-controller | |
6173 | 7401 | * @produces * |
6174 | 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 | 7427 | * @description |
6199 | - * fieldVO | |
7428 | + * orderStagesPayWayDo | |
6200 | 7429 | */ |
6201 | 7430 | body: { |
6202 | 7431 | /** |
6203 | 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 | 7441 | * @description |
6213 | 7442 | * OK |
... | ... | @@ -6235,25 +7464,25 @@ export interface PostOrderErpOrderFieldUnlockApplyResponse { |
6235 | 7464 | 404: any; |
6236 | 7465 | } |
6237 | 7466 | |
6238 | -export type PostOrderErpOrderFieldUnlockApplyResponseSuccess = | |
6239 | - PostOrderErpOrderFieldUnlockApplyResponse[200]; | |
7467 | +export type PostOrderErpOrderStagesPayWaySelectResponseSuccess = | |
7468 | + PostOrderErpOrderStagesPayWaySelectResponse[200]; | |
6240 | 7469 | /** |
6241 | 7470 | * @description |
6242 | - * 字段解锁申请 | |
6243 | - * @tags 订单管理 | |
7471 | + * 查询该的分期比例 | |
7472 | + * @tags order-stages-pay-way-controller | |
6244 | 7473 | * @produces * |
6245 | 7474 | * @consumes application/json |
6246 | 7475 | */ |
6247 | -export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => { | |
7476 | +export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => { | |
6248 | 7477 | const method = 'post'; |
6249 | - const url = '/order/erp/order/field_unlock_apply'; | |
7478 | + const url = '/order/erp/orderStagesPayWay/select'; | |
6250 | 7479 | function request( |
6251 | - option: PostOrderErpOrderFieldUnlockApplyOption, | |
6252 | - ): Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess> { | |
7480 | + option: PostOrderErpOrderStagesPayWaySelectOption, | |
7481 | + ): Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess> { | |
6253 | 7482 | return requester(request.url, { |
6254 | 7483 | method: request.method, |
6255 | 7484 | ...option, |
6256 | - }) as unknown as Promise<PostOrderErpOrderFieldUnlockApplyResponseSuccess>; | |
7485 | + }) as unknown as Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess>; | |
6257 | 7486 | } |
6258 | 7487 | |
6259 | 7488 | /** http method */ |
... | ... | @@ -6263,22 +7492,22 @@ export const postOrderErpOrderFieldUnlockApply = /* #__PURE__ */ (() => { |
6263 | 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 | 7498 | * @description |
6270 | - * orderBaseInfoQueryVO | |
7499 | + * orderStagesPayWayFileDo | |
6271 | 7500 | */ |
6272 | 7501 | body: { |
6273 | 7502 | /** |
6274 | 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 | 7512 | * @description |
6284 | 7513 | * OK |
... | ... | @@ -6306,50 +7535,51 @@ export interface PostOrderErpOrderListByPageResponse { |
6306 | 7535 | 404: any; |
6307 | 7536 | } |
6308 | 7537 | |
6309 | -export type PostOrderErpOrderListByPageResponseSuccess = | |
6310 | - PostOrderErpOrderListByPageResponse[200]; | |
7538 | +export type PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess = | |
7539 | + PostOrderErpOrderStagesPayWayUploadForPayWayResponse[200]; | |
6311 | 7540 | /** |
6312 | 7541 | * @description |
6313 | - * 分页查询 | |
6314 | - * @tags 订单管理 | |
7542 | + * 付款合同文件上传 | |
7543 | + * @tags order-stages-pay-way-controller | |
6315 | 7544 | * @produces * |
6316 | 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 | 7570 | * @description |
6341 | - * orderBaseInfoQueryVO | |
7571 | + * id | |
6342 | 7572 | */ |
6343 | 7573 | body: { |
6344 | 7574 | /** |
6345 | 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 | 7584 | * @description |
6355 | 7585 | * OK |
... | ... | @@ -6357,9 +7587,9 @@ export interface PostOrderErpOrderQueryByIdResponse { |
6357 | 7587 | 200: ServerResult; |
6358 | 7588 | /** |
6359 | 7589 | * @description |
6360 | - * Created | |
7590 | + * No Content | |
6361 | 7591 | */ |
6362 | - 201: any; | |
7592 | + 204: any; | |
6363 | 7593 | /** |
6364 | 7594 | * @description |
6365 | 7595 | * Unauthorized |
... | ... | @@ -6370,32 +7600,26 @@ export interface PostOrderErpOrderQueryByIdResponse { |
6370 | 7600 | * Forbidden |
6371 | 7601 | */ |
6372 | 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 | 7608 | * @description |
6384 | - * queryById | |
6385 | - * @tags 订单管理 | |
7609 | + * toDetele | |
7610 | + * @tags order-zo-ning-controller | |
6386 | 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 | 7616 | function request( |
6393 | - option: PostOrderErpOrderQueryByIdOption, | |
6394 | - ): Promise<PostOrderErpOrderQueryByIdResponseSuccess> { | |
7617 | + option: DeleteOrderErpOrderZoNingDeleteOption, | |
7618 | + ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> { | |
6395 | 7619 | return requester(request.url, { |
6396 | 7620 | method: request.method, |
6397 | 7621 | ...option, |
6398 | - }) as unknown as Promise<PostOrderErpOrderQueryByIdResponseSuccess>; | |
7622 | + }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>; | |
6399 | 7623 | } |
6400 | 7624 | |
6401 | 7625 | /** http method */ |
... | ... | @@ -6405,22 +7629,22 @@ export const postOrderErpOrderQueryById = /* #__PURE__ */ (() => { |
6405 | 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 | 7635 | * @description |
6412 | - * orderStagesFromDo | |
7636 | + * orderZoNingProvinceUserDo | |
6413 | 7637 | */ |
6414 | 7638 | body: { |
6415 | 7639 | /** |
6416 | 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 | 7649 | * @description |
6426 | 7650 | * OK |
... | ... | @@ -6448,25 +7672,25 @@ export interface PostOrderErpOrderStagesAddResponse { |
6448 | 7672 | 404: any; |
6449 | 7673 | } |
6450 | 7674 | |
6451 | -export type PostOrderErpOrderStagesAddResponseSuccess = | |
6452 | - PostOrderErpOrderStagesAddResponse[200]; | |
7675 | +export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess = | |
7676 | + PostOrderErpOrderZoNingSaveOrUpdateResponse[200]; | |
6453 | 7677 | /** |
6454 | 7678 | * @description |
6455 | - * 添加或者修改分期账单 | |
6456 | - * @tags order-stages-controller | |
7679 | + * update | |
7680 | + * @tags order-zo-ning-controller | |
6457 | 7681 | * @produces * |
6458 | 7682 | * @consumes application/json |
6459 | 7683 | */ |
6460 | -export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => { | |
7684 | +export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => { | |
6461 | 7685 | const method = 'post'; |
6462 | - const url = '/order/erp/orderStages/add'; | |
7686 | + const url = '/order/erp/orderZoNing/saveOrUpdate'; | |
6463 | 7687 | function request( |
6464 | - option: PostOrderErpOrderStagesAddOption, | |
6465 | - ): Promise<PostOrderErpOrderStagesAddResponseSuccess> { | |
7688 | + option: PostOrderErpOrderZoNingSaveOrUpdateOption, | |
7689 | + ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> { | |
6466 | 7690 | return requester(request.url, { |
6467 | 7691 | method: request.method, |
6468 | 7692 | ...option, |
6469 | - }) as unknown as Promise<PostOrderErpOrderStagesAddResponseSuccess>; | |
7693 | + }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>; | |
6470 | 7694 | } |
6471 | 7695 | |
6472 | 7696 | /** http method */ |
... | ... | @@ -6476,22 +7700,8 @@ export const postOrderErpOrderStagesAdd = /* #__PURE__ */ (() => { |
6476 | 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 | 7706 | * @description |
6497 | 7707 | * OK |
... | ... | @@ -6499,11 +7709,6 @@ export interface DeleteOrderErpOrderStagesDelectResponse { |
6499 | 7709 | 200: ServerResult; |
6500 | 7710 | /** |
6501 | 7711 | * @description |
6502 | - * No Content | |
6503 | - */ | |
6504 | - 204: any; | |
6505 | - /** | |
6506 | - * @description | |
6507 | 7712 | * Unauthorized |
6508 | 7713 | */ |
6509 | 7714 | 401: any; |
... | ... | @@ -6512,26 +7717,28 @@ export interface DeleteOrderErpOrderStagesDelectResponse { |
6512 | 7717 | * Forbidden |
6513 | 7718 | */ |
6514 | 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 | 7730 | * @description |
6521 | - * 删除分期账单 | |
6522 | - * @tags order-stages-controller | |
7731 | + * 查询 | |
7732 | + * @tags order-zo-ning-controller | |
6523 | 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 | 7739 | return requester(request.url, { |
6532 | 7740 | method: request.method, |
6533 | - ...option, | |
6534 | - }) as unknown as Promise<DeleteOrderErpOrderStagesDelectResponseSuccess>; | |
7741 | + }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>; | |
6535 | 7742 | } |
6536 | 7743 | |
6537 | 7744 | /** http method */ |
... | ... | @@ -6541,13 +7748,13 @@ export const deleteOrderErpOrderStagesDelect = /* #__PURE__ */ (() => { |
6541 | 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 | 7754 | * @description |
6548 | 7755 | * OK |
6549 | 7756 | */ |
6550 | - 200: any; | |
7757 | + 200: ServerResult; | |
6551 | 7758 | /** |
6552 | 7759 | * @description |
6553 | 7760 | * Unauthorized |
... | ... | @@ -6565,21 +7772,21 @@ export interface GetOrderErpOrderStagesExportResponse { |
6565 | 7772 | 404: any; |
6566 | 7773 | } |
6567 | 7774 | |
6568 | -export type GetOrderErpOrderStagesExportResponseSuccess = | |
6569 | - GetOrderErpOrderStagesExportResponse[200]; | |
7775 | +export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess = | |
7776 | + GetOrderErpOrderZoNingSelectProvinceAllResponse[200]; | |
6570 | 7777 | /** |
6571 | 7778 | * @description |
6572 | - * 导出分期账单 | |
6573 | - * @tags order-stages-controller | |
7779 | + * 查询所有省份 | |
7780 | + * @tags order-zo-ning-controller | |
6574 | 7781 | * @produces * |
6575 | 7782 | */ |
6576 | -export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() => { | |
7783 | +export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => { | |
6577 | 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 | 7787 | return requester(request.url, { |
6581 | 7788 | method: request.method, |
6582 | - }) as unknown as Promise<GetOrderErpOrderStagesExportResponseSuccess>; | |
7789 | + }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>; | |
6583 | 7790 | } |
6584 | 7791 | |
6585 | 7792 | /** http method */ |
... | ... | @@ -6589,22 +7796,22 @@ export const getOrderErpOrderStagesExport = /* #__PURE__ */ (() => { |
6589 | 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 | 7802 | * @description |
6596 | - * file | |
7803 | + * zoning | |
6597 | 7804 | */ |
6598 | - formData: { | |
7805 | + body: { | |
6599 | 7806 | /** |
6600 | 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 | 7816 | * @description |
6610 | 7817 | * OK |
... | ... | @@ -6632,25 +7839,74 @@ export interface PostOrderErpOrderStagesImportResponse { |
6632 | 7839 | 404: any; |
6633 | 7840 | } |
6634 | 7841 | |
6635 | -export type PostOrderErpOrderStagesImportResponseSuccess = | |
6636 | - PostOrderErpOrderStagesImportResponse[200]; | |
7842 | +export type PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess = | |
7843 | + PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse[200]; | |
6637 | 7844 | /** |
6638 | 7845 | * @description |
6639 | - * 导入分期账单 | |
6640 | - * @tags order-stages-controller | |
7846 | + * 查询出这个大区所包含的销售 | |
7847 | + * @tags order-zo-ning-controller | |
6641 | 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 | 7907 | return requester(request.url, { |
6651 | 7908 | method: request.method, |
6652 | - ...option, | |
6653 | - }) as unknown as Promise<PostOrderErpOrderStagesImportResponseSuccess>; | |
7909 | + }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>; | |
6654 | 7910 | } |
6655 | 7911 | |
6656 | 7912 | /** http method */ |
... | ... | @@ -6660,8 +7916,22 @@ export const postOrderErpOrderStagesImport = /* #__PURE__ */ (() => { |
6660 | 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 | 7936 | * @description |
6667 | 7937 | * OK |
... | ... | @@ -6669,6 +7939,11 @@ export interface GetOrderErpOrderStagesListAllResponse { |
6669 | 7939 | 200: ServerResult; |
6670 | 7940 | /** |
6671 | 7941 | * @description |
7942 | + * Created | |
7943 | + */ | |
7944 | + 201: any; | |
7945 | + /** | |
7946 | + * @description | |
6672 | 7947 | * Unauthorized |
6673 | 7948 | */ |
6674 | 7949 | 401: any; |
... | ... | @@ -6684,21 +7959,25 @@ export interface GetOrderErpOrderStagesListAllResponse { |
6684 | 7959 | 404: any; |
6685 | 7960 | } |
6686 | 7961 | |
6687 | -export type GetOrderErpOrderStagesListAllResponseSuccess = | |
6688 | - GetOrderErpOrderStagesListAllResponse[200]; | |
7962 | +export type PostOrderErpProfitAnalysisResponseSuccess = | |
7963 | + PostOrderErpProfitAnalysisResponse[200]; | |
6689 | 7964 | /** |
6690 | 7965 | * @description |
6691 | - * 查询所有分期账单 | |
6692 | - * @tags order-stages-controller | |
7966 | + * analysis | |
7967 | + * @tags order-profit-controller | |
6693 | 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 | 7977 | return requester(request.url, { |
6700 | 7978 | method: request.method, |
6701 | - }) as unknown as Promise<GetOrderErpOrderStagesListAllResponseSuccess>; | |
7979 | + ...option, | |
7980 | + }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>; | |
6702 | 7981 | } |
6703 | 7982 | |
6704 | 7983 | /** http method */ |
... | ... | @@ -6708,22 +7987,22 @@ export const getOrderErpOrderStagesListAll = /* #__PURE__ */ (() => { |
6708 | 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 | 7993 | * @description |
6715 | - * orderStagesFromDo | |
7994 | + * roleVO | |
6716 | 7995 | */ |
6717 | 7996 | body: { |
6718 | 7997 | /** |
6719 | 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 | 8007 | * @description |
6729 | 8008 | * OK |
... | ... | @@ -6751,25 +8030,25 @@ export interface PostOrderErpOrderStagesSaveOrUpdateResponse { |
6751 | 8030 | 404: any; |
6752 | 8031 | } |
6753 | 8032 | |
6754 | -export type PostOrderErpOrderStagesSaveOrUpdateResponseSuccess = | |
6755 | - PostOrderErpOrderStagesSaveOrUpdateResponse[200]; | |
8033 | +export type PostOrderErpRolesAddResponseSuccess = | |
8034 | + PostOrderErpRolesAddResponse[200]; | |
6756 | 8035 | /** |
6757 | 8036 | * @description |
6758 | - * 添加或者修改分期账单 | |
6759 | - * @tags order-stages-controller | |
8037 | + * 新增角色 | |
8038 | + * @tags 系统:角色管理 | |
6760 | 8039 | * @produces * |
6761 | 8040 | * @consumes application/json |
6762 | 8041 | */ |
6763 | -export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => { | |
8042 | +export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { | |
6764 | 8043 | const method = 'post'; |
6765 | - const url = '/order/erp/orderStages/saveOrUpdate'; | |
8044 | + const url = '/order/erp/roles/add'; | |
6766 | 8045 | function request( |
6767 | - option: PostOrderErpOrderStagesSaveOrUpdateOption, | |
6768 | - ): Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess> { | |
8046 | + option: PostOrderErpRolesAddOption, | |
8047 | + ): Promise<PostOrderErpRolesAddResponseSuccess> { | |
6769 | 8048 | return requester(request.url, { |
6770 | 8049 | method: request.method, |
6771 | 8050 | ...option, |
6772 | - }) as unknown as Promise<PostOrderErpOrderStagesSaveOrUpdateResponseSuccess>; | |
8051 | + }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>; | |
6773 | 8052 | } |
6774 | 8053 | |
6775 | 8054 | /** http method */ |
... | ... | @@ -6779,22 +8058,22 @@ export const postOrderErpOrderStagesSaveOrUpdate = /* #__PURE__ */ (() => { |
6779 | 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 | 8064 | * @description |
6786 | - * orderStagesSelDo | |
8065 | + * queryVO | |
6787 | 8066 | */ |
6788 | 8067 | body: { |
6789 | 8068 | /** |
6790 | 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 | 8078 | * @description |
6800 | 8079 | * OK |
... | ... | @@ -6822,25 +8101,25 @@ export interface PostOrderErpOrderStagesSearchResponse { |
6822 | 8101 | 404: any; |
6823 | 8102 | } |
6824 | 8103 | |
6825 | -export type PostOrderErpOrderStagesSearchResponseSuccess = | |
6826 | - PostOrderErpOrderStagesSearchResponse[200]; | |
8104 | +export type PostOrderErpRolesAllResponseSuccess = | |
8105 | + PostOrderErpRolesAllResponse[200]; | |
6827 | 8106 | /** |
6828 | 8107 | * @description |
6829 | - * 条件搜索分期账单 | |
6830 | - * @tags order-stages-controller | |
8108 | + * 返回全部的角色 | |
8109 | + * @tags 系统:角色管理 | |
6831 | 8110 | * @produces * |
6832 | 8111 | * @consumes application/json |
6833 | 8112 | */ |
6834 | -export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => { | |
8113 | +export const postOrderErpRolesAll = /* #__PURE__ */ (() => { | |
6835 | 8114 | const method = 'post'; |
6836 | - const url = '/order/erp/orderStages/search'; | |
8115 | + const url = '/order/erp/roles/all'; | |
6837 | 8116 | function request( |
6838 | - option: PostOrderErpOrderStagesSearchOption, | |
6839 | - ): Promise<PostOrderErpOrderStagesSearchResponseSuccess> { | |
8117 | + option: PostOrderErpRolesAllOption, | |
8118 | + ): Promise<PostOrderErpRolesAllResponseSuccess> { | |
6840 | 8119 | return requester(request.url, { |
6841 | 8120 | method: request.method, |
6842 | 8121 | ...option, |
6843 | - }) as unknown as Promise<PostOrderErpOrderStagesSearchResponseSuccess>; | |
8122 | + }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>; | |
6844 | 8123 | } |
6845 | 8124 | |
6846 | 8125 | /** http method */ |
... | ... | @@ -6850,22 +8129,22 @@ export const postOrderErpOrderStagesSearch = /* #__PURE__ */ (() => { |
6850 | 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 | 8135 | * @description |
6857 | - * file | |
8136 | + * roleVO | |
6858 | 8137 | */ |
6859 | - formData: { | |
8138 | + body: { | |
6860 | 8139 | /** |
6861 | 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 | 8149 | * @description |
6871 | 8150 | * OK |
... | ... | @@ -6893,25 +8172,25 @@ export interface PostOrderErpOrderStagesUploadResponse { |
6893 | 8172 | 404: any; |
6894 | 8173 | } |
6895 | 8174 | |
6896 | -export type PostOrderErpOrderStagesUploadResponseSuccess = | |
6897 | - PostOrderErpOrderStagesUploadResponse[200]; | |
8175 | +export type PostOrderErpRolesAuthMenuResponseSuccess = | |
8176 | + PostOrderErpRolesAuthMenuResponse[200]; | |
6898 | 8177 | /** |
6899 | 8178 | * @description |
6900 | - * 合同文件上传 | |
6901 | - * @tags order-stages-controller | |
8179 | + * 授权角色菜单 | |
8180 | + * @tags 系统:角色管理 | |
6902 | 8181 | * @produces * |
6903 | - * @consumes multipart/form-data | |
8182 | + * @consumes application/json | |
6904 | 8183 | */ |
6905 | -export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => { | |
8184 | +export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { | |
6906 | 8185 | const method = 'post'; |
6907 | - const url = '/order/erp/orderStages/upload'; | |
8186 | + const url = '/order/erp/roles/auth_menu'; | |
6908 | 8187 | function request( |
6909 | - option: PostOrderErpOrderStagesUploadOption, | |
6910 | - ): Promise<PostOrderErpOrderStagesUploadResponseSuccess> { | |
8188 | + option: PostOrderErpRolesAuthMenuOption, | |
8189 | + ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> { | |
6911 | 8190 | return requester(request.url, { |
6912 | 8191 | method: request.method, |
6913 | 8192 | ...option, |
6914 | - }) as unknown as Promise<PostOrderErpOrderStagesUploadResponseSuccess>; | |
8193 | + }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>; | |
6915 | 8194 | } |
6916 | 8195 | |
6917 | 8196 | /** http method */ |
... | ... | @@ -6921,22 +8200,22 @@ export const postOrderErpOrderStagesUpload = /* #__PURE__ */ (() => { |
6921 | 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 | 8206 | * @description |
6928 | - * orderStagesPayWayList | |
8207 | + * queryVO | |
6929 | 8208 | */ |
6930 | 8209 | body: { |
6931 | 8210 | /** |
6932 | 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 | 8220 | * @description |
6942 | 8221 | * OK |
... | ... | @@ -6964,51 +8243,50 @@ export interface PostOrderErpOrderStagesPayWaySaveOrUpdateResponse { |
6964 | 8243 | 404: any; |
6965 | 8244 | } |
6966 | 8245 | |
6967 | -export type PostOrderErpOrderStagesPayWaySaveOrUpdateResponseSuccess = | |
6968 | - PostOrderErpOrderStagesPayWaySaveOrUpdateResponse[200]; | |
8246 | +export type PostOrderErpRolesDeleteResponseSuccess = | |
8247 | + PostOrderErpRolesDeleteResponse[200]; | |
6969 | 8248 | /** |
6970 | 8249 | * @description |
6971 | - * 修改或者保存 | |
6972 | - * @tags order-stages-pay-way-controller | |
8250 | + * 删除角色 | |
8251 | + * @tags 系统:角色管理 | |
6973 | 8252 | * @produces * |
6974 | 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 | 8277 | * @description |
7000 | - * orderStagesPayWayDo | |
8278 | + * queryVO | |
7001 | 8279 | */ |
7002 | 8280 | body: { |
7003 | 8281 | /** |
7004 | 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 | 8291 | * @description |
7014 | 8292 | * OK |
... | ... | @@ -7036,25 +8314,25 @@ export interface PostOrderErpOrderStagesPayWaySelectResponse { |
7036 | 8314 | 404: any; |
7037 | 8315 | } |
7038 | 8316 | |
7039 | -export type PostOrderErpOrderStagesPayWaySelectResponseSuccess = | |
7040 | - PostOrderErpOrderStagesPayWaySelectResponse[200]; | |
8317 | +export type PostOrderErpRolesDetailResponseSuccess = | |
8318 | + PostOrderErpRolesDetailResponse[200]; | |
7041 | 8319 | /** |
7042 | 8320 | * @description |
7043 | - * 查询该的分期比例 | |
7044 | - * @tags order-stages-pay-way-controller | |
8321 | + * 获取单个role | |
8322 | + * @tags 系统:角色管理 | |
7045 | 8323 | * @produces * |
7046 | 8324 | * @consumes application/json |
7047 | 8325 | */ |
7048 | -export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => { | |
8326 | +export const postOrderErpRolesDetail = /* #__PURE__ */ (() => { | |
7049 | 8327 | const method = 'post'; |
7050 | - const url = '/order/erp/orderStagesPayWay/select'; | |
8328 | + const url = '/order/erp/roles/detail'; | |
7051 | 8329 | function request( |
7052 | - option: PostOrderErpOrderStagesPayWaySelectOption, | |
7053 | - ): Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess> { | |
8330 | + option: PostOrderErpRolesDetailOption, | |
8331 | + ): Promise<PostOrderErpRolesDetailResponseSuccess> { | |
7054 | 8332 | return requester(request.url, { |
7055 | 8333 | method: request.method, |
7056 | 8334 | ...option, |
7057 | - }) as unknown as Promise<PostOrderErpOrderStagesPayWaySelectResponseSuccess>; | |
8335 | + }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>; | |
7058 | 8336 | } |
7059 | 8337 | |
7060 | 8338 | /** http method */ |
... | ... | @@ -7064,22 +8342,22 @@ export const postOrderErpOrderStagesPayWaySelect = /* #__PURE__ */ (() => { |
7064 | 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 | 8348 | * @description |
7071 | - * orderStagesPayWayFileDo | |
8349 | + * roleVO | |
7072 | 8350 | */ |
7073 | 8351 | body: { |
7074 | 8352 | /** |
7075 | 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 | 8362 | * @description |
7085 | 8363 | * OK |
... | ... | @@ -7107,51 +8385,50 @@ export interface PostOrderErpOrderStagesPayWayUploadForPayWayResponse { |
7107 | 8385 | 404: any; |
7108 | 8386 | } |
7109 | 8387 | |
7110 | -export type PostOrderErpOrderStagesPayWayUploadForPayWayResponseSuccess = | |
7111 | - PostOrderErpOrderStagesPayWayUploadForPayWayResponse[200]; | |
8388 | +export type PostOrderErpRolesEditResponseSuccess = | |
8389 | + PostOrderErpRolesEditResponse[200]; | |
7112 | 8390 | /** |
7113 | 8391 | * @description |
7114 | - * 付款合同文件上传 | |
7115 | - * @tags order-stages-pay-way-controller | |
8392 | + * 修改角色 | |
8393 | + * @tags 系统:角色管理 | |
7116 | 8394 | * @produces * |
7117 | 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 | 8419 | * @description |
7143 | - * id | |
8420 | + * queryVO | |
7144 | 8421 | */ |
7145 | 8422 | body: { |
7146 | 8423 | /** |
7147 | 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 | 8433 | * @description |
7157 | 8434 | * OK |
... | ... | @@ -7159,9 +8436,9 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse { |
7159 | 8436 | 200: ServerResult; |
7160 | 8437 | /** |
7161 | 8438 | * @description |
7162 | - * No Content | |
8439 | + * Created | |
7163 | 8440 | */ |
7164 | - 204: any; | |
8441 | + 201: any; | |
7165 | 8442 | /** |
7166 | 8443 | * @description |
7167 | 8444 | * Unauthorized |
... | ... | @@ -7172,26 +8449,32 @@ export interface DeleteOrderErpOrderZoNingDeleteResponse { |
7172 | 8449 | * Forbidden |
7173 | 8450 | */ |
7174 | 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 | 8462 | * @description |
7181 | - * toDetele | |
7182 | - * @tags order-zo-ning-controller | |
8463 | + * 查询角色 | |
8464 | + * @tags 系统:角色管理 | |
7183 | 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 | 8471 | function request( |
7189 | - option: DeleteOrderErpOrderZoNingDeleteOption, | |
7190 | - ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> { | |
8472 | + option: PostOrderErpRolesListByPageOption, | |
8473 | + ): Promise<PostOrderErpRolesListByPageResponseSuccess> { | |
7191 | 8474 | return requester(request.url, { |
7192 | 8475 | method: request.method, |
7193 | 8476 | ...option, |
7194 | - }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>; | |
8477 | + }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>; | |
7195 | 8478 | } |
7196 | 8479 | |
7197 | 8480 | /** http method */ |
... | ... | @@ -7201,22 +8484,22 @@ export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => { |
7201 | 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 | 8490 | * @description |
7208 | - * orderZoNingProvinceUserDo | |
8491 | + * userVO | |
7209 | 8492 | */ |
7210 | 8493 | body: { |
7211 | 8494 | /** |
7212 | 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 | 8504 | * @description |
7222 | 8505 | * OK |
... | ... | @@ -7244,25 +8527,25 @@ export interface PostOrderErpOrderZoNingSaveOrUpdateResponse { |
7244 | 8527 | 404: any; |
7245 | 8528 | } |
7246 | 8529 | |
7247 | -export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess = | |
7248 | - PostOrderErpOrderZoNingSaveOrUpdateResponse[200]; | |
8530 | +export type PostOrderErpUsersAddResponseSuccess = | |
8531 | + PostOrderErpUsersAddResponse[200]; | |
7249 | 8532 | /** |
7250 | 8533 | * @description |
7251 | - * update | |
7252 | - * @tags order-zo-ning-controller | |
8534 | + * 新增用户 | |
8535 | + * @tags 系统:用户管理 | |
7253 | 8536 | * @produces * |
7254 | 8537 | * @consumes application/json |
7255 | 8538 | */ |
7256 | -export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => { | |
8539 | +export const postOrderErpUsersAdd = /* #__PURE__ */ (() => { | |
7257 | 8540 | const method = 'post'; |
7258 | - const url = '/order/erp/orderZoNing/saveOrUpdate'; | |
8541 | + const url = '/order/erp/users/add'; | |
7259 | 8542 | function request( |
7260 | - option: PostOrderErpOrderZoNingSaveOrUpdateOption, | |
7261 | - ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> { | |
8543 | + option: PostOrderErpUsersAddOption, | |
8544 | + ): Promise<PostOrderErpUsersAddResponseSuccess> { | |
7262 | 8545 | return requester(request.url, { |
7263 | 8546 | method: request.method, |
7264 | 8547 | ...option, |
7265 | - }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>; | |
8548 | + }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>; | |
7266 | 8549 | } |
7267 | 8550 | |
7268 | 8551 | /** http method */ |
... | ... | @@ -7272,8 +8555,22 @@ export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => { |
7272 | 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 | 8575 | * @description |
7279 | 8576 | * OK |
... | ... | @@ -7281,6 +8578,11 @@ export interface GetOrderErpOrderZoNingSelectAllResponse { |
7281 | 8578 | 200: ServerResult; |
7282 | 8579 | /** |
7283 | 8580 | * @description |
8581 | + * Created | |
8582 | + */ | |
8583 | + 201: any; | |
8584 | + /** | |
8585 | + * @description | |
7284 | 8586 | * Unauthorized |
7285 | 8587 | */ |
7286 | 8588 | 401: any; |
... | ... | @@ -7296,21 +8598,25 @@ export interface GetOrderErpOrderZoNingSelectAllResponse { |
7296 | 8598 | 404: any; |
7297 | 8599 | } |
7298 | 8600 | |
7299 | -export type GetOrderErpOrderZoNingSelectAllResponseSuccess = | |
7300 | - GetOrderErpOrderZoNingSelectAllResponse[200]; | |
8601 | +export type PostOrderErpUsersAuthRoleResponseSuccess = | |
8602 | + PostOrderErpUsersAuthRoleResponse[200]; | |
7301 | 8603 | /** |
7302 | 8604 | * @description |
7303 | - * 查询 | |
7304 | - * @tags order-zo-ning-controller | |
8605 | + * 授权角色 | |
8606 | + * @tags 系统:用户管理 | |
7305 | 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 | 8616 | return requester(request.url, { |
7312 | 8617 | method: request.method, |
7313 | - }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>; | |
8618 | + ...option, | |
8619 | + }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>; | |
7314 | 8620 | } |
7315 | 8621 | |
7316 | 8622 | /** http method */ |
... | ... | @@ -7320,8 +8626,22 @@ export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => { |
7320 | 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 | 8646 | * @description |
7327 | 8647 | * OK |
... | ... | @@ -7329,6 +8649,11 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { |
7329 | 8649 | 200: ServerResult; |
7330 | 8650 | /** |
7331 | 8651 | * @description |
8652 | + * Created | |
8653 | + */ | |
8654 | + 201: any; | |
8655 | + /** | |
8656 | + * @description | |
7332 | 8657 | * Unauthorized |
7333 | 8658 | */ |
7334 | 8659 | 401: any; |
... | ... | @@ -7344,21 +8669,25 @@ export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { |
7344 | 8669 | 404: any; |
7345 | 8670 | } |
7346 | 8671 | |
7347 | -export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess = | |
7348 | - GetOrderErpOrderZoNingSelectProvinceAllResponse[200]; | |
8672 | +export type PostOrderErpUsersDeleteResponseSuccess = | |
8673 | + PostOrderErpUsersDeleteResponse[200]; | |
7349 | 8674 | /** |
7350 | 8675 | * @description |
7351 | - * 查询所有省份 | |
7352 | - * @tags order-zo-ning-controller | |
8676 | + * 删除用户 | |
8677 | + * @tags 系统:用户管理 | |
7353 | 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 | 8687 | return requester(request.url, { |
7360 | 8688 | method: request.method, |
7361 | - }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>; | |
8689 | + ...option, | |
8690 | + }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>; | |
7362 | 8691 | } |
7363 | 8692 | |
7364 | 8693 | /** http method */ |
... | ... | @@ -7368,22 +8697,22 @@ export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => { |
7368 | 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 | 8703 | * @description |
7375 | - * zoning | |
8704 | + * userVO | |
7376 | 8705 | */ |
7377 | 8706 | body: { |
7378 | 8707 | /** |
7379 | 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 | 8717 | * @description |
7389 | 8718 | * OK |
... | ... | @@ -7411,37 +8740,50 @@ export interface PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse { |
7411 | 8740 | 404: any; |
7412 | 8741 | } |
7413 | 8742 | |
7414 | -export type PostOrderErpOrderZoNingSelectSaleUserByProvinceResponseSuccess = | |
7415 | - PostOrderErpOrderZoNingSelectSaleUserByProvinceResponse[200]; | |
8743 | +export type PostOrderErpUsersEditResponseSuccess = | |
8744 | + PostOrderErpUsersEditResponse[200]; | |
7416 | 8745 | /** |
7417 | 8746 | * @description |
7418 | - * 查询出这个大区所包含的销售 | |
7419 | - * @tags order-zo-ning-controller | |
8747 | + * 修改用户 | |
8748 | + * @tags 系统:用户管理 | |
7420 | 8749 | * @produces * |
7421 | 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 | 8788 | * @description |
7447 | 8789 | * OK |
... | ... | @@ -7449,6 +8791,11 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse { |
7449 | 8791 | 200: ServerResult; |
7450 | 8792 | /** |
7451 | 8793 | * @description |
8794 | + * Created | |
8795 | + */ | |
8796 | + 201: any; | |
8797 | + /** | |
8798 | + * @description | |
7452 | 8799 | * Unauthorized |
7453 | 8800 | */ |
7454 | 8801 | 401: any; |
... | ... | @@ -7464,21 +8811,25 @@ export interface GetOrderErpOrderZoNingSelectUserAllResponse { |
7464 | 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 | 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 | 8829 | return requester(request.url, { |
7480 | 8830 | method: request.method, |
7481 | - }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>; | |
8831 | + ...option, | |
8832 | + }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>; | |
7482 | 8833 | } |
7483 | 8834 | |
7484 | 8835 | /** http method */ |
... | ... | @@ -7488,22 +8839,22 @@ export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => { |
7488 | 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 | 8845 | * @description |
7495 | - * orderProfitAnalysisVo | |
8846 | + * resetPwdVO | |
7496 | 8847 | */ |
7497 | 8848 | body: { |
7498 | 8849 | /** |
7499 | 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 | 8859 | * @description |
7509 | 8860 | * OK |
... | ... | @@ -7531,25 +8882,25 @@ export interface PostOrderErpProfitAnalysisResponse { |
7531 | 8882 | 404: any; |
7532 | 8883 | } |
7533 | 8884 | |
7534 | -export type PostOrderErpProfitAnalysisResponseSuccess = | |
7535 | - PostOrderErpProfitAnalysisResponse[200]; | |
8885 | +export type PostOrderErpUsersResetResponseSuccess = | |
8886 | + PostOrderErpUsersResetResponse[200]; | |
7536 | 8887 | /** |
7537 | 8888 | * @description |
7538 | - * analysis | |
7539 | - * @tags order-profit-controller | |
8889 | + * 重置密码 | |
8890 | + * @tags 系统:用户管理 | |
7540 | 8891 | * @produces * |
7541 | 8892 | * @consumes application/json |
7542 | 8893 | */ |
7543 | -export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => { | |
8894 | +export const postOrderErpUsersReset = /* #__PURE__ */ (() => { | |
7544 | 8895 | const method = 'post'; |
7545 | - const url = '/order/erp/profit/analysis'; | |
8896 | + const url = '/order/erp/users/reset'; | |
7546 | 8897 | function request( |
7547 | - option: PostOrderErpProfitAnalysisOption, | |
7548 | - ): Promise<PostOrderErpProfitAnalysisResponseSuccess> { | |
8898 | + option: PostOrderErpUsersResetOption, | |
8899 | + ): Promise<PostOrderErpUsersResetResponseSuccess> { | |
7549 | 8900 | return requester(request.url, { |
7550 | 8901 | method: request.method, |
7551 | 8902 | ...option, |
7552 | - }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>; | |
8903 | + }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>; | |
7553 | 8904 | } |
7554 | 8905 | |
7555 | 8906 | /** http method */ |
... | ... | @@ -7559,22 +8910,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => { |
7559 | 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 | 8916 | * @description |
7566 | - * roleVO | |
8917 | + * pwdVO | |
7567 | 8918 | */ |
7568 | 8919 | body: { |
7569 | 8920 | /** |
7570 | 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 | 8930 | * @description |
7580 | 8931 | * OK |
... | ... | @@ -7602,25 +8953,25 @@ export interface PostOrderErpRolesAddResponse { |
7602 | 8953 | 404: any; |
7603 | 8954 | } |
7604 | 8955 | |
7605 | -export type PostOrderErpRolesAddResponseSuccess = | |
7606 | - PostOrderErpRolesAddResponse[200]; | |
8956 | +export type PostOrderErpUsersUpdatePassResponseSuccess = | |
8957 | + PostOrderErpUsersUpdatePassResponse[200]; | |
7607 | 8958 | /** |
7608 | 8959 | * @description |
7609 | - * 新增角色 | |
7610 | - * @tags 系统:角色管理 | |
8960 | + * 修改密码 | |
8961 | + * @tags 系统:用户管理 | |
7611 | 8962 | * @produces * |
7612 | 8963 | * @consumes application/json |
7613 | 8964 | */ |
7614 | -export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { | |
8965 | +export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { | |
7615 | 8966 | const method = 'post'; |
7616 | - const url = '/order/erp/roles/add'; | |
8967 | + const url = '/order/erp/users/update_pass'; | |
7617 | 8968 | function request( |
7618 | - option: PostOrderErpRolesAddOption, | |
7619 | - ): Promise<PostOrderErpRolesAddResponseSuccess> { | |
8969 | + option: PostOrderErpUsersUpdatePassOption, | |
8970 | + ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> { | |
7620 | 8971 | return requester(request.url, { |
7621 | 8972 | method: request.method, |
7622 | 8973 | ...option, |
7623 | - }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>; | |
8974 | + }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>; | |
7624 | 8975 | } |
7625 | 8976 | |
7626 | 8977 | /** http method */ |
... | ... | @@ -7630,22 +8981,22 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { |
7630 | 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 | 8987 | * @description |
7637 | - * queryVO | |
8988 | + * file | |
7638 | 8989 | */ |
7639 | - body: { | |
8990 | + formData: { | |
7640 | 8991 | /** |
7641 | 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 | 9001 | * @description |
7651 | 9002 | * OK |
... | ... | @@ -7673,25 +9024,25 @@ export interface PostOrderErpRolesAllResponse { |
7673 | 9024 | 404: any; |
7674 | 9025 | } |
7675 | 9026 | |
7676 | -export type PostOrderErpRolesAllResponseSuccess = | |
7677 | - PostOrderErpRolesAllResponse[200]; | |
9027 | +export type PostOrderImportImportWeightAndVolumeResponseSuccess = | |
9028 | + PostOrderImportImportWeightAndVolumeResponse[200]; | |
7678 | 9029 | /** |
7679 | 9030 | * @description |
7680 | - * 返回全部的角色 | |
7681 | - * @tags 系统:角色管理 | |
9031 | + * 导入重量和体积 | |
9032 | + * @tags 导入 | |
7682 | 9033 | * @produces * |
7683 | - * @consumes application/json | |
9034 | + * @consumes multipart/form-data | |
7684 | 9035 | */ |
7685 | -export const postOrderErpRolesAll = /* #__PURE__ */ (() => { | |
9036 | +export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => { | |
7686 | 9037 | const method = 'post'; |
7687 | - const url = '/order/erp/roles/all'; | |
9038 | + const url = '/order/import/importWeightAndVolume'; | |
7688 | 9039 | function request( |
7689 | - option: PostOrderErpRolesAllOption, | |
7690 | - ): Promise<PostOrderErpRolesAllResponseSuccess> { | |
9040 | + option: PostOrderImportImportWeightAndVolumeOption, | |
9041 | + ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> { | |
7691 | 9042 | return requester(request.url, { |
7692 | 9043 | method: request.method, |
7693 | 9044 | ...option, |
7694 | - }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>; | |
9045 | + }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>; | |
7695 | 9046 | } |
7696 | 9047 | |
7697 | 9048 | /** http method */ |
... | ... | @@ -7701,22 +9052,22 @@ export const postOrderErpRolesAll = /* #__PURE__ */ (() => { |
7701 | 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 | 9058 | * @description |
7708 | - * roleVO | |
9059 | + * request | |
7709 | 9060 | */ |
7710 | 9061 | body: { |
7711 | 9062 | /** |
7712 | 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 | 9072 | * @description |
7722 | 9073 | * OK |
... | ... | @@ -7744,25 +9095,24 @@ export interface PostOrderErpRolesAuthMenuResponse { |
7744 | 9095 | 404: any; |
7745 | 9096 | } |
7746 | 9097 | |
7747 | -export type PostOrderErpRolesAuthMenuResponseSuccess = | |
7748 | - PostOrderErpRolesAuthMenuResponse[200]; | |
9098 | +export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200]; | |
7749 | 9099 | /** |
7750 | 9100 | * @description |
7751 | - * 授权角色菜单 | |
7752 | - * @tags 系统:角色管理 | |
9101 | + * 财务审核 | |
9102 | + * @tags prepaid-controller | |
7753 | 9103 | * @produces * |
7754 | 9104 | * @consumes application/json |
7755 | 9105 | */ |
7756 | -export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { | |
9106 | +export const postPrepaidAudit = /* #__PURE__ */ (() => { | |
7757 | 9107 | const method = 'post'; |
7758 | - const url = '/order/erp/roles/auth_menu'; | |
9108 | + const url = '/prepaid/audit'; | |
7759 | 9109 | function request( |
7760 | - option: PostOrderErpRolesAuthMenuOption, | |
7761 | - ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> { | |
9110 | + option: PostPrepaidAuditOption, | |
9111 | + ): Promise<PostPrepaidAuditResponseSuccess> { | |
7762 | 9112 | return requester(request.url, { |
7763 | 9113 | method: request.method, |
7764 | 9114 | ...option, |
7765 | - }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>; | |
9115 | + }) as unknown as Promise<PostPrepaidAuditResponseSuccess>; | |
7766 | 9116 | } |
7767 | 9117 | |
7768 | 9118 | /** http method */ |
... | ... | @@ -7772,22 +9122,22 @@ export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { |
7772 | 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 | 9128 | * @description |
7779 | - * queryVO | |
9129 | + * request | |
7780 | 9130 | */ |
7781 | 9131 | body: { |
7782 | 9132 | /** |
7783 | 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 | 9142 | * @description |
7793 | 9143 | * OK |
... | ... | @@ -7815,25 +9165,24 @@ export interface PostOrderErpRolesDeleteResponse { |
7815 | 9165 | 404: any; |
7816 | 9166 | } |
7817 | 9167 | |
7818 | -export type PostOrderErpRolesDeleteResponseSuccess = | |
7819 | - PostOrderErpRolesDeleteResponse[200]; | |
9168 | +export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200]; | |
7820 | 9169 | /** |
7821 | 9170 | * @description |
7822 | - * 删除角色 | |
7823 | - * @tags 系统:角色管理 | |
9171 | + * 新增预存 | |
9172 | + * @tags prepaid-controller | |
7824 | 9173 | * @produces * |
7825 | 9174 | * @consumes application/json |
7826 | 9175 | */ |
7827 | -export const postOrderErpRolesDelete = /* #__PURE__ */ (() => { | |
9176 | +export const postPrepaidCreate = /* #__PURE__ */ (() => { | |
7828 | 9177 | const method = 'post'; |
7829 | - const url = '/order/erp/roles/delete'; | |
9178 | + const url = '/prepaid/create'; | |
7830 | 9179 | function request( |
7831 | - option: PostOrderErpRolesDeleteOption, | |
7832 | - ): Promise<PostOrderErpRolesDeleteResponseSuccess> { | |
9180 | + option: PostPrepaidCreateOption, | |
9181 | + ): Promise<PostPrepaidCreateResponseSuccess> { | |
7833 | 9182 | return requester(request.url, { |
7834 | 9183 | method: request.method, |
7835 | 9184 | ...option, |
7836 | - }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>; | |
9185 | + }) as unknown as Promise<PostPrepaidCreateResponseSuccess>; | |
7837 | 9186 | } |
7838 | 9187 | |
7839 | 9188 | /** http method */ |
... | ... | @@ -7843,22 +9192,22 @@ export const postOrderErpRolesDelete = /* #__PURE__ */ (() => { |
7843 | 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 | 9198 | * @description |
7850 | - * queryVO | |
9199 | + * request | |
7851 | 9200 | */ |
7852 | 9201 | body: { |
7853 | 9202 | /** |
7854 | 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 | 9212 | * @description |
7864 | 9213 | * OK |
... | ... | @@ -7886,25 +9235,24 @@ export interface PostOrderErpRolesDetailResponse { |
7886 | 9235 | 404: any; |
7887 | 9236 | } |
7888 | 9237 | |
7889 | -export type PostOrderErpRolesDetailResponseSuccess = | |
7890 | - PostOrderErpRolesDetailResponse[200]; | |
9238 | +export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200]; | |
7891 | 9239 | /** |
7892 | 9240 | * @description |
7893 | - * 获取单个role | |
7894 | - * @tags 系统:角色管理 | |
9241 | + * 删除预存 | |
9242 | + * @tags prepaid-controller | |
7895 | 9243 | * @produces * |
7896 | 9244 | * @consumes application/json |
7897 | 9245 | */ |
7898 | -export const postOrderErpRolesDetail = /* #__PURE__ */ (() => { | |
9246 | +export const postPrepaidDelete = /* #__PURE__ */ (() => { | |
7899 | 9247 | const method = 'post'; |
7900 | - const url = '/order/erp/roles/detail'; | |
9248 | + const url = '/prepaid/delete'; | |
7901 | 9249 | function request( |
7902 | - option: PostOrderErpRolesDetailOption, | |
7903 | - ): Promise<PostOrderErpRolesDetailResponseSuccess> { | |
9250 | + option: PostPrepaidDeleteOption, | |
9251 | + ): Promise<PostPrepaidDeleteResponseSuccess> { | |
7904 | 9252 | return requester(request.url, { |
7905 | 9253 | method: request.method, |
7906 | 9254 | ...option, |
7907 | - }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>; | |
9255 | + }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>; | |
7908 | 9256 | } |
7909 | 9257 | |
7910 | 9258 | /** http method */ |
... | ... | @@ -7914,22 +9262,22 @@ export const postOrderErpRolesDetail = /* #__PURE__ */ (() => { |
7914 | 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 | 9268 | * @description |
7921 | - * roleVO | |
9269 | + * request | |
7922 | 9270 | */ |
7923 | 9271 | body: { |
7924 | 9272 | /** |
7925 | 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 | 9282 | * @description |
7935 | 9283 | * OK |
... | ... | @@ -7957,25 +9305,24 @@ export interface PostOrderErpRolesEditResponse { |
7957 | 9305 | 404: any; |
7958 | 9306 | } |
7959 | 9307 | |
7960 | -export type PostOrderErpRolesEditResponseSuccess = | |
7961 | - PostOrderErpRolesEditResponse[200]; | |
9308 | +export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200]; | |
7962 | 9309 | /** |
7963 | 9310 | * @description |
7964 | - * 修改角色 | |
7965 | - * @tags 系统:角色管理 | |
9311 | + * 查询列表 | |
9312 | + * @tags prepaid-controller | |
7966 | 9313 | * @produces * |
7967 | 9314 | * @consumes application/json |
7968 | 9315 | */ |
7969 | -export const postOrderErpRolesEdit = /* #__PURE__ */ (() => { | |
9316 | +export const postPrepaidList = /* #__PURE__ */ (() => { | |
7970 | 9317 | const method = 'post'; |
7971 | - const url = '/order/erp/roles/edit'; | |
9318 | + const url = '/prepaid/list'; | |
7972 | 9319 | function request( |
7973 | - option: PostOrderErpRolesEditOption, | |
7974 | - ): Promise<PostOrderErpRolesEditResponseSuccess> { | |
9320 | + option: PostPrepaidListOption, | |
9321 | + ): Promise<PostPrepaidListResponseSuccess> { | |
7975 | 9322 | return requester(request.url, { |
7976 | 9323 | method: request.method, |
7977 | 9324 | ...option, |
7978 | - }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>; | |
9325 | + }) as unknown as Promise<PostPrepaidListResponseSuccess>; | |
7979 | 9326 | } |
7980 | 9327 | |
7981 | 9328 | /** http method */ |
... | ... | @@ -7985,22 +9332,22 @@ export const postOrderErpRolesEdit = /* #__PURE__ */ (() => { |
7985 | 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 | 9338 | * @description |
7992 | - * queryVO | |
9339 | + * request | |
7993 | 9340 | */ |
7994 | 9341 | body: { |
7995 | 9342 | /** |
7996 | 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 | 9352 | * @description |
8006 | 9353 | * OK |
... | ... | @@ -8028,25 +9375,25 @@ export interface PostOrderErpRolesListByPageResponse { |
8028 | 9375 | 404: any; |
8029 | 9376 | } |
8030 | 9377 | |
8031 | -export type PostOrderErpRolesListByPageResponseSuccess = | |
8032 | - PostOrderErpRolesListByPageResponse[200]; | |
9378 | +export type PostPrepaidPhoneAvailableListResponseSuccess = | |
9379 | + PostPrepaidPhoneAvailableListResponse[200]; | |
8033 | 9380 | /** |
8034 | 9381 | * @description |
8035 | - * 查询角色 | |
8036 | - * @tags 系统:角色管理 | |
9382 | + * 财务审核 | |
9383 | + * @tags prepaid-controller | |
8037 | 9384 | * @produces * |
8038 | 9385 | * @consumes application/json |
8039 | 9386 | */ |
8040 | -export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => { | |
9387 | +export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => { | |
8041 | 9388 | const method = 'post'; |
8042 | - const url = '/order/erp/roles/list_by_page'; | |
9389 | + const url = '/prepaid/phone/available/list'; | |
8043 | 9390 | function request( |
8044 | - option: PostOrderErpRolesListByPageOption, | |
8045 | - ): Promise<PostOrderErpRolesListByPageResponseSuccess> { | |
9391 | + option: PostPrepaidPhoneAvailableListOption, | |
9392 | + ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> { | |
8046 | 9393 | return requester(request.url, { |
8047 | 9394 | method: request.method, |
8048 | 9395 | ...option, |
8049 | - }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>; | |
9396 | + }) as unknown as Promise<PostPrepaidPhoneAvailableListResponseSuccess>; | |
8050 | 9397 | } |
8051 | 9398 | |
8052 | 9399 | /** http method */ |
... | ... | @@ -8056,22 +9403,22 @@ export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => { |
8056 | 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 | 9409 | * @description |
8063 | - * userVO | |
9410 | + * request | |
8064 | 9411 | */ |
8065 | 9412 | body: { |
8066 | 9413 | /** |
8067 | 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 | 9423 | * @description |
8077 | 9424 | * OK |
... | ... | @@ -8099,25 +9446,24 @@ export interface PostOrderErpUsersAddResponse { |
8099 | 9446 | 404: any; |
8100 | 9447 | } |
8101 | 9448 | |
8102 | -export type PostOrderErpUsersAddResponseSuccess = | |
8103 | - PostOrderErpUsersAddResponse[200]; | |
9449 | +export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; | |
8104 | 9450 | /** |
8105 | 9451 | * @description |
8106 | - * 新增用户 | |
8107 | - * @tags 系统:用户管理 | |
9452 | + * 修改预存 | |
9453 | + * @tags prepaid-controller | |
8108 | 9454 | * @produces * |
8109 | 9455 | * @consumes application/json |
8110 | 9456 | */ |
8111 | -export const postOrderErpUsersAdd = /* #__PURE__ */ (() => { | |
9457 | +export const postPrepaidUpdate = /* #__PURE__ */ (() => { | |
8112 | 9458 | const method = 'post'; |
8113 | - const url = '/order/erp/users/add'; | |
9459 | + const url = '/prepaid/update'; | |
8114 | 9460 | function request( |
8115 | - option: PostOrderErpUsersAddOption, | |
8116 | - ): Promise<PostOrderErpUsersAddResponseSuccess> { | |
9461 | + option: PostPrepaidUpdateOption, | |
9462 | + ): Promise<PostPrepaidUpdateResponseSuccess> { | |
8117 | 9463 | return requester(request.url, { |
8118 | 9464 | method: request.method, |
8119 | 9465 | ...option, |
8120 | - }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>; | |
9466 | + }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; | |
8121 | 9467 | } |
8122 | 9468 | |
8123 | 9469 | /** http method */ |
... | ... | @@ -8127,22 +9473,22 @@ export const postOrderErpUsersAdd = /* #__PURE__ */ (() => { |
8127 | 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 | 9479 | * @description |
8134 | - * userVO | |
9480 | + * request | |
8135 | 9481 | */ |
8136 | 9482 | body: { |
8137 | 9483 | /** |
8138 | 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 | 9493 | * @description |
8148 | 9494 | * OK |
... | ... | @@ -8170,25 +9516,25 @@ export interface PostOrderErpUsersAuthRoleResponse { |
8170 | 9516 | 404: any; |
8171 | 9517 | } |
8172 | 9518 | |
8173 | -export type PostOrderErpUsersAuthRoleResponseSuccess = | |
8174 | - PostOrderErpUsersAuthRoleResponse[200]; | |
9519 | +export type PostResearchGroupMemberRequestsAddResponseSuccess = | |
9520 | + PostResearchGroupMemberRequestsAddResponse[200]; | |
8175 | 9521 | /** |
8176 | 9522 | * @description |
8177 | - * 授权角色 | |
8178 | - * @tags 系统:用户管理 | |
9523 | + * 新增申请信息 | |
9524 | + * @tags research-group-member-requests-controller | |
8179 | 9525 | * @produces * |
8180 | 9526 | * @consumes application/json |
8181 | 9527 | */ |
8182 | -export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => { | |
9528 | +export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => { | |
8183 | 9529 | const method = 'post'; |
8184 | - const url = '/order/erp/users/auth_role'; | |
9530 | + const url = '/research/group/member/requests/add'; | |
8185 | 9531 | function request( |
8186 | - option: PostOrderErpUsersAuthRoleOption, | |
8187 | - ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> { | |
9532 | + option: PostResearchGroupMemberRequestsAddOption, | |
9533 | + ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> { | |
8188 | 9534 | return requester(request.url, { |
8189 | 9535 | method: request.method, |
8190 | 9536 | ...option, |
8191 | - }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>; | |
9537 | + }) as unknown as Promise<PostResearchGroupMemberRequestsAddResponseSuccess>; | |
8192 | 9538 | } |
8193 | 9539 | |
8194 | 9540 | /** http method */ |
... | ... | @@ -8198,22 +9544,22 @@ export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => { |
8198 | 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 | 9550 | * @description |
8205 | - * queryVO | |
9551 | + * request | |
8206 | 9552 | */ |
8207 | 9553 | body: { |
8208 | 9554 | /** |
8209 | 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 | 9564 | * @description |
8219 | 9565 | * OK |
... | ... | @@ -8241,25 +9587,25 @@ export interface PostOrderErpUsersDeleteResponse { |
8241 | 9587 | 404: any; |
8242 | 9588 | } |
8243 | 9589 | |
8244 | -export type PostOrderErpUsersDeleteResponseSuccess = | |
8245 | - PostOrderErpUsersDeleteResponse[200]; | |
9590 | +export type PostResearchGroupMemberRequestsDeleteResponseSuccess = | |
9591 | + PostResearchGroupMemberRequestsDeleteResponse[200]; | |
8246 | 9592 | /** |
8247 | 9593 | * @description |
8248 | - * 删除用户 | |
8249 | - * @tags 系统:用户管理 | |
9594 | + * 删除申请信息 | |
9595 | + * @tags research-group-member-requests-controller | |
8250 | 9596 | * @produces * |
8251 | 9597 | * @consumes application/json |
8252 | 9598 | */ |
8253 | -export const postOrderErpUsersDelete = /* #__PURE__ */ (() => { | |
9599 | +export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => { | |
8254 | 9600 | const method = 'post'; |
8255 | - const url = '/order/erp/users/delete'; | |
9601 | + const url = '/research/group/member/requests/delete'; | |
8256 | 9602 | function request( |
8257 | - option: PostOrderErpUsersDeleteOption, | |
8258 | - ): Promise<PostOrderErpUsersDeleteResponseSuccess> { | |
9603 | + option: PostResearchGroupMemberRequestsDeleteOption, | |
9604 | + ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> { | |
8259 | 9605 | return requester(request.url, { |
8260 | 9606 | method: request.method, |
8261 | 9607 | ...option, |
8262 | - }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>; | |
9608 | + }) as unknown as Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess>; | |
8263 | 9609 | } |
8264 | 9610 | |
8265 | 9611 | /** http method */ |
... | ... | @@ -8269,22 +9615,22 @@ export const postOrderErpUsersDelete = /* #__PURE__ */ (() => { |
8269 | 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 | 9621 | * @description |
8276 | - * userVO | |
9622 | + * request | |
8277 | 9623 | */ |
8278 | 9624 | body: { |
8279 | 9625 | /** |
8280 | 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 | 9635 | * @description |
8290 | 9636 | * OK |
... | ... | @@ -8312,25 +9658,25 @@ export interface PostOrderErpUsersEditResponse { |
8312 | 9658 | 404: any; |
8313 | 9659 | } |
8314 | 9660 | |
8315 | -export type PostOrderErpUsersEditResponseSuccess = | |
8316 | - PostOrderErpUsersEditResponse[200]; | |
9661 | +export type PostResearchGroupMemberRequestsDetailResponseSuccess = | |
9662 | + PostResearchGroupMemberRequestsDetailResponse[200]; | |
8317 | 9663 | /** |
8318 | 9664 | * @description |
8319 | - * 修改用户 | |
8320 | - * @tags 系统:用户管理 | |
9665 | + * 查询申请信息 | |
9666 | + * @tags research-group-member-requests-controller | |
8321 | 9667 | * @produces * |
8322 | 9668 | * @consumes application/json |
8323 | 9669 | */ |
8324 | -export const postOrderErpUsersEdit = /* #__PURE__ */ (() => { | |
9670 | +export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => { | |
8325 | 9671 | const method = 'post'; |
8326 | - const url = '/order/erp/users/edit'; | |
9672 | + const url = '/research/group/member/requests/detail'; | |
8327 | 9673 | function request( |
8328 | - option: PostOrderErpUsersEditOption, | |
8329 | - ): Promise<PostOrderErpUsersEditResponseSuccess> { | |
9674 | + option: PostResearchGroupMemberRequestsDetailOption, | |
9675 | + ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> { | |
8330 | 9676 | return requester(request.url, { |
8331 | 9677 | method: request.method, |
8332 | 9678 | ...option, |
8333 | - }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>; | |
9679 | + }) as unknown as Promise<PostResearchGroupMemberRequestsDetailResponseSuccess>; | |
8334 | 9680 | } |
8335 | 9681 | |
8336 | 9682 | /** http method */ |
... | ... | @@ -8340,22 +9686,22 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() => { |
8340 | 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 | 9692 | * @description |
8347 | - * queryVO | |
9693 | + * request | |
8348 | 9694 | */ |
8349 | 9695 | body: { |
8350 | 9696 | /** |
8351 | 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 | 9706 | * @description |
8361 | 9707 | * OK |
... | ... | @@ -8383,25 +9729,25 @@ export interface PostOrderErpUsersListByPageResponse { |
8383 | 9729 | 404: any; |
8384 | 9730 | } |
8385 | 9731 | |
8386 | -export type PostOrderErpUsersListByPageResponseSuccess = | |
8387 | - PostOrderErpUsersListByPageResponse[200]; | |
9732 | +export type PostResearchGroupMemberRequestsEditResponseSuccess = | |
9733 | + PostResearchGroupMemberRequestsEditResponse[200]; | |
8388 | 9734 | /** |
8389 | 9735 | * @description |
8390 | - * 查询用户 | |
8391 | - * @tags 系统:用户管理 | |
9736 | + * 编辑申请信息 | |
9737 | + * @tags research-group-member-requests-controller | |
8392 | 9738 | * @produces * |
8393 | 9739 | * @consumes application/json |
8394 | 9740 | */ |
8395 | -export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => { | |
9741 | +export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => { | |
8396 | 9742 | const method = 'post'; |
8397 | - const url = '/order/erp/users/list_by_page'; | |
9743 | + const url = '/research/group/member/requests/edit'; | |
8398 | 9744 | function request( |
8399 | - option: PostOrderErpUsersListByPageOption, | |
8400 | - ): Promise<PostOrderErpUsersListByPageResponseSuccess> { | |
9745 | + option: PostResearchGroupMemberRequestsEditOption, | |
9746 | + ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> { | |
8401 | 9747 | return requester(request.url, { |
8402 | 9748 | method: request.method, |
8403 | 9749 | ...option, |
8404 | - }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>; | |
9750 | + }) as unknown as Promise<PostResearchGroupMemberRequestsEditResponseSuccess>; | |
8405 | 9751 | } |
8406 | 9752 | |
8407 | 9753 | /** http method */ |
... | ... | @@ -8411,22 +9757,22 @@ export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => { |
8411 | 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 | 9763 | * @description |
8418 | - * resetPwdVO | |
9764 | + * request | |
8419 | 9765 | */ |
8420 | 9766 | body: { |
8421 | 9767 | /** |
8422 | 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 | 9777 | * @description |
8432 | 9778 | * OK |
... | ... | @@ -8454,25 +9800,25 @@ export interface PostOrderErpUsersResetResponse { |
8454 | 9800 | 404: any; |
8455 | 9801 | } |
8456 | 9802 | |
8457 | -export type PostOrderErpUsersResetResponseSuccess = | |
8458 | - PostOrderErpUsersResetResponse[200]; | |
9803 | +export type PostResearchGroupMemberRequestsListResponseSuccess = | |
9804 | + PostResearchGroupMemberRequestsListResponse[200]; | |
8459 | 9805 | /** |
8460 | 9806 | * @description |
8461 | - * 重置密码 | |
8462 | - * @tags 系统:用户管理 | |
9807 | + * 申请列表 | |
9808 | + * @tags research-group-member-requests-controller | |
8463 | 9809 | * @produces * |
8464 | 9810 | * @consumes application/json |
8465 | 9811 | */ |
8466 | -export const postOrderErpUsersReset = /* #__PURE__ */ (() => { | |
9812 | +export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => { | |
8467 | 9813 | const method = 'post'; |
8468 | - const url = '/order/erp/users/reset'; | |
9814 | + const url = '/research/group/member/requests/list'; | |
8469 | 9815 | function request( |
8470 | - option: PostOrderErpUsersResetOption, | |
8471 | - ): Promise<PostOrderErpUsersResetResponseSuccess> { | |
9816 | + option: PostResearchGroupMemberRequestsListOption, | |
9817 | + ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> { | |
8472 | 9818 | return requester(request.url, { |
8473 | 9819 | method: request.method, |
8474 | 9820 | ...option, |
8475 | - }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>; | |
9821 | + }) as unknown as Promise<PostResearchGroupMemberRequestsListResponseSuccess>; | |
8476 | 9822 | } |
8477 | 9823 | |
8478 | 9824 | /** http method */ |
... | ... | @@ -8482,22 +9828,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() => { |
8482 | 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 | 9834 | * @description |
8489 | - * pwdVO | |
9835 | + * request | |
8490 | 9836 | */ |
8491 | 9837 | body: { |
8492 | 9838 | /** |
8493 | 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 | 9848 | * @description |
8503 | 9849 | * OK |
... | ... | @@ -8525,25 +9871,25 @@ export interface PostOrderErpUsersUpdatePassResponse { |
8525 | 9871 | 404: any; |
8526 | 9872 | } |
8527 | 9873 | |
8528 | -export type PostOrderErpUsersUpdatePassResponseSuccess = | |
8529 | - PostOrderErpUsersUpdatePassResponse[200]; | |
9874 | +export type PostResearchGroupsAddResponseSuccess = | |
9875 | + PostResearchGroupsAddResponse[200]; | |
8530 | 9876 | /** |
8531 | 9877 | * @description |
8532 | - * 修改密码 | |
8533 | - * @tags 系统:用户管理 | |
9878 | + * 新增课题组信息 | |
9879 | + * @tags research-groups-controller | |
8534 | 9880 | * @produces * |
8535 | 9881 | * @consumes application/json |
8536 | 9882 | */ |
8537 | -export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { | |
9883 | +export const postResearchGroupsAdd = /* #__PURE__ */ (() => { | |
8538 | 9884 | const method = 'post'; |
8539 | - const url = '/order/erp/users/update_pass'; | |
9885 | + const url = '/research/groups/add'; | |
8540 | 9886 | function request( |
8541 | - option: PostOrderErpUsersUpdatePassOption, | |
8542 | - ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> { | |
9887 | + option: PostResearchGroupsAddOption, | |
9888 | + ): Promise<PostResearchGroupsAddResponseSuccess> { | |
8543 | 9889 | return requester(request.url, { |
8544 | 9890 | method: request.method, |
8545 | 9891 | ...option, |
8546 | - }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>; | |
9892 | + }) as unknown as Promise<PostResearchGroupsAddResponseSuccess>; | |
8547 | 9893 | } |
8548 | 9894 | |
8549 | 9895 | /** http method */ |
... | ... | @@ -8553,22 +9899,22 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { |
8553 | 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 | 9905 | * @description |
8560 | - * file | |
9906 | + * request | |
8561 | 9907 | */ |
8562 | - formData: { | |
9908 | + body: { | |
8563 | 9909 | /** |
8564 | 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 | 9919 | * @description |
8574 | 9920 | * OK |
... | ... | @@ -8596,25 +9942,25 @@ export interface PostOrderImportImportWeightAndVolumeResponse { |
8596 | 9942 | 404: any; |
8597 | 9943 | } |
8598 | 9944 | |
8599 | -export type PostOrderImportImportWeightAndVolumeResponseSuccess = | |
8600 | - PostOrderImportImportWeightAndVolumeResponse[200]; | |
9945 | +export type PostResearchGroupsDeleteResponseSuccess = | |
9946 | + PostResearchGroupsDeleteResponse[200]; | |
8601 | 9947 | /** |
8602 | 9948 | * @description |
8603 | - * 导入重量和体积 | |
8604 | - * @tags 导入 | |
9949 | + * 删除课题组信息 | |
9950 | + * @tags research-groups-controller | |
8605 | 9951 | * @produces * |
8606 | - * @consumes multipart/form-data | |
9952 | + * @consumes application/json | |
8607 | 9953 | */ |
8608 | -export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => { | |
9954 | +export const postResearchGroupsDelete = /* #__PURE__ */ (() => { | |
8609 | 9955 | const method = 'post'; |
8610 | - const url = '/order/import/importWeightAndVolume'; | |
9956 | + const url = '/research/groups/delete'; | |
8611 | 9957 | function request( |
8612 | - option: PostOrderImportImportWeightAndVolumeOption, | |
8613 | - ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> { | |
9958 | + option: PostResearchGroupsDeleteOption, | |
9959 | + ): Promise<PostResearchGroupsDeleteResponseSuccess> { | |
8614 | 9960 | return requester(request.url, { |
8615 | 9961 | method: request.method, |
8616 | 9962 | ...option, |
8617 | - }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>; | |
9963 | + }) as unknown as Promise<PostResearchGroupsDeleteResponseSuccess>; | |
8618 | 9964 | } |
8619 | 9965 | |
8620 | 9966 | /** http method */ |
... | ... | @@ -8624,8 +9970,8 @@ export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => { |
8624 | 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 | 9976 | * @description |
8631 | 9977 | * request |
... | ... | @@ -8634,12 +9980,12 @@ export interface PostPrepaidAuditOption { |
8634 | 9980 | /** |
8635 | 9981 | @description |
8636 | 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 | 9990 | * @description |
8645 | 9991 | * OK |
... | ... | @@ -8667,24 +10013,25 @@ export interface PostPrepaidAuditResponse { |
8667 | 10013 | 404: any; |
8668 | 10014 | } |
8669 | 10015 | |
8670 | -export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200]; | |
10016 | +export type PostResearchGroupsDetailResponseSuccess = | |
10017 | + PostResearchGroupsDetailResponse[200]; | |
8671 | 10018 | /** |
8672 | 10019 | * @description |
8673 | - * 财务审核 | |
8674 | - * @tags prepaid-controller | |
10020 | + * 查询课题组信息 | |
10021 | + * @tags research-groups-controller | |
8675 | 10022 | * @produces * |
8676 | 10023 | * @consumes application/json |
8677 | 10024 | */ |
8678 | -export const postPrepaidAudit = /* #__PURE__ */ (() => { | |
10025 | +export const postResearchGroupsDetail = /* #__PURE__ */ (() => { | |
8679 | 10026 | const method = 'post'; |
8680 | - const url = '/prepaid/audit'; | |
10027 | + const url = '/research/groups/detail'; | |
8681 | 10028 | function request( |
8682 | - option: PostPrepaidAuditOption, | |
8683 | - ): Promise<PostPrepaidAuditResponseSuccess> { | |
10029 | + option: PostResearchGroupsDetailOption, | |
10030 | + ): Promise<PostResearchGroupsDetailResponseSuccess> { | |
8684 | 10031 | return requester(request.url, { |
8685 | 10032 | method: request.method, |
8686 | 10033 | ...option, |
8687 | - }) as unknown as Promise<PostPrepaidAuditResponseSuccess>; | |
10034 | + }) as unknown as Promise<PostResearchGroupsDetailResponseSuccess>; | |
8688 | 10035 | } |
8689 | 10036 | |
8690 | 10037 | /** http method */ |
... | ... | @@ -8694,27 +10041,13 @@ export const postPrepaidAudit = /* #__PURE__ */ (() => { |
8694 | 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 | 10047 | * @description |
8715 | 10048 | * OK |
8716 | 10049 | */ |
8717 | - 200: ServerResult; | |
10050 | + 200: any; | |
8718 | 10051 | /** |
8719 | 10052 | * @description |
8720 | 10053 | * Created |
... | ... | @@ -8737,24 +10070,22 @@ export interface PostPrepaidCreateResponse { |
8737 | 10070 | 404: any; |
8738 | 10071 | } |
8739 | 10072 | |
8740 | -export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200]; | |
10073 | +export type PostResearchGroupsDownloadImportTemplateResponseSuccess = | |
10074 | + PostResearchGroupsDownloadImportTemplateResponse[200]; | |
8741 | 10075 | /** |
8742 | 10076 | * @description |
8743 | - * 新增预存 | |
8744 | - * @tags prepaid-controller | |
10077 | + * 课题组导入模板下载 | |
10078 | + * @tags research-groups-controller | |
8745 | 10079 | * @produces * |
8746 | 10080 | * @consumes application/json |
8747 | 10081 | */ |
8748 | -export const postPrepaidCreate = /* #__PURE__ */ (() => { | |
10082 | +export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => { | |
8749 | 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 | 10086 | return requester(request.url, { |
8755 | 10087 | method: request.method, |
8756 | - ...option, | |
8757 | - }) as unknown as Promise<PostPrepaidCreateResponseSuccess>; | |
10088 | + }) as unknown as Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess>; | |
8758 | 10089 | } |
8759 | 10090 | |
8760 | 10091 | /** http method */ |
... | ... | @@ -8764,8 +10095,8 @@ export const postPrepaidCreate = /* #__PURE__ */ (() => { |
8764 | 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 | 10101 | * @description |
8771 | 10102 | * request |
... | ... | @@ -8774,12 +10105,12 @@ export interface PostPrepaidDeleteOption { |
8774 | 10105 | /** |
8775 | 10106 | @description |
8776 | 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 | 10115 | * @description |
8785 | 10116 | * OK |
... | ... | @@ -8807,24 +10138,25 @@ export interface PostPrepaidDeleteResponse { |
8807 | 10138 | 404: any; |
8808 | 10139 | } |
8809 | 10140 | |
8810 | -export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200]; | |
10141 | +export type PostResearchGroupsEditResponseSuccess = | |
10142 | + PostResearchGroupsEditResponse[200]; | |
8811 | 10143 | /** |
8812 | 10144 | * @description |
8813 | - * 删除预存 | |
8814 | - * @tags prepaid-controller | |
10145 | + * 编辑课题组信息 | |
10146 | + * @tags research-groups-controller | |
8815 | 10147 | * @produces * |
8816 | 10148 | * @consumes application/json |
8817 | 10149 | */ |
8818 | -export const postPrepaidDelete = /* #__PURE__ */ (() => { | |
10150 | +export const postResearchGroupsEdit = /* #__PURE__ */ (() => { | |
8819 | 10151 | const method = 'post'; |
8820 | - const url = '/prepaid/delete'; | |
10152 | + const url = '/research/groups/edit'; | |
8821 | 10153 | function request( |
8822 | - option: PostPrepaidDeleteOption, | |
8823 | - ): Promise<PostPrepaidDeleteResponseSuccess> { | |
10154 | + option: PostResearchGroupsEditOption, | |
10155 | + ): Promise<PostResearchGroupsEditResponseSuccess> { | |
8824 | 10156 | return requester(request.url, { |
8825 | 10157 | method: request.method, |
8826 | 10158 | ...option, |
8827 | - }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>; | |
10159 | + }) as unknown as Promise<PostResearchGroupsEditResponseSuccess>; | |
8828 | 10160 | } |
8829 | 10161 | |
8830 | 10162 | /** http method */ |
... | ... | @@ -8834,22 +10166,22 @@ export const postPrepaidDelete = /* #__PURE__ */ (() => { |
8834 | 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 | 10172 | * @description |
8841 | - * request | |
10173 | + * file | |
8842 | 10174 | */ |
8843 | - body: { | |
10175 | + formData: { | |
8844 | 10176 | /** |
8845 | 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 | 10186 | * @description |
8855 | 10187 | * OK |
... | ... | @@ -8877,24 +10209,25 @@ export interface PostPrepaidListResponse { |
8877 | 10209 | 404: any; |
8878 | 10210 | } |
8879 | 10211 | |
8880 | -export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200]; | |
10212 | +export type PostResearchGroupsImportResponseSuccess = | |
10213 | + PostResearchGroupsImportResponse[200]; | |
8881 | 10214 | /** |
8882 | 10215 | * @description |
8883 | - * 查询列表 | |
8884 | - * @tags prepaid-controller | |
10216 | + * 课题组信息导入 | |
10217 | + * @tags research-groups-controller | |
8885 | 10218 | * @produces * |
8886 | - * @consumes application/json | |
10219 | + * @consumes multipart/form-data | |
8887 | 10220 | */ |
8888 | -export const postPrepaidList = /* #__PURE__ */ (() => { | |
10221 | +export const postResearchGroupsImport = /* #__PURE__ */ (() => { | |
8889 | 10222 | const method = 'post'; |
8890 | - const url = '/prepaid/list'; | |
10223 | + const url = '/research/groups/import'; | |
8891 | 10224 | function request( |
8892 | - option: PostPrepaidListOption, | |
8893 | - ): Promise<PostPrepaidListResponseSuccess> { | |
10225 | + option: PostResearchGroupsImportOption, | |
10226 | + ): Promise<PostResearchGroupsImportResponseSuccess> { | |
8894 | 10227 | return requester(request.url, { |
8895 | 10228 | method: request.method, |
8896 | 10229 | ...option, |
8897 | - }) as unknown as Promise<PostPrepaidListResponseSuccess>; | |
10230 | + }) as unknown as Promise<PostResearchGroupsImportResponseSuccess>; | |
8898 | 10231 | } |
8899 | 10232 | |
8900 | 10233 | /** http method */ |
... | ... | @@ -8904,8 +10237,8 @@ export const postPrepaidList = /* #__PURE__ */ (() => { |
8904 | 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 | 10243 | * @description |
8911 | 10244 | * request |
... | ... | @@ -8914,12 +10247,12 @@ export interface PostPrepaidUpdateOption { |
8914 | 10247 | /** |
8915 | 10248 | @description |
8916 | 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 | 10257 | * @description |
8925 | 10258 | * OK |
... | ... | @@ -8947,24 +10280,25 @@ export interface PostPrepaidUpdateResponse { |
8947 | 10280 | 404: any; |
8948 | 10281 | } |
8949 | 10282 | |
8950 | -export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; | |
10283 | +export type PostResearchGroupsListResponseSuccess = | |
10284 | + PostResearchGroupsListResponse[200]; | |
8951 | 10285 | /** |
8952 | 10286 | * @description |
8953 | - * 修改预存 | |
8954 | - * @tags prepaid-controller | |
10287 | + * 课题组列表 | |
10288 | + * @tags research-groups-controller | |
8955 | 10289 | * @produces * |
8956 | 10290 | * @consumes application/json |
8957 | 10291 | */ |
8958 | -export const postPrepaidUpdate = /* #__PURE__ */ (() => { | |
10292 | +export const postResearchGroupsList = /* #__PURE__ */ (() => { | |
8959 | 10293 | const method = 'post'; |
8960 | - const url = '/prepaid/update'; | |
10294 | + const url = '/research/groups/list'; | |
8961 | 10295 | function request( |
8962 | - option: PostPrepaidUpdateOption, | |
8963 | - ): Promise<PostPrepaidUpdateResponseSuccess> { | |
10296 | + option: PostResearchGroupsListOption, | |
10297 | + ): Promise<PostResearchGroupsListResponseSuccess> { | |
8964 | 10298 | return requester(request.url, { |
8965 | 10299 | method: request.method, |
8966 | 10300 | ...option, |
8967 | - }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; | |
10301 | + }) as unknown as Promise<PostResearchGroupsListResponseSuccess>; | |
8968 | 10302 | } |
8969 | 10303 | |
8970 | 10304 | /** http method */ | ... | ... |