Commit 3c5a43113b04d417fe5d0a3020d6ad4705868c20

Authored by 凌世锦
1 parent 3e103809

feat: update分期账单

.umirc.ts
... ... @@ -79,13 +79,13 @@ export default defineConfig({
79 79 icon: 'BookOutlined',
80 80 access: 'canReadLinda',
81 81 },
82   - // {
83   - // name: '区域管理',
84   - // path: '/zoning',
85   - // component: './ZoNing',
86   - // icon: 'BookOutlined',
87   - // access: 'canReadLinda',
88   - // },
  82 + {
  83 + name: '区域管理',
  84 + path: '/zoning',
  85 + component: './ZoNing',
  86 + icon: 'BookOutlined',
  87 + access: 'canReadAdminAndSales',
  88 + },
89 89 {
90 90 name: '打印',
91 91 path: '/print',
... ...
src/pages/Instalment/components/title/title.tsx
... ... @@ -166,7 +166,10 @@ export default () => {
166 166 {
167 167 title: '文件编号',
168 168 dataIndex: 'id',
169   - width: '7%',
  169 + width: 100,
  170 + disable: true,
  171 + onFilter: true,
  172 + ellipsis: true,
170 173 render: (_, record) => {
171 174 if (record.id) {
172 175 const text = record.id.toString();
... ... @@ -179,116 +182,108 @@ export default () => {
179 182 title: '签合同日期',
180 183 dataIndex: 'dateRange',
181 184 valueType: 'date',
182   - filters: true,
  185 + width: 100,
  186 + disable: true,
183 187 onFilter: true,
184 188 ellipsis: true,
185   - width: '8%',
186 189 },
187 190 {
188   - disable: true,
189 191 title: '合同编号',
190 192 dataIndex: 'contract',
191   - filters: true,
  193 + width: 200,
  194 + disable: true,
192 195 onFilter: true,
193 196 ellipsis: true,
194   - width: '9%',
195 197 },
196 198 {
197   - disable: true,
198 199 title: '供应商名称',
199 200 dataIndex: 'vendor',
200   - filters: true,
  201 + width: 200,
  202 + disable: true,
201 203 onFilter: true,
202 204 ellipsis: true,
203 205 },
204 206 {
205   - disable: true,
206 207 title: '终端名称',
207 208 dataIndex: 'terminal',
208   - filters: true,
  209 + width: 200,
  210 + disable: true,
209 211 onFilter: true,
210 212 ellipsis: true,
211   - width: '6%',
212 213 },
213 214 {
214   - disable: true,
215 215 title: '设备名称',
216 216 dataIndex: 'deviceName',
217   - filters: true,
  217 + width: 200,
  218 + disable: true,
218 219 onFilter: true,
219 220 ellipsis: true,
220 221 },
221 222 {
222   - disable: true,
223 223 title: '设备型号',
224 224 dataIndex: 'deviceModel',
225   - filters: true,
226 225 hideInSearch: true,
227   - onFilter: false,
  226 + width: 200,
  227 + disable: true,
  228 + onFilter: true,
228 229 ellipsis: true,
229   - width: '10%',
230 230 },
231 231 {
232   - disable: true,
233 232 title: '数量',
234 233 dataIndex: 'count',
235   - filters: true,
236 234 hideInSearch: true,
237   - onFilter: false,
  235 + width: 100,
  236 + disable: true,
  237 + onFilter: true,
238 238 ellipsis: true,
239   - width: '4%',
240 239 },
241 240 {
242   - disable: true,
243 241 title: '单价',
244 242 dataIndex: 'unitPrice',
245   - filters: true,
246 243 hideInSearch: true,
247   - onFilter: false,
  244 + width: 100,
  245 + disable: true,
  246 + onFilter: true,
248 247 ellipsis: true,
249   - width: '5%',
250 248 },
251 249 {
252   - disable: true,
253 250 title: '总价',
254 251 dataIndex: 'price',
255   - filters: true,
256 252 hideInSearch: true,
257   - onFilter: false,
  253 + width: 100,
  254 + disable: true,
  255 + onFilter: true,
258 256 ellipsis: true,
259   - width: '5%',
260 257 },
261 258 {
262   - disable: true,
263 259 title: '合同总金额',
264 260 dataIndex: 'totalPrice',
265   - filters: true,
266 261 hideInSearch: true,
267   - onFilter: false,
  262 + width: 100,
  263 + disable: true,
  264 + onFilter: true,
268 265 ellipsis: true,
269   - width: '6%',
270 266 },
271 267 {
272   - disable: true,
273 268 title: '付款方式',
274 269 dataIndex: 'payWay',
275   - filters: true,
276 270 hideInSearch: true,
277   - onFilter: false,
  271 + width: 100,
  272 + disable: true,
  273 + onFilter: true,
278 274 ellipsis: true,
279 275 },
280 276 {
281   - disable: true,
282 277 title: '附件',
283 278 dataIndex: 'annex',
284   - filters: true,
285 279 hideInSearch: true,
286   - onFilter: false,
  280 + width: 100,
  281 + disable: true,
  282 + onFilter: true,
287 283 ellipsis: true,
288   - width: '5%',
289 284 render: (_, record) => {
290   - if (record.id) {
291   - return <a href={record.annex}>{record.annex}</a>;
  285 + if (record.id && record.annex !== null) {
  286 + return <a href={record.annex}>附件文件</a>;
292 287 }
293 288 },
294 289 },
... ... @@ -300,13 +295,20 @@ export default () =&gt; {
300 295 hideInSearch: true,
301 296 onFilter: false,
302 297 ellipsis: true,
303   - width: '5%',
  298 + width: 100,
  299 + disable: true,
  300 + onFilter: true,
  301 + ellipsis: true,
304 302 },
305 303 {
306 304 title: '操作',
307 305 valueType: 'option',
308 306 key: 'option',
309   - width: '10%',
  307 + fixed: 'right',
  308 + width: 120,
  309 + disable: true,
  310 + onFilter: true,
  311 + ellipsis: true,
310 312 render: (_text, record) => {
311 313 if (record?.id) {
312 314 return (
... ... @@ -335,8 +337,9 @@ export default () =&gt; {
335 337 className="title-index"
336 338 columnEmptyText=""
337 339 columns={columns}
338   - actionRef={ref}
339 340 cardBordered
  341 + actionRef={ref}
  342 + scroll={{ x: 1400, y: 360 }}
340 343 request={async (params) => {
341 344 // console.log(params);
342 345 if (
... ...
src/pages/ZoNing/components/constant.tsx 0 → 100644
  1 +import { List } from 'lodash';
  2 +
  3 +export type zoningItem = {
  4 + id: number; //id
  5 + zoning: string; //区域名称
  6 + orderProvinceVoList: List<provinceItem>; //所包含的省份列表
  7 + orderUserVoList: List<userItem>; //所包含的销售列表
  8 +};
  9 +
  10 +export type zoningShowItem = {
  11 + id: number; //id
  12 + zoning: string; //区域名称
  13 + orderProvinceShowList: string; //所包含的省份列表
  14 + orderUserShowList: string; //所包含的销售列表
  15 +};
  16 +
  17 +export type provinceItem = {
  18 + pId: number;
  19 + province: string;
  20 +};
  21 +
  22 +export type userItem = {
  23 + uId: number;
  24 + userName: string;
  25 +};
... ...
src/pages/ZoNing/components/modal.tsx 0 → 100644
  1 +import { PlusOutlined } from '@ant-design/icons';
  2 +import {
  3 + ModalForm,
  4 + ProForm,
  5 + ProFormSelect,
  6 + ProFormText,
  7 +} from '@ant-design/pro-components';
  8 +import { Button, Form, message } from 'antd';
  9 +import { zoningItem } from './constant';
  10 +
  11 +const waitTime = (time: number = 100) => {
  12 + return new Promise((resolve) => {
  13 + setTimeout(() => {
  14 + resolve(true);
  15 + }, time);
  16 + });
  17 +};
  18 +
  19 +export default () => {
  20 + const [form] = Form.useForm<zoningItem>();
  21 + return (
  22 + <ModalForm<{
  23 + name: string;
  24 + company: string;
  25 + }>
  26 + title="新增区域"
  27 + trigger={
  28 + <Button type="primary">
  29 + <PlusOutlined />
  30 + 新增区域
  31 + </Button>
  32 + }
  33 + form={form}
  34 + autoFocusFirstInput
  35 + modalProps={{
  36 + destroyOnClose: true,
  37 + onCancel: () => console.log('run'),
  38 + }}
  39 + submitTimeout={2000}
  40 + onFinish={async (values) => {
  41 + await waitTime(2000);
  42 + console.log(values.name);
  43 + message.success('提交成功');
  44 + return true;
  45 + }}
  46 + >
  47 + <ProForm.Group>
  48 + <ProFormText
  49 + width="md"
  50 + name="zoning"
  51 + label="区域名称"
  52 + placeholder="请输入"
  53 + />
  54 + </ProForm.Group>
  55 + <ProForm.Group>
  56 + <ProFormSelect
  57 + request={async () => [
  58 + {
  59 + value: 'chapter',
  60 + label: '盖章后生效',
  61 + },
  62 + ]}
  63 + width="xs"
  64 + name="orderProvinceVoList"
  65 + label="合同约定生效方式"
  66 + />
  67 + </ProForm.Group>
  68 + <ProForm.Group>
  69 + <ProFormSelect
  70 + width="xs"
  71 + options={[
  72 + {
  73 + value: 'time',
  74 + label: '履行完终止',
  75 + },
  76 + ]}
  77 + name="orderUserVoList"
  78 + label="合同约定失效效方式"
  79 + />
  80 + </ProForm.Group>
  81 + </ModalForm>
  82 + );
  83 +};
... ...
src/pages/ZoNing/components/table.tsx
  1 +import type { ProColumns } from '@ant-design/pro-components';
  2 +import {
  3 + EditableProTable,
  4 + ProCard,
  5 + ProFormField,
  6 +} from '@ant-design/pro-components';
  7 +import React, { useState } from 'react';
  8 +import { zoningItem, zoningShowItem } from './constant';
  9 +import Modal from './modal';
  10 +
  11 +const waitTime = (time: number = 100) => {
  12 + return new Promise((resolve) => {
  13 + setTimeout(() => {
  14 + resolve(true);
  15 + }, time);
  16 + });
  17 +};
  18 +
  19 +const defaultData: zoningItem[] = [
  20 + {
  21 + id: 1,
  22 + zoning: '华南地区',
  23 + orderProvinceVoList: [
  24 + {
  25 + pId: 1,
  26 + province: '广东省',
  27 + },
  28 + {
  29 + pId: 2,
  30 + province: '四川省',
  31 + },
  32 + {
  33 + pId: 3,
  34 + province: '北京市',
  35 + },
  36 + {
  37 + pId: 4,
  38 + province: '上海市',
  39 + },
  40 + ],
  41 + orderUserVoList: [
  42 + {
  43 + uId: 1,
  44 + userName: '李华',
  45 + },
  46 + ],
  47 + },
  48 +];
  49 +
  50 +const defaultShowData: zoningShowItem[] = defaultData.map((item) => {
  51 + let orderProvinceShowList = '';
  52 + let orderUserShowList = '';
  53 +
  54 + item.orderProvinceVoList.forEach((element, index) => {
  55 + orderProvinceShowList += element.province;
  56 + if (index < item.orderProvinceVoList.length - 1) {
  57 + orderProvinceShowList += '、';
  58 + }
  59 + });
  60 +
  61 + item.orderUserVoList.forEach((event, index) => {
  62 + orderUserShowList += event.userName;
  63 + if (index < item.orderUserVoList.length - 1) {
  64 + orderUserShowList += '、';
  65 + }
  66 + });
  67 +
  68 + return {
  69 + id: item.id,
  70 + zoning: item.zoning,
  71 + orderProvinceShowList,
  72 + orderUserShowList,
  73 + };
  74 +});
  75 +
  76 +export default () => {
  77 + const [editableKeys, setEditableRowKeys] = useState<React.Key[]>([]);
  78 + const [dataSource, setDataSource] = useState<readonly zoningItem[]>([]);
  79 + const [position] = useState<'top' | 'bottom' | 'hidden'>('hidden');
  80 +
  81 + const columns: ProColumns<zoningItem>[] = [
  82 + {
  83 + title: '区域名称',
  84 + dataIndex: 'zoning',
  85 + width: 200,
  86 + },
  87 + {
  88 + title: '管辖省份',
  89 + dataIndex: 'orderProvinceShowList',
  90 + readonly: true,
  91 + width: 600,
  92 + },
  93 + {
  94 + title: '负责销售',
  95 + key: 'state',
  96 + dataIndex: 'orderUserShowList',
  97 + valueType: 'select',
  98 + width: 200,
  99 + },
  100 + {
  101 + title: '操作',
  102 + valueType: 'option',
  103 + width: 200,
  104 + render: (text, record, _, action) => [
  105 + <a
  106 + key="editable"
  107 + onClick={() => {
  108 + action?.startEditable?.(record.id);
  109 + }}
  110 + >
  111 + 编辑
  112 + </a>,
  113 + <a
  114 + key="delete"
  115 + onClick={() => {
  116 + setDataSource(dataSource.filter((item) => item.id !== record.id));
  117 + }}
  118 + >
  119 + 删除
  120 + </a>,
  121 + ],
  122 + },
  123 + ];
  124 +
  125 + return (
  126 + <>
  127 + <EditableProTable<zoningItem>
  128 + rowKey="id"
  129 + headerTitle={<Modal></Modal>}
  130 + maxLength={5}
  131 + scroll={{
  132 + x: 960,
  133 + }}
  134 + recordCreatorProps={
  135 + position !== 'hidden'
  136 + ? {
  137 + position: position as 'top',
  138 + record: () => ({ id: (Math.random() * 1000000).toFixed(0) }),
  139 + }
  140 + : false
  141 + }
  142 + loading={false}
  143 + columns={columns}
  144 + request={async () => ({
  145 + data: defaultShowData,
  146 + })}
  147 + value={dataSource}
  148 + onChange={setDataSource}
  149 + editable={{
  150 + type: 'multiple',
  151 + editableKeys,
  152 + onSave: async (rowKey, data, row) => {
  153 + console.log(rowKey, data, row);
  154 + await waitTime(2000);
  155 + },
  156 + onChange: setEditableRowKeys,
  157 + }}
  158 + />
  159 + <ProCard title="表格数据" headerBordered collapsible defaultCollapsed>
  160 + <ProFormField
  161 + ignoreFormItem
  162 + fieldProps={{
  163 + style: {
  164 + width: '100%',
  165 + },
  166 + }}
  167 + mode="read"
  168 + valueType="jsonCode"
  169 + text={JSON.stringify(dataSource)}
  170 + />
  171 + </ProCard>
  172 + </>
  173 + );
  174 +};
... ...
src/pages/ZoNing/zoning.tsx renamed to src/pages/ZoNing/index.tsx
src/services/definition.ts
... ... @@ -86,8 +86,6 @@ export interface AdminAuthUserVO {
86 86 export interface AdminDeptQueryVO {
87 87 /** @format int32 */
88 88 current?: number;
89   - /** @format int32 */
90   - end?: number;
91 89 /** @format int64 */
92 90 id?: number;
93 91 ids?: Array<number>;
... ... @@ -97,8 +95,6 @@ export interface AdminDeptQueryVO {
97 95 /** @format int64 */
98 96 pid?: number;
99 97 /** @format int32 */
100   - start?: number;
101   - /** @format int32 */
102 98 total?: number;
103 99 }
104 100  
... ... @@ -113,8 +109,6 @@ export interface AdminDeptVO {
113 109 export interface AdminJobQueryVO {
114 110 /** @format int32 */
115 111 current?: number;
116   - /** @format int32 */
117   - end?: number;
118 112 /** @format int64 */
119 113 id?: number;
120 114 ids?: Array<number>;
... ... @@ -124,8 +118,6 @@ export interface AdminJobQueryVO {
124 118 /** @format int32 */
125 119 sort?: number;
126 120 /** @format int32 */
127   - start?: number;
128   - /** @format int32 */
129 121 total?: number;
130 122 }
131 123  
... ... @@ -144,8 +136,6 @@ export interface AdminMenuQueryVO {
144 136 /** @format int32 */
145 137 current?: number;
146 138 /** @format int32 */
147   - end?: number;
148   - /** @format int32 */
149 139 hidden?: number;
150 140 icon?: string;
151 141 /** @format int64 */
... ... @@ -161,8 +151,6 @@ export interface AdminMenuQueryVO {
161 151 /** @format int64 */
162 152 pid?: number;
163 153 /** @format int32 */
164   - start?: number;
165   - /** @format int32 */
166 154 total?: number;
167 155 /** @format int32 */
168 156 type?: number;
... ... @@ -193,8 +181,6 @@ export interface AdminRoleQueryVO {
193 181 /** @format int32 */
194 182 current?: number;
195 183 dataScope?: string;
196   - /** @format int32 */
197   - end?: number;
198 184 /** @format int64 */
199 185 id?: number;
200 186 ids?: Array<number>;
... ... @@ -206,8 +192,6 @@ export interface AdminRoleQueryVO {
206 192 permission?: string;
207 193 remark?: string;
208 194 /** @format int32 */
209   - start?: number;
210   - /** @format int32 */
211 195 total?: number;
212 196 }
213 197  
... ... @@ -225,30 +209,22 @@ export interface AdminUserLoginByPhoneVO {
225 209 /** @format int32 */
226 210 current?: number;
227 211 /** @format int32 */
228   - end?: number;
229   - /** @format int32 */
230 212 pageSize?: number;
231 213 phone?: string;
232 214 smsCaptchaCode?: string;
233 215 /** @format int32 */
234   - start?: number;
235   - /** @format int32 */
236 216 total?: number;
237 217 }
238 218  
239 219 export interface AdminUserLoginByPwdVO {
240 220 /** @format int32 */
241 221 current?: number;
242   - /** @format int32 */
243   - end?: number;
244 222 imgCaptchaCode?: string;
245 223 imgCaptchaUuid?: string;
246 224 /** @format int32 */
247 225 pageSize?: number;
248 226 password?: string;
249 227 /** @format int32 */
250   - start?: number;
251   - /** @format int32 */
252 228 total?: number;
253 229 userName?: string;
254 230 }
... ... @@ -258,15 +234,11 @@ export interface AdminUserModifyPwdVO {
258 234 /** @format int32 */
259 235 current?: number;
260 236 /** @format int32 */
261   - end?: number;
262   - /** @format int32 */
263 237 pageSize?: number;
264 238 password?: string;
265 239 phone?: string;
266 240 smsCaptchaCode?: string;
267 241 /** @format int32 */
268   - start?: number;
269   - /** @format int32 */
270 242 total?: number;
271 243 }
272 244  
... ... @@ -274,12 +246,8 @@ export interface AdminUserPasswordRecoverEmailVO {
274 246 /** @format int32 */
275 247 current?: number;
276 248 /** @format int32 */
277   - end?: number;
278   - /** @format int32 */
279 249 pageSize?: number;
280 250 /** @format int32 */
281   - start?: number;
282   - /** @format int32 */
283 251 total?: number;
284 252 userName?: string;
285 253 }
... ... @@ -288,8 +256,6 @@ export interface AdminUserQueryVO {
288 256 /** @format int32 */
289 257 current?: number;
290 258 email?: string;
291   - /** @format int32 */
292   - end?: number;
293 259 /** @format int64 */
294 260 id?: number;
295 261 ids?: Array<number>;
... ... @@ -300,8 +266,6 @@ export interface AdminUserQueryVO {
300 266 phone?: string;
301 267 sex?: string;
302 268 /** @format int32 */
303   - start?: number;
304   - /** @format int32 */
305 269 total?: number;
306 270 userName?: string;
307 271 workerType?: string;
... ... @@ -312,8 +276,6 @@ export interface AdminUserRegisterVO {
312 276 /** @format int32 */
313 277 current?: number;
314 278 email?: string;
315   - /** @format int32 */
316   - end?: number;
317 279 isAgreeAgreement?: boolean;
318 280 /** @format int32 */
319 281 pageSize?: number;
... ... @@ -323,8 +285,6 @@ export interface AdminUserRegisterVO {
323 285 safeQuestion?: string;
324 286 smsCaptchaCode?: string;
325 287 /** @format int32 */
326   - start?: number;
327   - /** @format int32 */
328 288 total?: number;
329 289 userName?: string;
330 290 }
... ... @@ -520,12 +480,8 @@ export interface ApiOrderCustomersRequest {
520 480 /** @format int32 */
521 481 current?: number;
522 482 /** @format int32 */
523   - end?: number;
524   - /** @format int32 */
525 483 pageSize?: number;
526 484 /** @format int32 */
527   - start?: number;
528   - /** @format int32 */
529 485 total?: number;
530 486 }
531 487  
... ... @@ -596,15 +552,11 @@ export interface AuditDto {
596 552 export interface AuditVO {
597 553 /** @format int32 */
598 554 current?: number;
599   - /** @format int32 */
600   - end?: number;
601 555 /** @format int64 */
602 556 id?: number;
603 557 /** @format int32 */
604 558 pageSize?: number;
605 559 /** @format int32 */
606   - start?: number;
607   - /** @format int32 */
608 560 status?: number;
609 561 /** @format int32 */
610 562 total?: number;
... ... @@ -674,32 +626,16 @@ export interface CancelSendOrderDto {
674 626 export interface CaptchaMessageVO {
675 627 /** @format int32 */
676 628 current?: number;
677   - /** @format int32 */
678   - end?: number;
679 629 imgCaptchaCode?: string;
680 630 imgCaptchaUuid?: string;
681 631 /** @format int32 */
682 632 pageSize?: number;
683 633 phone?: string;
684 634 /** @format int32 */
685   - start?: number;
686   - /** @format int32 */
687 635 total?: number;
688 636 type?: string;
689 637 }
690 638  
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   -
703 639 export interface Contactperson {
704 640 birthday?: string;
705 641 contactAddress?: string;
... ... @@ -887,8 +823,6 @@ export interface DictionaryQueryVO {
887 823 dictCode?: string;
888 824 dictName?: string;
889 825 dictValue?: string;
890   - /** @format int32 */
891   - end?: number;
892 826 /** @format int64 */
893 827 id?: number;
894 828 ids?: Array<number>;
... ... @@ -898,8 +832,6 @@ export interface DictionaryQueryVO {
898 832 /** @format int32 */
899 833 sort?: number;
900 834 /** @format int32 */
901   - start?: number;
902   - /** @format int32 */
903 835 total?: number;
904 836 }
905 837  
... ... @@ -1202,14 +1134,10 @@ export interface MeasureUnitListResRow {
1202 1134 export interface MessageQueryDTO {
1203 1135 /** @format int32 */
1204 1136 current?: number;
1205   - /** @format int32 */
1206   - end?: number;
1207 1137 isReaded?: string;
1208 1138 /** @format int32 */
1209 1139 pageSize?: number;
1210 1140 /** @format int32 */
1211   - start?: number;
1212   - /** @format int32 */
1213 1141 total?: number;
1214 1142 username?: string;
1215 1143 }
... ... @@ -1245,8 +1173,6 @@ export interface OrderAuditLogQueryVO {
1245 1173 applyId?: number;
1246 1174 /** @format int32 */
1247 1175 current?: number;
1248   - /** @format int32 */
1249   - end?: number;
1250 1176 /** @format int64 */
1251 1177 id?: number;
1252 1178 ids?: Array<number>;
... ... @@ -1256,8 +1182,6 @@ export interface OrderAuditLogQueryVO {
1256 1182 /** @format int32 */
1257 1183 pageSize?: number;
1258 1184 /** @format int32 */
1259   - start?: number;
1260   - /** @format int32 */
1261 1185 total?: number;
1262 1186 }
1263 1187  
... ... @@ -1292,8 +1216,6 @@ export interface OrderBaseInfoQueryVO {
1292 1216 customerCode?: string;
1293 1217 customerPo?: string;
1294 1218 customerStyle?: string;
1295   - /** @format int32 */
1296   - end?: number;
1297 1219 /** @format int64 */
1298 1220 id?: number;
1299 1221 ids?: Array<number>;
... ... @@ -1315,8 +1237,6 @@ export interface OrderBaseInfoQueryVO {
1315 1237 productionDepartmentConsignTime?: string;
1316 1238 projectNo?: string;
1317 1239 /** @format int32 */
1318   - start?: number;
1319   - /** @format int32 */
1320 1240 total?: number;
1321 1241 }
1322 1242  
... ... @@ -1377,8 +1297,6 @@ export interface OrderFieldLockApplyQueryVO {
1377 1297 auditUserId?: number;
1378 1298 /** @format int32 */
1379 1299 current?: number;
1380   - /** @format int32 */
1381   - end?: number;
1382 1300 fields?: string;
1383 1301 /** @format int64 */
1384 1302 id?: number;
... ... @@ -1388,8 +1306,6 @@ export interface OrderFieldLockApplyQueryVO {
1388 1306 /** @format int32 */
1389 1307 pageSize?: number;
1390 1308 /** @format int32 */
1391   - start?: number;
1392   - /** @format int32 */
1393 1309 status?: number;
1394 1310 statusList?: Array<number>;
1395 1311 /** @format int32 */
... ... @@ -1438,8 +1354,6 @@ export interface OrderInspectionStageVO {
1438 1354 export interface OrderOptLogQueryVO {
1439 1355 /** @format int32 */
1440 1356 current?: number;
1441   - /** @format int32 */
1442   - end?: number;
1443 1357 /** @format int64 */
1444 1358 id?: number;
1445 1359 ids?: Array<number>;
... ... @@ -1448,8 +1362,6 @@ export interface OrderOptLogQueryVO {
1448 1362 /** @format int32 */
1449 1363 pageSize?: number;
1450 1364 /** @format int32 */
1451   - start?: number;
1452   - /** @format int32 */
1453 1365 total?: number;
1454 1366 }
1455 1367  
... ... @@ -1499,6 +1411,12 @@ export interface OrderProfitAnalysisVo {
1499 1411 orderIds?: Array<number>;
1500 1412 }
1501 1413  
  1414 +export interface OrderProvinceVo {
  1415 + /** @format int32 */
  1416 + pid?: number;
  1417 + province?: string;
  1418 +}
  1419 +
1502 1420 export interface OrderStageFileDo {
1503 1421 file?: File;
1504 1422 }
... ... @@ -1645,6 +1563,20 @@ export interface OrderUpdateVO {
1645 1563 trackStageInfo?: OrderTrackStageVO;
1646 1564 }
1647 1565  
  1566 +export interface OrderUserVo {
  1567 + /** @format int32 */
  1568 + uid?: number;
  1569 + userName?: string;
  1570 +}
  1571 +
  1572 +export interface OrderZoNingProvinceUserDo {
  1573 + /** @format int32 */
  1574 + id?: number;
  1575 + orderProvinceVoList?: Array<OrderProvinceVo>;
  1576 + orderUserVoList?: Array<OrderUserVo>;
  1577 + zoning?: string;
  1578 +}
  1579 +
1648 1580 export interface ProcureConvertProcureDto {
1649 1581 /**
1650 1582 * @description
... ... @@ -1735,8 +1667,6 @@ export interface QueryBankStatementDto {
1735 1667 collectionDatetimeEnd?: string;
1736 1668 /** @format int32 */
1737 1669 current?: number;
1738   - /** @format int32 */
1739   - end?: number;
1740 1670 /** @format int64 */
1741 1671 id?: number;
1742 1672 /** @format int32 */
... ... @@ -1758,8 +1688,6 @@ export interface QueryBankStatementDto {
1758 1688 remark?: string;
1759 1689 remarkNote?: string;
1760 1690 serialNumber?: string;
1761   - /** @format int32 */
1762   - start?: number;
1763 1691 status?: string;
1764 1692 /** @format int32 */
1765 1693 total?: number;
... ... @@ -1849,325 +1777,6 @@ export interface ReissueInvoiceDto {
1849 1777 notes?: string;
1850 1778 }
1851 1779  
1852   -export interface ResearchGroupAccountAddRequest {
1853   - /**
1854   - * @description
1855   - * 关联的账号id
1856   - * @format int64
1857   - */
1858   - accountId?: number;
1859   - /**
1860   - * @description
1861   - * 关联的账号名称
1862   - */
1863   - accountName?: string;
1864   - /**
1865   - * @description
1866   - * 关联的账号手机号
1867   - */
1868   - accountPhone?: string;
1869   - /**
1870   - * @description
1871   - * 课题组id
1872   - * @format int64
1873   - */
1874   - groupId?: number;
1875   -}
1876   -
1877   -export interface ResearchGroupAccountEditRequest {
1878   - /**
1879   - * @description
1880   - * 关联的账号id
1881   - * @format int64
1882   - */
1883   - accountId?: number;
1884   - /**
1885   - * @description
1886   - * 关联的账号名称
1887   - */
1888   - accountName?: string;
1889   - /**
1890   - * @description
1891   - * 关联的账号手机号
1892   - */
1893   - accountPhone?: string;
1894   - /**
1895   - * @description
1896   - * 课题组id
1897   - * @format int64
1898   - */
1899   - groupId?: number;
1900   - /**
1901   - * @description
1902   - * 主键id
1903   - * @format int64
1904   - */
1905   - id?: number;
1906   -}
1907   -
1908   -export interface ResearchGroupAddRequest {
1909   - accounts?: Array<ResearchGroupAccountAddRequest>;
1910   - /**
1911   - * @description
1912   - * 课题组名称
1913   - */
1914   - group?: string;
1915   - /**
1916   - * @description
1917   - * 课题组负责人
1918   - */
1919   - leader?: string;
1920   - members?: Array<ResearchGroupMemberAddRequest>;
1921   -}
1922   -
1923   -export interface ResearchGroupDeleteRequest {
1924   - /**
1925   - * @description
1926   - * 主键id
1927   - */
1928   - ids?: Array<number>;
1929   -}
1930   -
1931   -export interface ResearchGroupDetailRequest {
1932   - /**
1933   - * @description
1934   - * 主键id
1935   - * @format int64
1936   - */
1937   - id?: number;
1938   -}
1939   -
1940   -export interface ResearchGroupEditRequest {
1941   - /**
1942   - * @description
1943   - * 课题组预存账号
1944   - */
1945   - accounts?: Array<ResearchGroupAccountEditRequest>;
1946   - /**
1947   - * @description
1948   - * 课题组名称
1949   - */
1950   - group?: string;
1951   - /**
1952   - * @description
1953   - * 主键id
1954   - * @format int64
1955   - */
1956   - id?: number;
1957   - /**
1958   - * @description
1959   - * 课题组负责人
1960   - */
1961   - leader?: string;
1962   - /**
1963   - * @description
1964   - * 课题组成员集合
1965   - */
1966   - members?: Array<ResearchGroupMemberEditRequest>;
1967   -}
1968   -
1969   -export interface ResearchGroupListRequest {
1970   - /**
1971   - * @description
1972   - * 预存账号手机号
1973   - */
1974   - accountPhone?: string;
1975   - /** @format int32 */
1976   - current?: number;
1977   - /** @format int32 */
1978   - end?: number;
1979   - /**
1980   - * @description
1981   - * 课题组名称
1982   - */
1983   - groupName?: string;
1984   - /**
1985   - * @description
1986   - * 课题组负责人
1987   - */
1988   - leaderName?: string;
1989   - /**
1990   - * @description
1991   - * 课题组成员名称
1992   - */
1993   - memberName?: string;
1994   - /**
1995   - * @description
1996   - * 课题组成员手机号
1997   - */
1998   - memberPhone?: string;
1999   - /** @format int32 */
2000   - pageSize?: number;
2001   - /** @format int32 */
2002   - start?: number;
2003   - /** @format int32 */
2004   - total?: number;
2005   -}
2006   -
2007   -export interface ResearchGroupMemberAddRequest {
2008   - /**
2009   - * @description
2010   - * 课题组ID
2011   - * @format int64
2012   - */
2013   - groupId?: number;
2014   - /**
2015   - * @description
2016   - * 成员名称
2017   - */
2018   - memberName?: string;
2019   - /**
2020   - * @description
2021   - * 成员手机号
2022   - */
2023   - memberPhone?: string;
2024   -}
2025   -
2026   -export interface ResearchGroupMemberEditRequest {
2027   - /**
2028   - * @description
2029   - * 课题组ID
2030   - * @format int64
2031   - */
2032   - groupId?: number;
2033   - /**
2034   - * @description
2035   - * 主键id
2036   - * @format int64
2037   - */
2038   - id?: number;
2039   - /**
2040   - * @description
2041   - * 成员名称
2042   - */
2043   - memberName?: string;
2044   - /**
2045   - * @description
2046   - * 成员手机号
2047   - */
2048   - memberPhone?: string;
2049   -}
2050   -
2051   -export interface ResearchGroupMemberRequestAddRequest {
2052   - /**
2053   - * @description
2054   - * 课题组ID
2055   - * @format int64
2056   - */
2057   - groupId?: number;
2058   - /**
2059   - * @description
2060   - * 课题组名称
2061   - */
2062   - groupName?: string;
2063   - members?: Array<ResearchGroupMemberAddRequest>;
2064   - /**
2065   - * @description
2066   - * 申请备注
2067   - */
2068   - requestNotes?: string;
2069   -}
2070   -
2071   -export interface ResearchGroupMemberRequestDeleteRequest {
2072   - /**
2073   - * @description
2074   - * 主键id
2075   - */
2076   - ids?: Array<number>;
2077   -}
2078   -
2079   -export interface ResearchGroupMemberRequestDetailRequest {
2080   - /**
2081   - * @description
2082   - * 主键id
2083   - * @format int64
2084   - */
2085   - id?: number;
2086   -}
2087   -
2088   -export interface ResearchGroupMemberRequestEditRequest {
2089   - /**
2090   - * @description
2091   - * 课题组ID
2092   - * @format int64
2093   - */
2094   - groupId?: number;
2095   - /**
2096   - * @description
2097   - * 课题组名称
2098   - */
2099   - groupName?: string;
2100   - /**
2101   - * @description
2102   - * 主键id
2103   - * @format int64
2104   - */
2105   - id?: number;
2106   - /**
2107   - * @description
2108   - * 成员名称
2109   - */
2110   - memberName?: string;
2111   - /**
2112   - * @description
2113   - * 成员手机号
2114   - */
2115   - memberPhone?: string;
2116   - /**
2117   - * @description
2118   - * 申请备注
2119   - */
2120   - requestNotes?: string;
2121   -}
2122   -
2123   -export interface ResearchGroupMemberRequestsRequest {
2124   - /**
2125   - * @description
2126   - * 审核备注
2127   - */
2128   - auditNotes?: string;
2129   - /**
2130   - * @description
2131   - * 审核状态
2132   - */
2133   - auditStatus?: string;
2134   - /**
2135   - * @description
2136   - * 创建人
2137   - */
2138   - createByName?: string;
2139   - /** @format int32 */
2140   - current?: number;
2141   - /** @format int32 */
2142   - end?: number;
2143   - /**
2144   - * @description
2145   - * 课题组名称
2146   - */
2147   - groupName?: string;
2148   - /**
2149   - * @description
2150   - * 成员名称
2151   - */
2152   - memberName?: string;
2153   - /**
2154   - * @description
2155   - * 成员手机号
2156   - */
2157   - memberPhone?: string;
2158   - /** @format int32 */
2159   - pageSize?: number;
2160   - /**
2161   - * @description
2162   - * 申请备注
2163   - */
2164   - requestNotes?: string;
2165   - /** @format int32 */
2166   - start?: number;
2167   - /** @format int32 */
2168   - total?: number;
2169   -}
2170   -
2171 1780 export interface ResetPwdVO {
2172 1781 /** @format int64 */
2173 1782 userId?: number;
... ... @@ -2213,8 +1822,6 @@ export interface SysLogQueryVO {
2213 1822 /** @format int32 */
2214 1823 current?: number;
2215 1824 description?: string;
2216   - /** @format int32 */
2217   - end?: number;
2218 1825 exceptionDetail?: string;
2219 1826 /** @format int64 */
2220 1827 id?: number;
... ... @@ -2225,8 +1832,6 @@ export interface SysLogQueryVO {
2225 1832 pageSize?: number;
2226 1833 params?: string;
2227 1834 requestIp?: string;
2228   - /** @format int32 */
2229   - start?: number;
2230 1835 /** @format int64 */
2231 1836 time?: number;
2232 1837 /** @format int32 */
... ... @@ -2390,12 +1995,8 @@ export interface UserCenterInfoRequest {
2390 1995 /** @format int32 */
2391 1996 current?: number;
2392 1997 /** @format int32 */
2393   - end?: number;
2394   - /** @format int32 */
2395 1998 pageSize?: number;
2396 1999 /** @format int32 */
2397   - start?: number;
2398   - /** @format int32 */
2399 2000 total?: number;
2400 2001 /**
2401 2002 * @description
... ... @@ -2415,8 +2016,6 @@ export interface UserDetailRequest {
2415 2016 /** @format int32 */
2416 2017 current?: number;
2417 2018 /** @format int32 */
2418   - end?: number;
2419   - /** @format int32 */
2420 2019 pageSize?: number;
2421 2020 /**
2422 2021 * @description
... ... @@ -2424,8 +2023,6 @@ export interface UserDetailRequest {
2424 2023 */
2425 2024 phone?: string;
2426 2025 /** @format int32 */
2427   - start?: number;
2428   - /** @format int32 */
2429 2026 total?: number;
2430 2027 /**
2431 2028 * @description
... ... @@ -2442,8 +2039,6 @@ export interface UserListRequest {
2442 2039 * 创建日期开始时间
2443 2040 */
2444 2041 dateLimit?: string;
2445   - /** @format int32 */
2446   - end?: number;
2447 2042 /**
2448 2043 * @description
2449 2044 * 单位
... ... @@ -2468,23 +2063,10 @@ export interface UserListRequest {
2468 2063 phone?: string;
2469 2064 /**
2470 2065 * @description
2471   - * phones
2472   - */
2473   - phones?: Array<string>;
2474   - /**
2475   - * @description
2476   - * 内部订单系统课题组id
2477   - * @format int64
2478   - */
2479   - researchGroupId?: number;
2480   - /**
2481   - * @description
2482 2066 * salesCode
2483 2067 */
2484 2068 salesCode?: string;
2485 2069 /** @format int32 */
2486   - start?: number;
2487   - /** @format int32 */
2488 2070 total?: number;
2489 2071 /**
2490 2072 * @description
... ... @@ -2494,23 +2076,11 @@ export interface UserListRequest {
2494 2076 uid?: number;
2495 2077 /**
2496 2078 * @description
2497   - * ids
2498   - */
2499   - uids?: Array<number>;
2500   - /**
2501   - * @description
2502 2079 * 用户名
2503 2080 */
2504 2081 username?: string;
2505 2082 }
2506 2083  
2507   -export interface UserNowMoneyCheckRequest {
2508   - phone?: string;
2509   - subPrice?: number;
2510   - /** @format int64 */
2511   - uid?: number;
2512   -}
2513   -
2514 2084 export interface View {
2515 2085 contentType?: string;
2516 2086 }
... ... @@ -2575,11 +2145,6 @@ export interface SalesRechargePrepaymentAuditRequest {
2575 2145 * 是否通过
2576 2146 */
2577 2147 pass?: boolean;
2578   - /**
2579   - * @description
2580   - * 手机号
2581   - */
2582   - phone?: string;
2583 2148 }
2584 2149  
2585 2150 export interface SalesRechargePrepaymentCreateRequest {
... ... @@ -2685,8 +2250,6 @@ export interface SalesRechargePrepaymentRequest {
2685 2250 * @format int32
2686 2251 */
2687 2252 enableFlag?: number;
2688   - /** @format int32 */
2689   - end?: number;
2690 2253 /**
2691 2254 * @description
2692 2255 * id
... ... @@ -2731,8 +2294,6 @@ export interface SalesRechargePrepaymentRequest {
2731 2294 * 销售代表
2732 2295 */
2733 2296 salesCode?: string;
2734   - /** @format int32 */
2735   - start?: number;
2736 2297 /**
2737 2298 * @description
2738 2299 * 状态
... ... @@ -2911,38 +2472,6 @@ export interface TsgURL {
2911 2472 userInfo?: string;
2912 2473 }
2913 2474  
2914   -/**
2915   - * @description
2916   - * 保存用户地址请求对象
2917   - */
2918   -export interface UserAddressSaveRequest {
2919   - /**
2920   - * @description
2921   - * 联系电话
2922   - */
2923   - customerContactNumber: string;
2924   - /**
2925   - * @description
2926   - * 客户姓名
2927   - */
2928   - customerName: string;
2929   - /**
2930   - * @description
2931   - * 收货地址
2932   - */
2933   - customerShippingAddress?: string;
2934   - /**
2935   - * @description
2936   - * 客户单位
2937   - */
2938   - institution?: string;
2939   - /**
2940   - * @description
2941   - * 课题组老师
2942   - */
2943   - institutionContactName?: string;
2944   -}
2945   -
2946 2475 export interface UploadPaymentReceiptDTO {
2947 2476 /**
2948 2477 * @description
... ...
src/services/request.ts
... ... @@ -34,7 +34,6 @@ import type {
34 34 CancelInvoiceAndBankStatementDto,
35 35 CancelSendOrderDto,
36 36 CaptchaMessageVO,
37   - CommonAuditRequest,
38 37 CustomFieldRes,
39 38 CustomerCustomerListReq,
40 39 CustomerDetailDto,
... ... @@ -68,6 +67,7 @@ import type {
68 67 OrderStagesSelDo,
69 68 OrderUnlockFieldApplyVO,
70 69 OrderUpdateVO,
  70 + OrderZoNingProvinceUserDo,
71 71 ProcureConvertProcureDto,
72 72 ProcureOrderDto,
73 73 ProcurePrintDto,
... ... @@ -81,16 +81,6 @@ import type {
81 81 QueryMainOrderDto,
82 82 QueryReportFormsDto,
83 83 ReissueInvoiceDto,
84   - ResearchGroupAddRequest,
85   - ResearchGroupDeleteRequest,
86   - ResearchGroupDetailRequest,
87   - ResearchGroupEditRequest,
88   - ResearchGroupListRequest,
89   - ResearchGroupMemberRequestAddRequest,
90   - ResearchGroupMemberRequestDeleteRequest,
91   - ResearchGroupMemberRequestDetailRequest,
92   - ResearchGroupMemberRequestEditRequest,
93   - ResearchGroupMemberRequestsRequest,
94 84 ResetPwdVO,
95 85 SalOrderSaveDto,
96 86 SalesRechargePrepaymentAuditRequest,
... ... @@ -112,11 +102,9 @@ import type {
112 102 UpdatePwdVO,
113 103 UploadPaymentReceiptDTO,
114 104 UserAddressListRequest,
115   - UserAddressSaveRequest,
116 105 UserCenterInfoRequest,
117 106 UserDetailRequest,
118 107 UserListRequest,
119   - UserNowMoneyCheckRequest,
120 108 } from './definition';
121 109  
122 110 /** @description request parameter type for postApiLocalStorageUpload */
... ... @@ -1479,78 +1467,6 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() =&gt; {
1479 1467 return request;
1480 1468 })();
1481 1469  
1482   -/** @description request parameter type for postCanrdApiUserInnerOrderSystemAddressSave */
1483   -export interface PostCanrdApiUserInnerOrderSystemAddressSaveOption {
1484   - /**
1485   - * @description
1486   - * request
1487   - */
1488   - body: {
1489   - /**
1490   - @description
1491   - request */
1492   - request: UserAddressSaveRequest;
1493   - };
1494   -}
1495   -
1496   -/** @description response type for postCanrdApiUserInnerOrderSystemAddressSave */
1497   -export interface PostCanrdApiUserInnerOrderSystemAddressSaveResponse {
1498   - /**
1499   - * @description
1500   - * OK
1501   - */
1502   - 200: ServerResult;
1503   - /**
1504   - * @description
1505   - * Created
1506   - */
1507   - 201: any;
1508   - /**
1509   - * @description
1510   - * Unauthorized
1511   - */
1512   - 401: any;
1513   - /**
1514   - * @description
1515   - * Forbidden
1516   - */
1517   - 403: any;
1518   - /**
1519   - * @description
1520   - * Not Found
1521   - */
1522   - 404: any;
1523   -}
1524   -
1525   -export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess =
1526   - PostCanrdApiUserInnerOrderSystemAddressSaveResponse[200];
1527   -/**
1528   - * @description
1529   - * 查询地址信息
1530   - * @tags canrd-mobile-api-controller
1531   - * @produces *
1532   - * @consumes application/json
1533   - */
1534   -export const postCanrdApiUserInnerOrderSystemAddressSave =
1535   - /* #__PURE__ */ (() => {
1536   - const method = 'post';
1537   - const url = '/canrd/api/user/innerOrderSystem/address/save';
1538   - function request(
1539   - option: PostCanrdApiUserInnerOrderSystemAddressSaveOption,
1540   - ): Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess> {
1541   - return requester(request.url, {
1542   - method: request.method,
1543   - ...option,
1544   - }) as unknown as Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess>;
1545   - }
1546   -
1547   - /** http method */
1548   - request.method = method;
1549   - /** request url */
1550   - request.url = url;
1551   - return request;
1552   - })();
1553   -
1554 1470 /** @description request parameter type for postCanrdApiUserList */
1555 1471 export interface PostCanrdApiUserListOption {
1556 1472 /**
... ... @@ -1622,147 +1538,6 @@ export const postCanrdApiUserList = /* #__PURE__ */ (() =&gt; {
1622 1538 return request;
1623 1539 })();
1624 1540  
1625   -/** @description request parameter type for postCanrdApiUserNowMoneyCheck */
1626   -export interface PostCanrdApiUserNowMoneyCheckOption {
1627   - /**
1628   - * @description
1629   - * request
1630   - */
1631   - body: {
1632   - /**
1633   - @description
1634   - request */
1635   - request: UserNowMoneyCheckRequest;
1636   - };
1637   -}
1638   -
1639   -/** @description response type for postCanrdApiUserNowMoneyCheck */
1640   -export interface PostCanrdApiUserNowMoneyCheckResponse {
1641   - /**
1642   - * @description
1643   - * OK
1644   - */
1645   - 200: ServerResult;
1646   - /**
1647   - * @description
1648   - * Created
1649   - */
1650   - 201: any;
1651   - /**
1652   - * @description
1653   - * Unauthorized
1654   - */
1655   - 401: any;
1656   - /**
1657   - * @description
1658   - * Forbidden
1659   - */
1660   - 403: any;
1661   - /**
1662   - * @description
1663   - * Not Found
1664   - */
1665   - 404: any;
1666   -}
1667   -
1668   -export type PostCanrdApiUserNowMoneyCheckResponseSuccess =
1669   - PostCanrdApiUserNowMoneyCheckResponse[200];
1670   -/**
1671   - * @description
1672   - * 检查用户额度
1673   - * @tags canrd-mobile-api-controller
1674   - * @produces *
1675   - * @consumes application/json
1676   - */
1677   -export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => {
1678   - const method = 'post';
1679   - const url = '/canrd/api/user/nowMoney/check';
1680   - function request(
1681   - option: PostCanrdApiUserNowMoneyCheckOption,
1682   - ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> {
1683   - return requester(request.url, {
1684   - method: request.method,
1685   - ...option,
1686   - }) as unknown as Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess>;
1687   - }
1688   -
1689   - /** http method */
1690   - request.method = method;
1691   - /** request url */
1692   - request.url = url;
1693   - return request;
1694   -})();
1695   -
1696   -/** @description request parameter type for postCommonAudit */
1697   -export interface PostCommonAuditOption {
1698   - /**
1699   - * @description
1700   - * request
1701   - */
1702   - body: {
1703   - /**
1704   - @description
1705   - request */
1706   - request: CommonAuditRequest;
1707   - };
1708   -}
1709   -
1710   -/** @description response type for postCommonAudit */
1711   -export interface PostCommonAuditResponse {
1712   - /**
1713   - * @description
1714   - * OK
1715   - */
1716   - 200: ServerResult;
1717   - /**
1718   - * @description
1719   - * Created
1720   - */
1721   - 201: any;
1722   - /**
1723   - * @description
1724   - * Unauthorized
1725   - */
1726   - 401: any;
1727   - /**
1728   - * @description
1729   - * Forbidden
1730   - */
1731   - 403: any;
1732   - /**
1733   - * @description
1734   - * Not Found
1735   - */
1736   - 404: any;
1737   -}
1738   -
1739   -export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200];
1740   -/**
1741   - * @description
1742   - * audit
1743   - * @tags common-controller
1744   - * @produces *
1745   - * @consumes application/json
1746   - */
1747   -export const postCommonAudit = /* #__PURE__ */ (() => {
1748   - const method = 'post';
1749   - const url = '/common/audit';
1750   - function request(
1751   - option: PostCommonAuditOption,
1752   - ): Promise<PostCommonAuditResponseSuccess> {
1753   - return requester(request.url, {
1754   - method: request.method,
1755   - ...option,
1756   - }) as unknown as Promise<PostCommonAuditResponseSuccess>;
1757   - }
1758   -
1759   - /** http method */
1760   - request.method = method;
1761   - /** request url */
1762   - request.url = url;
1763   - return request;
1764   -})();
1765   -
1766 1541 /** @description response type for getError */
1767 1542 export interface GetErrorResponse {
1768 1543 /**
... ... @@ -7028,22 +6803,22 @@ export const postOrderErpOrderStagesPayWayUploadForPayWay =
7028 6803 return request;
7029 6804 })();
7030 6805  
7031   -/** @description request parameter type for postOrderErpProfitAnalysis */
7032   -export interface PostOrderErpProfitAnalysisOption {
  6806 +/** @description request parameter type for deleteOrderErpOrderZoNingDelete */
  6807 +export interface DeleteOrderErpOrderZoNingDeleteOption {
7033 6808 /**
7034 6809 * @description
7035   - * orderProfitAnalysisVo
  6810 + * id
7036 6811 */
7037 6812 body: {
7038 6813 /**
7039 6814 @description
7040   - orderProfitAnalysisVo */
7041   - orderProfitAnalysisVo: OrderProfitAnalysisVo;
  6815 + id */
  6816 + id: number;
7042 6817 };
7043 6818 }
7044 6819  
7045   -/** @description response type for postOrderErpProfitAnalysis */
7046   -export interface PostOrderErpProfitAnalysisResponse {
  6820 +/** @description response type for deleteOrderErpOrderZoNingDelete */
  6821 +export interface DeleteOrderErpOrderZoNingDeleteResponse {
7047 6822 /**
7048 6823 * @description
7049 6824 * OK
... ... @@ -7051,9 +6826,9 @@ export interface PostOrderErpProfitAnalysisResponse {
7051 6826 200: ServerResult;
7052 6827 /**
7053 6828 * @description
7054   - * Created
  6829 + * No Content
7055 6830 */
7056   - 201: any;
  6831 + 204: any;
7057 6832 /**
7058 6833 * @description
7059 6834 * Unauthorized
... ... @@ -7064,32 +6839,26 @@ export interface PostOrderErpProfitAnalysisResponse {
7064 6839 * Forbidden
7065 6840 */
7066 6841 403: any;
7067   - /**
7068   - * @description
7069   - * Not Found
7070   - */
7071   - 404: any;
7072 6842 }
7073 6843  
7074   -export type PostOrderErpProfitAnalysisResponseSuccess =
7075   - PostOrderErpProfitAnalysisResponse[200];
  6844 +export type DeleteOrderErpOrderZoNingDeleteResponseSuccess =
  6845 + DeleteOrderErpOrderZoNingDeleteResponse[200];
7076 6846 /**
7077 6847 * @description
7078   - * analysis
7079   - * @tags order-profit-controller
  6848 + * toDetele
  6849 + * @tags order-zo-ning-controller
7080 6850 * @produces *
7081   - * @consumes application/json
7082 6851 */
7083   -export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => {
7084   - const method = 'post';
7085   - const url = '/order/erp/profit/analysis';
  6852 +export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => {
  6853 + const method = 'delete';
  6854 + const url = '/order/erp/orderZoNing/delete';
7086 6855 function request(
7087   - option: PostOrderErpProfitAnalysisOption,
7088   - ): Promise<PostOrderErpProfitAnalysisResponseSuccess> {
  6856 + option: DeleteOrderErpOrderZoNingDeleteOption,
  6857 + ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> {
7089 6858 return requester(request.url, {
7090 6859 method: request.method,
7091 6860 ...option,
7092   - }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>;
  6861 + }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>;
7093 6862 }
7094 6863  
7095 6864 /** http method */
... ... @@ -7099,22 +6868,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() =&gt; {
7099 6868 return request;
7100 6869 })();
7101 6870  
7102   -/** @description request parameter type for postOrderErpRolesAdd */
7103   -export interface PostOrderErpRolesAddOption {
  6871 +/** @description request parameter type for postOrderErpOrderZoNingSaveOrUpdate */
  6872 +export interface PostOrderErpOrderZoNingSaveOrUpdateOption {
7104 6873 /**
7105 6874 * @description
7106   - * roleVO
  6875 + * orderZoNingProvinceUserDo
7107 6876 */
7108 6877 body: {
7109 6878 /**
7110 6879 @description
7111   - roleVO */
7112   - roleVO: AdminRoleVO;
  6880 + orderZoNingProvinceUserDo */
  6881 + orderZoNingProvinceUserDo: OrderZoNingProvinceUserDo;
7113 6882 };
7114 6883 }
7115 6884  
7116   -/** @description response type for postOrderErpRolesAdd */
7117   -export interface PostOrderErpRolesAddResponse {
  6885 +/** @description response type for postOrderErpOrderZoNingSaveOrUpdate */
  6886 +export interface PostOrderErpOrderZoNingSaveOrUpdateResponse {
7118 6887 /**
7119 6888 * @description
7120 6889 * OK
... ... @@ -7142,25 +6911,25 @@ export interface PostOrderErpRolesAddResponse {
7142 6911 404: any;
7143 6912 }
7144 6913  
7145   -export type PostOrderErpRolesAddResponseSuccess =
7146   - PostOrderErpRolesAddResponse[200];
  6914 +export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess =
  6915 + PostOrderErpOrderZoNingSaveOrUpdateResponse[200];
7147 6916 /**
7148 6917 * @description
7149   - * 新增角色
7150   - * @tags 系统:角色管理
  6918 + * update
  6919 + * @tags order-zo-ning-controller
7151 6920 * @produces *
7152 6921 * @consumes application/json
7153 6922 */
7154   -export const postOrderErpRolesAdd = /* #__PURE__ */ (() => {
  6923 +export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => {
7155 6924 const method = 'post';
7156   - const url = '/order/erp/roles/add';
  6925 + const url = '/order/erp/orderZoNing/saveOrUpdate';
7157 6926 function request(
7158   - option: PostOrderErpRolesAddOption,
7159   - ): Promise<PostOrderErpRolesAddResponseSuccess> {
  6927 + option: PostOrderErpOrderZoNingSaveOrUpdateOption,
  6928 + ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> {
7160 6929 return requester(request.url, {
7161 6930 method: request.method,
7162 6931 ...option,
7163   - }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>;
  6932 + }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>;
7164 6933 }
7165 6934  
7166 6935 /** http method */
... ... @@ -7170,22 +6939,8 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() =&gt; {
7170 6939 return request;
7171 6940 })();
7172 6941  
7173   -/** @description request parameter type for postOrderErpRolesAll */
7174   -export interface PostOrderErpRolesAllOption {
7175   - /**
7176   - * @description
7177   - * queryVO
7178   - */
7179   - body: {
7180   - /**
7181   - @description
7182   - queryVO */
7183   - queryVO: AdminRoleQueryVO;
7184   - };
7185   -}
7186   -
7187   -/** @description response type for postOrderErpRolesAll */
7188   -export interface PostOrderErpRolesAllResponse {
  6942 +/** @description response type for getOrderErpOrderZoNingSelectAll */
  6943 +export interface GetOrderErpOrderZoNingSelectAllResponse {
7189 6944 /**
7190 6945 * @description
7191 6946 * OK
... ... @@ -7193,11 +6948,6 @@ export interface PostOrderErpRolesAllResponse {
7193 6948 200: ServerResult;
7194 6949 /**
7195 6950 * @description
7196   - * Created
7197   - */
7198   - 201: any;
7199   - /**
7200   - * @description
7201 6951 * Unauthorized
7202 6952 */
7203 6953 401: any;
... ... @@ -7213,25 +6963,21 @@ export interface PostOrderErpRolesAllResponse {
7213 6963 404: any;
7214 6964 }
7215 6965  
7216   -export type PostOrderErpRolesAllResponseSuccess =
7217   - PostOrderErpRolesAllResponse[200];
  6966 +export type GetOrderErpOrderZoNingSelectAllResponseSuccess =
  6967 + GetOrderErpOrderZoNingSelectAllResponse[200];
7218 6968 /**
7219 6969 * @description
7220   - * 返回全部的角色
7221   - * @tags 系统:角色管理
  6970 + * 查询
  6971 + * @tags order-zo-ning-controller
7222 6972 * @produces *
7223   - * @consumes application/json
7224 6973 */
7225   -export const postOrderErpRolesAll = /* #__PURE__ */ (() => {
7226   - const method = 'post';
7227   - const url = '/order/erp/roles/all';
7228   - function request(
7229   - option: PostOrderErpRolesAllOption,
7230   - ): Promise<PostOrderErpRolesAllResponseSuccess> {
  6974 +export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => {
  6975 + const method = 'get';
  6976 + const url = '/order/erp/orderZoNing/selectAll';
  6977 + function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> {
7231 6978 return requester(request.url, {
7232 6979 method: request.method,
7233   - ...option,
7234   - }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>;
  6980 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>;
7235 6981 }
7236 6982  
7237 6983 /** http method */
... ... @@ -7241,590 +6987,8 @@ export const postOrderErpRolesAll = /* #__PURE__ */ (() =&gt; {
7241 6987 return request;
7242 6988 })();
7243 6989  
7244   -/** @description request parameter type for postOrderErpRolesAuthMenu */
7245   -export interface PostOrderErpRolesAuthMenuOption {
7246   - /**
7247   - * @description
7248   - * roleVO
7249   - */
7250   - body: {
7251   - /**
7252   - @description
7253   - roleVO */
7254   - roleVO: AdminAuthRoleVO;
7255   - };
7256   -}
7257   -
7258   -/** @description response type for postOrderErpRolesAuthMenu */
7259   -export interface PostOrderErpRolesAuthMenuResponse {
7260   - /**
7261   - * @description
7262   - * OK
7263   - */
7264   - 200: ServerResult;
7265   - /**
7266   - * @description
7267   - * Created
7268   - */
7269   - 201: any;
7270   - /**
7271   - * @description
7272   - * Unauthorized
7273   - */
7274   - 401: any;
7275   - /**
7276   - * @description
7277   - * Forbidden
7278   - */
7279   - 403: any;
7280   - /**
7281   - * @description
7282   - * Not Found
7283   - */
7284   - 404: any;
7285   -}
7286   -
7287   -export type PostOrderErpRolesAuthMenuResponseSuccess =
7288   - PostOrderErpRolesAuthMenuResponse[200];
7289   -/**
7290   - * @description
7291   - * 授权角色菜单
7292   - * @tags 系统:角色管理
7293   - * @produces *
7294   - * @consumes application/json
7295   - */
7296   -export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => {
7297   - const method = 'post';
7298   - const url = '/order/erp/roles/auth_menu';
7299   - function request(
7300   - option: PostOrderErpRolesAuthMenuOption,
7301   - ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> {
7302   - return requester(request.url, {
7303   - method: request.method,
7304   - ...option,
7305   - }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>;
7306   - }
7307   -
7308   - /** http method */
7309   - request.method = method;
7310   - /** request url */
7311   - request.url = url;
7312   - return request;
7313   -})();
7314   -
7315   -/** @description request parameter type for postOrderErpRolesDelete */
7316   -export interface PostOrderErpRolesDeleteOption {
7317   - /**
7318   - * @description
7319   - * queryVO
7320   - */
7321   - body: {
7322   - /**
7323   - @description
7324   - queryVO */
7325   - queryVO: AdminRoleQueryVO;
7326   - };
7327   -}
7328   -
7329   -/** @description response type for postOrderErpRolesDelete */
7330   -export interface PostOrderErpRolesDeleteResponse {
7331   - /**
7332   - * @description
7333   - * OK
7334   - */
7335   - 200: ServerResult;
7336   - /**
7337   - * @description
7338   - * Created
7339   - */
7340   - 201: any;
7341   - /**
7342   - * @description
7343   - * Unauthorized
7344   - */
7345   - 401: any;
7346   - /**
7347   - * @description
7348   - * Forbidden
7349   - */
7350   - 403: any;
7351   - /**
7352   - * @description
7353   - * Not Found
7354   - */
7355   - 404: any;
7356   -}
7357   -
7358   -export type PostOrderErpRolesDeleteResponseSuccess =
7359   - PostOrderErpRolesDeleteResponse[200];
7360   -/**
7361   - * @description
7362   - * 删除角色
7363   - * @tags 系统:角色管理
7364   - * @produces *
7365   - * @consumes application/json
7366   - */
7367   -export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {
7368   - const method = 'post';
7369   - const url = '/order/erp/roles/delete';
7370   - function request(
7371   - option: PostOrderErpRolesDeleteOption,
7372   - ): Promise<PostOrderErpRolesDeleteResponseSuccess> {
7373   - return requester(request.url, {
7374   - method: request.method,
7375   - ...option,
7376   - }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>;
7377   - }
7378   -
7379   - /** http method */
7380   - request.method = method;
7381   - /** request url */
7382   - request.url = url;
7383   - return request;
7384   -})();
7385   -
7386   -/** @description request parameter type for postOrderErpRolesDetail */
7387   -export interface PostOrderErpRolesDetailOption {
7388   - /**
7389   - * @description
7390   - * queryVO
7391   - */
7392   - body: {
7393   - /**
7394   - @description
7395   - queryVO */
7396   - queryVO: AdminRoleQueryVO;
7397   - };
7398   -}
7399   -
7400   -/** @description response type for postOrderErpRolesDetail */
7401   -export interface PostOrderErpRolesDetailResponse {
7402   - /**
7403   - * @description
7404   - * OK
7405   - */
7406   - 200: ServerResult;
7407   - /**
7408   - * @description
7409   - * Created
7410   - */
7411   - 201: any;
7412   - /**
7413   - * @description
7414   - * Unauthorized
7415   - */
7416   - 401: any;
7417   - /**
7418   - * @description
7419   - * Forbidden
7420   - */
7421   - 403: any;
7422   - /**
7423   - * @description
7424   - * Not Found
7425   - */
7426   - 404: any;
7427   -}
7428   -
7429   -export type PostOrderErpRolesDetailResponseSuccess =
7430   - PostOrderErpRolesDetailResponse[200];
7431   -/**
7432   - * @description
7433   - * 获取单个role
7434   - * @tags 系统:角色管理
7435   - * @produces *
7436   - * @consumes application/json
7437   - */
7438   -export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {
7439   - const method = 'post';
7440   - const url = '/order/erp/roles/detail';
7441   - function request(
7442   - option: PostOrderErpRolesDetailOption,
7443   - ): Promise<PostOrderErpRolesDetailResponseSuccess> {
7444   - return requester(request.url, {
7445   - method: request.method,
7446   - ...option,
7447   - }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>;
7448   - }
7449   -
7450   - /** http method */
7451   - request.method = method;
7452   - /** request url */
7453   - request.url = url;
7454   - return request;
7455   -})();
7456   -
7457   -/** @description request parameter type for postOrderErpRolesEdit */
7458   -export interface PostOrderErpRolesEditOption {
7459   - /**
7460   - * @description
7461   - * roleVO
7462   - */
7463   - body: {
7464   - /**
7465   - @description
7466   - roleVO */
7467   - roleVO: AdminRoleVO;
7468   - };
7469   -}
7470   -
7471   -/** @description response type for postOrderErpRolesEdit */
7472   -export interface PostOrderErpRolesEditResponse {
7473   - /**
7474   - * @description
7475   - * OK
7476   - */
7477   - 200: ServerResult;
7478   - /**
7479   - * @description
7480   - * Created
7481   - */
7482   - 201: any;
7483   - /**
7484   - * @description
7485   - * Unauthorized
7486   - */
7487   - 401: any;
7488   - /**
7489   - * @description
7490   - * Forbidden
7491   - */
7492   - 403: any;
7493   - /**
7494   - * @description
7495   - * Not Found
7496   - */
7497   - 404: any;
7498   -}
7499   -
7500   -export type PostOrderErpRolesEditResponseSuccess =
7501   - PostOrderErpRolesEditResponse[200];
7502   -/**
7503   - * @description
7504   - * 修改角色
7505   - * @tags 系统:角色管理
7506   - * @produces *
7507   - * @consumes application/json
7508   - */
7509   -export const postOrderErpRolesEdit = /* #__PURE__ */ (() => {
7510   - const method = 'post';
7511   - const url = '/order/erp/roles/edit';
7512   - function request(
7513   - option: PostOrderErpRolesEditOption,
7514   - ): Promise<PostOrderErpRolesEditResponseSuccess> {
7515   - return requester(request.url, {
7516   - method: request.method,
7517   - ...option,
7518   - }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>;
7519   - }
7520   -
7521   - /** http method */
7522   - request.method = method;
7523   - /** request url */
7524   - request.url = url;
7525   - return request;
7526   -})();
7527   -
7528   -/** @description request parameter type for postOrderErpRolesListByPage */
7529   -export interface PostOrderErpRolesListByPageOption {
7530   - /**
7531   - * @description
7532   - * queryVO
7533   - */
7534   - body: {
7535   - /**
7536   - @description
7537   - queryVO */
7538   - queryVO: AdminRoleQueryVO;
7539   - };
7540   -}
7541   -
7542   -/** @description response type for postOrderErpRolesListByPage */
7543   -export interface PostOrderErpRolesListByPageResponse {
7544   - /**
7545   - * @description
7546   - * OK
7547   - */
7548   - 200: ServerResult;
7549   - /**
7550   - * @description
7551   - * Created
7552   - */
7553   - 201: any;
7554   - /**
7555   - * @description
7556   - * Unauthorized
7557   - */
7558   - 401: any;
7559   - /**
7560   - * @description
7561   - * Forbidden
7562   - */
7563   - 403: any;
7564   - /**
7565   - * @description
7566   - * Not Found
7567   - */
7568   - 404: any;
7569   -}
7570   -
7571   -export type PostOrderErpRolesListByPageResponseSuccess =
7572   - PostOrderErpRolesListByPageResponse[200];
7573   -/**
7574   - * @description
7575   - * 查询角色
7576   - * @tags 系统:角色管理
7577   - * @produces *
7578   - * @consumes application/json
7579   - */
7580   -export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {
7581   - const method = 'post';
7582   - const url = '/order/erp/roles/list_by_page';
7583   - function request(
7584   - option: PostOrderErpRolesListByPageOption,
7585   - ): Promise<PostOrderErpRolesListByPageResponseSuccess> {
7586   - return requester(request.url, {
7587   - method: request.method,
7588   - ...option,
7589   - }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>;
7590   - }
7591   -
7592   - /** http method */
7593   - request.method = method;
7594   - /** request url */
7595   - request.url = url;
7596   - return request;
7597   -})();
7598   -
7599   -/** @description request parameter type for postOrderErpUsersAdd */
7600   -export interface PostOrderErpUsersAddOption {
7601   - /**
7602   - * @description
7603   - * userVO
7604   - */
7605   - body: {
7606   - /**
7607   - @description
7608   - userVO */
7609   - userVO: AdminUserVO;
7610   - };
7611   -}
7612   -
7613   -/** @description response type for postOrderErpUsersAdd */
7614   -export interface PostOrderErpUsersAddResponse {
7615   - /**
7616   - * @description
7617   - * OK
7618   - */
7619   - 200: ServerResult;
7620   - /**
7621   - * @description
7622   - * Created
7623   - */
7624   - 201: any;
7625   - /**
7626   - * @description
7627   - * Unauthorized
7628   - */
7629   - 401: any;
7630   - /**
7631   - * @description
7632   - * Forbidden
7633   - */
7634   - 403: any;
7635   - /**
7636   - * @description
7637   - * Not Found
7638   - */
7639   - 404: any;
7640   -}
7641   -
7642   -export type PostOrderErpUsersAddResponseSuccess =
7643   - PostOrderErpUsersAddResponse[200];
7644   -/**
7645   - * @description
7646   - * 新增用户
7647   - * @tags 系统:用户管理
7648   - * @produces *
7649   - * @consumes application/json
7650   - */
7651   -export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {
7652   - const method = 'post';
7653   - const url = '/order/erp/users/add';
7654   - function request(
7655   - option: PostOrderErpUsersAddOption,
7656   - ): Promise<PostOrderErpUsersAddResponseSuccess> {
7657   - return requester(request.url, {
7658   - method: request.method,
7659   - ...option,
7660   - }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>;
7661   - }
7662   -
7663   - /** http method */
7664   - request.method = method;
7665   - /** request url */
7666   - request.url = url;
7667   - return request;
7668   -})();
7669   -
7670   -/** @description request parameter type for postOrderErpUsersAuthRole */
7671   -export interface PostOrderErpUsersAuthRoleOption {
7672   - /**
7673   - * @description
7674   - * userVO
7675   - */
7676   - body: {
7677   - /**
7678   - @description
7679   - userVO */
7680   - userVO: AdminAuthUserVO;
7681   - };
7682   -}
7683   -
7684   -/** @description response type for postOrderErpUsersAuthRole */
7685   -export interface PostOrderErpUsersAuthRoleResponse {
7686   - /**
7687   - * @description
7688   - * OK
7689   - */
7690   - 200: ServerResult;
7691   - /**
7692   - * @description
7693   - * Created
7694   - */
7695   - 201: any;
7696   - /**
7697   - * @description
7698   - * Unauthorized
7699   - */
7700   - 401: any;
7701   - /**
7702   - * @description
7703   - * Forbidden
7704   - */
7705   - 403: any;
7706   - /**
7707   - * @description
7708   - * Not Found
7709   - */
7710   - 404: any;
7711   -}
7712   -
7713   -export type PostOrderErpUsersAuthRoleResponseSuccess =
7714   - PostOrderErpUsersAuthRoleResponse[200];
7715   -/**
7716   - * @description
7717   - * 授权角色
7718   - * @tags 系统:用户管理
7719   - * @produces *
7720   - * @consumes application/json
7721   - */
7722   -export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {
7723   - const method = 'post';
7724   - const url = '/order/erp/users/auth_role';
7725   - function request(
7726   - option: PostOrderErpUsersAuthRoleOption,
7727   - ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {
7728   - return requester(request.url, {
7729   - method: request.method,
7730   - ...option,
7731   - }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>;
7732   - }
7733   -
7734   - /** http method */
7735   - request.method = method;
7736   - /** request url */
7737   - request.url = url;
7738   - return request;
7739   -})();
7740   -
7741   -/** @description request parameter type for postOrderErpUsersDelete */
7742   -export interface PostOrderErpUsersDeleteOption {
7743   - /**
7744   - * @description
7745   - * queryVO
7746   - */
7747   - body: {
7748   - /**
7749   - @description
7750   - queryVO */
7751   - queryVO: AdminUserQueryVO;
7752   - };
7753   -}
7754   -
7755   -/** @description response type for postOrderErpUsersDelete */
7756   -export interface PostOrderErpUsersDeleteResponse {
7757   - /**
7758   - * @description
7759   - * OK
7760   - */
7761   - 200: ServerResult;
7762   - /**
7763   - * @description
7764   - * Created
7765   - */
7766   - 201: any;
7767   - /**
7768   - * @description
7769   - * Unauthorized
7770   - */
7771   - 401: any;
7772   - /**
7773   - * @description
7774   - * Forbidden
7775   - */
7776   - 403: any;
7777   - /**
7778   - * @description
7779   - * Not Found
7780   - */
7781   - 404: any;
7782   -}
7783   -
7784   -export type PostOrderErpUsersDeleteResponseSuccess =
7785   - PostOrderErpUsersDeleteResponse[200];
7786   -/**
7787   - * @description
7788   - * 删除用户
7789   - * @tags 系统:用户管理
7790   - * @produces *
7791   - * @consumes application/json
7792   - */
7793   -export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {
7794   - const method = 'post';
7795   - const url = '/order/erp/users/delete';
7796   - function request(
7797   - option: PostOrderErpUsersDeleteOption,
7798   - ): Promise<PostOrderErpUsersDeleteResponseSuccess> {
7799   - return requester(request.url, {
7800   - method: request.method,
7801   - ...option,
7802   - }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>;
7803   - }
7804   -
7805   - /** http method */
7806   - request.method = method;
7807   - /** request url */
7808   - request.url = url;
7809   - return request;
7810   -})();
7811   -
7812   -/** @description request parameter type for postOrderErpUsersEdit */
7813   -export interface PostOrderErpUsersEditOption {
7814   - /**
7815   - * @description
7816   - * userVO
7817   - */
7818   - body: {
7819   - /**
7820   - @description
7821   - userVO */
7822   - userVO: AdminUserVO;
7823   - };
7824   -}
7825   -
7826   -/** @description response type for postOrderErpUsersEdit */
7827   -export interface PostOrderErpUsersEditResponse {
  6990 +/** @description response type for getOrderErpOrderZoNingSelectProvinceAll */
  6991 +export interface GetOrderErpOrderZoNingSelectProvinceAllResponse {
7828 6992 /**
7829 6993 * @description
7830 6994 * OK
... ... @@ -7832,11 +6996,6 @@ export interface PostOrderErpUsersEditResponse {
7832 6996 200: ServerResult;
7833 6997 /**
7834 6998 * @description
7835   - * Created
7836   - */
7837   - 201: any;
7838   - /**
7839   - * @description
7840 6999 * Unauthorized
7841 7000 */
7842 7001 401: any;
... ... @@ -7852,25 +7011,21 @@ export interface PostOrderErpUsersEditResponse {
7852 7011 404: any;
7853 7012 }
7854 7013  
7855   -export type PostOrderErpUsersEditResponseSuccess =
7856   - PostOrderErpUsersEditResponse[200];
  7014 +export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess =
  7015 + GetOrderErpOrderZoNingSelectProvinceAllResponse[200];
7857 7016 /**
7858 7017 * @description
7859   - * 修改用户
7860   - * @tags 系统:用户管理
  7018 + * 查询所有省份
  7019 + * @tags order-zo-ning-controller
7861 7020 * @produces *
7862   - * @consumes application/json
7863 7021 */
7864   -export const postOrderErpUsersEdit = /* #__PURE__ */ (() => {
7865   - const method = 'post';
7866   - const url = '/order/erp/users/edit';
7867   - function request(
7868   - option: PostOrderErpUsersEditOption,
7869   - ): Promise<PostOrderErpUsersEditResponseSuccess> {
  7022 +export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => {
  7023 + const method = 'get';
  7024 + const url = '/order/erp/orderZoNing/selectProvinceAll';
  7025 + function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> {
7870 7026 return requester(request.url, {
7871 7027 method: request.method,
7872   - ...option,
7873   - }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>;
  7028 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>;
7874 7029 }
7875 7030  
7876 7031 /** http method */
... ... @@ -7880,32 +7035,13 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() =&gt; {
7880 7035 return request;
7881 7036 })();
7882 7037  
7883   -/** @description request parameter type for postOrderErpUsersListByPage */
7884   -export interface PostOrderErpUsersListByPageOption {
7885   - /**
7886   - * @description
7887   - * queryVO
7888   - */
7889   - body: {
7890   - /**
7891   - @description
7892   - queryVO */
7893   - queryVO: AdminUserQueryVO;
7894   - };
7895   -}
7896   -
7897   -/** @description response type for postOrderErpUsersListByPage */
7898   -export interface PostOrderErpUsersListByPageResponse {
7899   - /**
7900   - * @description
7901   - * OK
7902   - */
7903   - 200: ServerResult;
  7038 +/** @description response type for getOrderErpOrderZoNingSelectUserAll */
  7039 +export interface GetOrderErpOrderZoNingSelectUserAllResponse {
7904 7040 /**
7905 7041 * @description
7906   - * Created
  7042 + * OK
7907 7043 */
7908   - 201: any;
  7044 + 200: ServerResult;
7909 7045 /**
7910 7046 * @description
7911 7047 * Unauthorized
... ... @@ -7923,25 +7059,21 @@ export interface PostOrderErpUsersListByPageResponse {
7923 7059 404: any;
7924 7060 }
7925 7061  
7926   -export type PostOrderErpUsersListByPageResponseSuccess =
7927   - PostOrderErpUsersListByPageResponse[200];
  7062 +export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess =
  7063 + GetOrderErpOrderZoNingSelectUserAllResponse[200];
7928 7064 /**
7929 7065 * @description
7930   - * 查询用户
7931   - * @tags 系统:用户管理
  7066 + * 查询所有销售
  7067 + * @tags order-zo-ning-controller
7932 7068 * @produces *
7933   - * @consumes application/json
7934 7069 */
7935   -export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => {
7936   - const method = 'post';
7937   - const url = '/order/erp/users/list_by_page';
7938   - function request(
7939   - option: PostOrderErpUsersListByPageOption,
7940   - ): Promise<PostOrderErpUsersListByPageResponseSuccess> {
  7070 +export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => {
  7071 + const method = 'get';
  7072 + const url = '/order/erp/orderZoNing/selectUserAll';
  7073 + function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> {
7941 7074 return requester(request.url, {
7942 7075 method: request.method,
7943   - ...option,
7944   - }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>;
  7076 + }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>;
7945 7077 }
7946 7078  
7947 7079 /** http method */
... ... @@ -7951,22 +7083,22 @@ export const postOrderErpUsersListByPage = /* #__PURE__ */ (() =&gt; {
7951 7083 return request;
7952 7084 })();
7953 7085  
7954   -/** @description request parameter type for postOrderErpUsersReset */
7955   -export interface PostOrderErpUsersResetOption {
  7086 +/** @description request parameter type for postOrderErpProfitAnalysis */
  7087 +export interface PostOrderErpProfitAnalysisOption {
7956 7088 /**
7957 7089 * @description
7958   - * resetPwdVO
  7090 + * orderProfitAnalysisVo
7959 7091 */
7960 7092 body: {
7961 7093 /**
7962 7094 @description
7963   - resetPwdVO */
7964   - resetPwdVO: ResetPwdVO;
  7095 + orderProfitAnalysisVo */
  7096 + orderProfitAnalysisVo: OrderProfitAnalysisVo;
7965 7097 };
7966 7098 }
7967 7099  
7968   -/** @description response type for postOrderErpUsersReset */
7969   -export interface PostOrderErpUsersResetResponse {
  7100 +/** @description response type for postOrderErpProfitAnalysis */
  7101 +export interface PostOrderErpProfitAnalysisResponse {
7970 7102 /**
7971 7103 * @description
7972 7104 * OK
... ... @@ -7994,25 +7126,25 @@ export interface PostOrderErpUsersResetResponse {
7994 7126 404: any;
7995 7127 }
7996 7128  
7997   -export type PostOrderErpUsersResetResponseSuccess =
7998   - PostOrderErpUsersResetResponse[200];
  7129 +export type PostOrderErpProfitAnalysisResponseSuccess =
  7130 + PostOrderErpProfitAnalysisResponse[200];
7999 7131 /**
8000 7132 * @description
8001   - * 重置密码
8002   - * @tags 系统:用户管理
  7133 + * analysis
  7134 + * @tags order-profit-controller
8003 7135 * @produces *
8004 7136 * @consumes application/json
8005 7137 */
8006   -export const postOrderErpUsersReset = /* #__PURE__ */ (() => {
  7138 +export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => {
8007 7139 const method = 'post';
8008   - const url = '/order/erp/users/reset';
  7140 + const url = '/order/erp/profit/analysis';
8009 7141 function request(
8010   - option: PostOrderErpUsersResetOption,
8011   - ): Promise<PostOrderErpUsersResetResponseSuccess> {
  7142 + option: PostOrderErpProfitAnalysisOption,
  7143 + ): Promise<PostOrderErpProfitAnalysisResponseSuccess> {
8012 7144 return requester(request.url, {
8013 7145 method: request.method,
8014 7146 ...option,
8015   - }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>;
  7147 + }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>;
8016 7148 }
8017 7149  
8018 7150 /** http method */
... ... @@ -8022,22 +7154,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() =&gt; {
8022 7154 return request;
8023 7155 })();
8024 7156  
8025   -/** @description request parameter type for postOrderErpUsersUpdatePass */
8026   -export interface PostOrderErpUsersUpdatePassOption {
  7157 +/** @description request parameter type for postOrderErpRolesAdd */
  7158 +export interface PostOrderErpRolesAddOption {
8027 7159 /**
8028 7160 * @description
8029   - * pwdVO
  7161 + * roleVO
8030 7162 */
8031 7163 body: {
8032 7164 /**
8033 7165 @description
8034   - pwdVO */
8035   - pwdVO: UpdatePwdVO;
  7166 + roleVO */
  7167 + roleVO: AdminRoleVO;
8036 7168 };
8037 7169 }
8038 7170  
8039   -/** @description response type for postOrderErpUsersUpdatePass */
8040   -export interface PostOrderErpUsersUpdatePassResponse {
  7171 +/** @description response type for postOrderErpRolesAdd */
  7172 +export interface PostOrderErpRolesAddResponse {
8041 7173 /**
8042 7174 * @description
8043 7175 * OK
... ... @@ -8065,25 +7197,25 @@ export interface PostOrderErpUsersUpdatePassResponse {
8065 7197 404: any;
8066 7198 }
8067 7199  
8068   -export type PostOrderErpUsersUpdatePassResponseSuccess =
8069   - PostOrderErpUsersUpdatePassResponse[200];
  7200 +export type PostOrderErpRolesAddResponseSuccess =
  7201 + PostOrderErpRolesAddResponse[200];
8070 7202 /**
8071 7203 * @description
8072   - * 修改密码
8073   - * @tags 系统:用户管理
  7204 + * 新增角色
  7205 + * @tags 系统:角色管理
8074 7206 * @produces *
8075 7207 * @consumes application/json
8076 7208 */
8077   -export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => {
  7209 +export const postOrderErpRolesAdd = /* #__PURE__ */ (() => {
8078 7210 const method = 'post';
8079   - const url = '/order/erp/users/update_pass';
  7211 + const url = '/order/erp/roles/add';
8080 7212 function request(
8081   - option: PostOrderErpUsersUpdatePassOption,
8082   - ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> {
  7213 + option: PostOrderErpRolesAddOption,
  7214 + ): Promise<PostOrderErpRolesAddResponseSuccess> {
8083 7215 return requester(request.url, {
8084 7216 method: request.method,
8085 7217 ...option,
8086   - }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>;
  7218 + }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>;
8087 7219 }
8088 7220  
8089 7221 /** http method */
... ... @@ -8093,22 +7225,22 @@ export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() =&gt; {
8093 7225 return request;
8094 7226 })();
8095 7227  
8096   -/** @description request parameter type for postOrderImportImportWeightAndVolume */
8097   -export interface PostOrderImportImportWeightAndVolumeOption {
  7228 +/** @description request parameter type for postOrderErpRolesAll */
  7229 +export interface PostOrderErpRolesAllOption {
8098 7230 /**
8099 7231 * @description
8100   - * file
  7232 + * queryVO
8101 7233 */
8102   - formData: {
  7234 + body: {
8103 7235 /**
8104 7236 @description
8105   - file */
8106   - file: File;
  7237 + queryVO */
  7238 + queryVO: AdminRoleQueryVO;
8107 7239 };
8108 7240 }
8109 7241  
8110   -/** @description response type for postOrderImportImportWeightAndVolume */
8111   -export interface PostOrderImportImportWeightAndVolumeResponse {
  7242 +/** @description response type for postOrderErpRolesAll */
  7243 +export interface PostOrderErpRolesAllResponse {
8112 7244 /**
8113 7245 * @description
8114 7246 * OK
... ... @@ -8136,25 +7268,25 @@ export interface PostOrderImportImportWeightAndVolumeResponse {
8136 7268 404: any;
8137 7269 }
8138 7270  
8139   -export type PostOrderImportImportWeightAndVolumeResponseSuccess =
8140   - PostOrderImportImportWeightAndVolumeResponse[200];
  7271 +export type PostOrderErpRolesAllResponseSuccess =
  7272 + PostOrderErpRolesAllResponse[200];
8141 7273 /**
8142 7274 * @description
8143   - * 导入重量和体积
8144   - * @tags 导入
  7275 + * 返回全部的角色
  7276 + * @tags 系统:角色管理
8145 7277 * @produces *
8146   - * @consumes multipart/form-data
  7278 + * @consumes application/json
8147 7279 */
8148   -export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => {
  7280 +export const postOrderErpRolesAll = /* #__PURE__ */ (() => {
8149 7281 const method = 'post';
8150   - const url = '/order/import/importWeightAndVolume';
  7282 + const url = '/order/erp/roles/all';
8151 7283 function request(
8152   - option: PostOrderImportImportWeightAndVolumeOption,
8153   - ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> {
  7284 + option: PostOrderErpRolesAllOption,
  7285 + ): Promise<PostOrderErpRolesAllResponseSuccess> {
8154 7286 return requester(request.url, {
8155 7287 method: request.method,
8156 7288 ...option,
8157   - }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>;
  7289 + }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>;
8158 7290 }
8159 7291  
8160 7292 /** http method */
... ... @@ -8164,22 +7296,22 @@ export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() =&gt; {
8164 7296 return request;
8165 7297 })();
8166 7298  
8167   -/** @description request parameter type for postPrepaidAudit */
8168   -export interface PostPrepaidAuditOption {
  7299 +/** @description request parameter type for postOrderErpRolesAuthMenu */
  7300 +export interface PostOrderErpRolesAuthMenuOption {
8169 7301 /**
8170 7302 * @description
8171   - * request
  7303 + * roleVO
8172 7304 */
8173 7305 body: {
8174 7306 /**
8175 7307 @description
8176   - request */
8177   - request: SalesRechargePrepaymentAuditRequest;
  7308 + roleVO */
  7309 + roleVO: AdminAuthRoleVO;
8178 7310 };
8179 7311 }
8180 7312  
8181   -/** @description response type for postPrepaidAudit */
8182   -export interface PostPrepaidAuditResponse {
  7313 +/** @description response type for postOrderErpRolesAuthMenu */
  7314 +export interface PostOrderErpRolesAuthMenuResponse {
8183 7315 /**
8184 7316 * @description
8185 7317 * OK
... ... @@ -8207,24 +7339,25 @@ export interface PostPrepaidAuditResponse {
8207 7339 404: any;
8208 7340 }
8209 7341  
8210   -export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200];
  7342 +export type PostOrderErpRolesAuthMenuResponseSuccess =
  7343 + PostOrderErpRolesAuthMenuResponse[200];
8211 7344 /**
8212 7345 * @description
8213   - * 财务审核
8214   - * @tags prepaid-controller
  7346 + * 授权角色菜单
  7347 + * @tags 系统:角色管理
8215 7348 * @produces *
8216 7349 * @consumes application/json
8217 7350 */
8218   -export const postPrepaidAudit = /* #__PURE__ */ (() => {
  7351 +export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => {
8219 7352 const method = 'post';
8220   - const url = '/prepaid/audit';
  7353 + const url = '/order/erp/roles/auth_menu';
8221 7354 function request(
8222   - option: PostPrepaidAuditOption,
8223   - ): Promise<PostPrepaidAuditResponseSuccess> {
  7355 + option: PostOrderErpRolesAuthMenuOption,
  7356 + ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> {
8224 7357 return requester(request.url, {
8225 7358 method: request.method,
8226 7359 ...option,
8227   - }) as unknown as Promise<PostPrepaidAuditResponseSuccess>;
  7360 + }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>;
8228 7361 }
8229 7362  
8230 7363 /** http method */
... ... @@ -8234,22 +7367,22 @@ export const postPrepaidAudit = /* #__PURE__ */ (() =&gt; {
8234 7367 return request;
8235 7368 })();
8236 7369  
8237   -/** @description request parameter type for postPrepaidCreate */
8238   -export interface PostPrepaidCreateOption {
  7370 +/** @description request parameter type for postOrderErpRolesDelete */
  7371 +export interface PostOrderErpRolesDeleteOption {
8239 7372 /**
8240 7373 * @description
8241   - * request
  7374 + * queryVO
8242 7375 */
8243 7376 body: {
8244 7377 /**
8245 7378 @description
8246   - request */
8247   - request: SalesRechargePrepaymentCreateRequest;
  7379 + queryVO */
  7380 + queryVO: AdminRoleQueryVO;
8248 7381 };
8249 7382 }
8250 7383  
8251   -/** @description response type for postPrepaidCreate */
8252   -export interface PostPrepaidCreateResponse {
  7384 +/** @description response type for postOrderErpRolesDelete */
  7385 +export interface PostOrderErpRolesDeleteResponse {
8253 7386 /**
8254 7387 * @description
8255 7388 * OK
... ... @@ -8277,24 +7410,25 @@ export interface PostPrepaidCreateResponse {
8277 7410 404: any;
8278 7411 }
8279 7412  
8280   -export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200];
  7413 +export type PostOrderErpRolesDeleteResponseSuccess =
  7414 + PostOrderErpRolesDeleteResponse[200];
8281 7415 /**
8282 7416 * @description
8283   - * 新增预存
8284   - * @tags prepaid-controller
  7417 + * 删除角色
  7418 + * @tags 系统:角色管理
8285 7419 * @produces *
8286 7420 * @consumes application/json
8287 7421 */
8288   -export const postPrepaidCreate = /* #__PURE__ */ (() => {
  7422 +export const postOrderErpRolesDelete = /* #__PURE__ */ (() => {
8289 7423 const method = 'post';
8290   - const url = '/prepaid/create';
  7424 + const url = '/order/erp/roles/delete';
8291 7425 function request(
8292   - option: PostPrepaidCreateOption,
8293   - ): Promise<PostPrepaidCreateResponseSuccess> {
  7426 + option: PostOrderErpRolesDeleteOption,
  7427 + ): Promise<PostOrderErpRolesDeleteResponseSuccess> {
8294 7428 return requester(request.url, {
8295 7429 method: request.method,
8296 7430 ...option,
8297   - }) as unknown as Promise<PostPrepaidCreateResponseSuccess>;
  7431 + }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>;
8298 7432 }
8299 7433  
8300 7434 /** http method */
... ... @@ -8304,22 +7438,22 @@ export const postPrepaidCreate = /* #__PURE__ */ (() =&gt; {
8304 7438 return request;
8305 7439 })();
8306 7440  
8307   -/** @description request parameter type for postPrepaidDelete */
8308   -export interface PostPrepaidDeleteOption {
  7441 +/** @description request parameter type for postOrderErpRolesDetail */
  7442 +export interface PostOrderErpRolesDetailOption {
8309 7443 /**
8310 7444 * @description
8311   - * request
  7445 + * queryVO
8312 7446 */
8313 7447 body: {
8314 7448 /**
8315 7449 @description
8316   - request */
8317   - request: SalesRechargePrepaymentDeleteRequest;
  7450 + queryVO */
  7451 + queryVO: AdminRoleQueryVO;
8318 7452 };
8319 7453 }
8320 7454  
8321   -/** @description response type for postPrepaidDelete */
8322   -export interface PostPrepaidDeleteResponse {
  7455 +/** @description response type for postOrderErpRolesDetail */
  7456 +export interface PostOrderErpRolesDetailResponse {
8323 7457 /**
8324 7458 * @description
8325 7459 * OK
... ... @@ -8347,24 +7481,25 @@ export interface PostPrepaidDeleteResponse {
8347 7481 404: any;
8348 7482 }
8349 7483  
8350   -export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200];
  7484 +export type PostOrderErpRolesDetailResponseSuccess =
  7485 + PostOrderErpRolesDetailResponse[200];
8351 7486 /**
8352 7487 * @description
8353   - * 删除预存
8354   - * @tags prepaid-controller
  7488 + * 获取单个role
  7489 + * @tags 系统:角色管理
8355 7490 * @produces *
8356 7491 * @consumes application/json
8357 7492 */
8358   -export const postPrepaidDelete = /* #__PURE__ */ (() => {
  7493 +export const postOrderErpRolesDetail = /* #__PURE__ */ (() => {
8359 7494 const method = 'post';
8360   - const url = '/prepaid/delete';
  7495 + const url = '/order/erp/roles/detail';
8361 7496 function request(
8362   - option: PostPrepaidDeleteOption,
8363   - ): Promise<PostPrepaidDeleteResponseSuccess> {
  7497 + option: PostOrderErpRolesDetailOption,
  7498 + ): Promise<PostOrderErpRolesDetailResponseSuccess> {
8364 7499 return requester(request.url, {
8365 7500 method: request.method,
8366 7501 ...option,
8367   - }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>;
  7502 + }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>;
8368 7503 }
8369 7504  
8370 7505 /** http method */
... ... @@ -8374,22 +7509,22 @@ export const postPrepaidDelete = /* #__PURE__ */ (() =&gt; {
8374 7509 return request;
8375 7510 })();
8376 7511  
8377   -/** @description request parameter type for postPrepaidList */
8378   -export interface PostPrepaidListOption {
  7512 +/** @description request parameter type for postOrderErpRolesEdit */
  7513 +export interface PostOrderErpRolesEditOption {
8379 7514 /**
8380 7515 * @description
8381   - * request
  7516 + * roleVO
8382 7517 */
8383 7518 body: {
8384 7519 /**
8385 7520 @description
8386   - request */
8387   - request: SalesRechargePrepaymentRequest;
  7521 + roleVO */
  7522 + roleVO: AdminRoleVO;
8388 7523 };
8389 7524 }
8390 7525  
8391   -/** @description response type for postPrepaidList */
8392   -export interface PostPrepaidListResponse {
  7526 +/** @description response type for postOrderErpRolesEdit */
  7527 +export interface PostOrderErpRolesEditResponse {
8393 7528 /**
8394 7529 * @description
8395 7530 * OK
... ... @@ -8417,24 +7552,25 @@ export interface PostPrepaidListResponse {
8417 7552 404: any;
8418 7553 }
8419 7554  
8420   -export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200];
  7555 +export type PostOrderErpRolesEditResponseSuccess =
  7556 + PostOrderErpRolesEditResponse[200];
8421 7557 /**
8422 7558 * @description
8423   - * 查询列表
8424   - * @tags prepaid-controller
  7559 + * 修改角色
  7560 + * @tags 系统:角色管理
8425 7561 * @produces *
8426 7562 * @consumes application/json
8427 7563 */
8428   -export const postPrepaidList = /* #__PURE__ */ (() => {
  7564 +export const postOrderErpRolesEdit = /* #__PURE__ */ (() => {
8429 7565 const method = 'post';
8430   - const url = '/prepaid/list';
  7566 + const url = '/order/erp/roles/edit';
8431 7567 function request(
8432   - option: PostPrepaidListOption,
8433   - ): Promise<PostPrepaidListResponseSuccess> {
  7568 + option: PostOrderErpRolesEditOption,
  7569 + ): Promise<PostOrderErpRolesEditResponseSuccess> {
8434 7570 return requester(request.url, {
8435 7571 method: request.method,
8436 7572 ...option,
8437   - }) as unknown as Promise<PostPrepaidListResponseSuccess>;
  7573 + }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>;
8438 7574 }
8439 7575  
8440 7576 /** http method */
... ... @@ -8444,22 +7580,22 @@ export const postPrepaidList = /* #__PURE__ */ (() =&gt; {
8444 7580 return request;
8445 7581 })();
8446 7582  
8447   -/** @description request parameter type for postPrepaidPhoneAvailableList */
8448   -export interface PostPrepaidPhoneAvailableListOption {
  7583 +/** @description request parameter type for postOrderErpRolesListByPage */
  7584 +export interface PostOrderErpRolesListByPageOption {
8449 7585 /**
8450 7586 * @description
8451   - * request
  7587 + * queryVO
8452 7588 */
8453 7589 body: {
8454 7590 /**
8455 7591 @description
8456   - request */
8457   - request: SalesRechargePrepaymentAuditRequest;
  7592 + queryVO */
  7593 + queryVO: AdminRoleQueryVO;
8458 7594 };
8459 7595 }
8460 7596  
8461   -/** @description response type for postPrepaidPhoneAvailableList */
8462   -export interface PostPrepaidPhoneAvailableListResponse {
  7597 +/** @description response type for postOrderErpRolesListByPage */
  7598 +export interface PostOrderErpRolesListByPageResponse {
8463 7599 /**
8464 7600 * @description
8465 7601 * OK
... ... @@ -8487,25 +7623,25 @@ export interface PostPrepaidPhoneAvailableListResponse {
8487 7623 404: any;
8488 7624 }
8489 7625  
8490   -export type PostPrepaidPhoneAvailableListResponseSuccess =
8491   - PostPrepaidPhoneAvailableListResponse[200];
  7626 +export type PostOrderErpRolesListByPageResponseSuccess =
  7627 + PostOrderErpRolesListByPageResponse[200];
8492 7628 /**
8493 7629 * @description
8494   - * 财务审核
8495   - * @tags prepaid-controller
  7630 + * 查询角色
  7631 + * @tags 系统:角色管理
8496 7632 * @produces *
8497 7633 * @consumes application/json
8498 7634 */
8499   -export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => {
  7635 +export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => {
8500 7636 const method = 'post';
8501   - const url = '/prepaid/phone/available/list';
  7637 + const url = '/order/erp/roles/list_by_page';
8502 7638 function request(
8503   - option: PostPrepaidPhoneAvailableListOption,
8504   - ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> {
  7639 + option: PostOrderErpRolesListByPageOption,
  7640 + ): Promise<PostOrderErpRolesListByPageResponseSuccess> {
8505 7641 return requester(request.url, {
8506 7642 method: request.method,
8507 7643 ...option,
8508   - }) as unknown as Promise<PostPrepaidPhoneAvailableListResponseSuccess>;
  7644 + }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>;
8509 7645 }
8510 7646  
8511 7647 /** http method */
... ... @@ -8515,22 +7651,22 @@ export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() =&gt; {
8515 7651 return request;
8516 7652 })();
8517 7653  
8518   -/** @description request parameter type for postPrepaidUpdate */
8519   -export interface PostPrepaidUpdateOption {
  7654 +/** @description request parameter type for postOrderErpUsersAdd */
  7655 +export interface PostOrderErpUsersAddOption {
8520 7656 /**
8521 7657 * @description
8522   - * request
  7658 + * userVO
8523 7659 */
8524 7660 body: {
8525 7661 /**
8526 7662 @description
8527   - request */
8528   - request: SalesRechargePrepaymentUpdateRequest;
  7663 + userVO */
  7664 + userVO: AdminUserVO;
8529 7665 };
8530 7666 }
8531 7667  
8532   -/** @description response type for postPrepaidUpdate */
8533   -export interface PostPrepaidUpdateResponse {
  7668 +/** @description response type for postOrderErpUsersAdd */
  7669 +export interface PostOrderErpUsersAddResponse {
8534 7670 /**
8535 7671 * @description
8536 7672 * OK
... ... @@ -8558,24 +7694,25 @@ export interface PostPrepaidUpdateResponse {
8558 7694 404: any;
8559 7695 }
8560 7696  
8561   -export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200];
  7697 +export type PostOrderErpUsersAddResponseSuccess =
  7698 + PostOrderErpUsersAddResponse[200];
8562 7699 /**
8563 7700 * @description
8564   - * 修改预存
8565   - * @tags prepaid-controller
  7701 + * 新增用户
  7702 + * @tags 系统:用户管理
8566 7703 * @produces *
8567 7704 * @consumes application/json
8568 7705 */
8569   -export const postPrepaidUpdate = /* #__PURE__ */ (() => {
  7706 +export const postOrderErpUsersAdd = /* #__PURE__ */ (() => {
8570 7707 const method = 'post';
8571   - const url = '/prepaid/update';
  7708 + const url = '/order/erp/users/add';
8572 7709 function request(
8573   - option: PostPrepaidUpdateOption,
8574   - ): Promise<PostPrepaidUpdateResponseSuccess> {
  7710 + option: PostOrderErpUsersAddOption,
  7711 + ): Promise<PostOrderErpUsersAddResponseSuccess> {
8575 7712 return requester(request.url, {
8576 7713 method: request.method,
8577 7714 ...option,
8578   - }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>;
  7715 + }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>;
8579 7716 }
8580 7717  
8581 7718 /** http method */
... ... @@ -8585,22 +7722,22 @@ export const postPrepaidUpdate = /* #__PURE__ */ (() =&gt; {
8585 7722 return request;
8586 7723 })();
8587 7724  
8588   -/** @description request parameter type for postResearchGroupMemberRequestsAdd */
8589   -export interface PostResearchGroupMemberRequestsAddOption {
  7725 +/** @description request parameter type for postOrderErpUsersAuthRole */
  7726 +export interface PostOrderErpUsersAuthRoleOption {
8590 7727 /**
8591 7728 * @description
8592   - * request
  7729 + * userVO
8593 7730 */
8594 7731 body: {
8595 7732 /**
8596 7733 @description
8597   - request */
8598   - request: ResearchGroupMemberRequestAddRequest;
  7734 + userVO */
  7735 + userVO: AdminAuthUserVO;
8599 7736 };
8600 7737 }
8601 7738  
8602   -/** @description response type for postResearchGroupMemberRequestsAdd */
8603   -export interface PostResearchGroupMemberRequestsAddResponse {
  7739 +/** @description response type for postOrderErpUsersAuthRole */
  7740 +export interface PostOrderErpUsersAuthRoleResponse {
8604 7741 /**
8605 7742 * @description
8606 7743 * OK
... ... @@ -8628,25 +7765,25 @@ export interface PostResearchGroupMemberRequestsAddResponse {
8628 7765 404: any;
8629 7766 }
8630 7767  
8631   -export type PostResearchGroupMemberRequestsAddResponseSuccess =
8632   - PostResearchGroupMemberRequestsAddResponse[200];
  7768 +export type PostOrderErpUsersAuthRoleResponseSuccess =
  7769 + PostOrderErpUsersAuthRoleResponse[200];
8633 7770 /**
8634 7771 * @description
8635   - * 新增申请信息
8636   - * @tags research-group-member-requests-controller
  7772 + * 授权角色
  7773 + * @tags 系统:用户管理
8637 7774 * @produces *
8638 7775 * @consumes application/json
8639 7776 */
8640   -export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => {
  7777 +export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => {
8641 7778 const method = 'post';
8642   - const url = '/research/group/member/requests/add';
  7779 + const url = '/order/erp/users/auth_role';
8643 7780 function request(
8644   - option: PostResearchGroupMemberRequestsAddOption,
8645   - ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> {
  7781 + option: PostOrderErpUsersAuthRoleOption,
  7782 + ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> {
8646 7783 return requester(request.url, {
8647 7784 method: request.method,
8648 7785 ...option,
8649   - }) as unknown as Promise<PostResearchGroupMemberRequestsAddResponseSuccess>;
  7786 + }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>;
8650 7787 }
8651 7788  
8652 7789 /** http method */
... ... @@ -8656,22 +7793,22 @@ export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() =&gt; {
8656 7793 return request;
8657 7794 })();
8658 7795  
8659   -/** @description request parameter type for postResearchGroupMemberRequestsDelete */
8660   -export interface PostResearchGroupMemberRequestsDeleteOption {
  7796 +/** @description request parameter type for postOrderErpUsersDelete */
  7797 +export interface PostOrderErpUsersDeleteOption {
8661 7798 /**
8662 7799 * @description
8663   - * request
  7800 + * queryVO
8664 7801 */
8665 7802 body: {
8666 7803 /**
8667 7804 @description
8668   - request */
8669   - request: ResearchGroupMemberRequestDeleteRequest;
  7805 + queryVO */
  7806 + queryVO: AdminUserQueryVO;
8670 7807 };
8671 7808 }
8672 7809  
8673   -/** @description response type for postResearchGroupMemberRequestsDelete */
8674   -export interface PostResearchGroupMemberRequestsDeleteResponse {
  7810 +/** @description response type for postOrderErpUsersDelete */
  7811 +export interface PostOrderErpUsersDeleteResponse {
8675 7812 /**
8676 7813 * @description
8677 7814 * OK
... ... @@ -8699,25 +7836,25 @@ export interface PostResearchGroupMemberRequestsDeleteResponse {
8699 7836 404: any;
8700 7837 }
8701 7838  
8702   -export type PostResearchGroupMemberRequestsDeleteResponseSuccess =
8703   - PostResearchGroupMemberRequestsDeleteResponse[200];
  7839 +export type PostOrderErpUsersDeleteResponseSuccess =
  7840 + PostOrderErpUsersDeleteResponse[200];
8704 7841 /**
8705 7842 * @description
8706   - * 删除申请信息
8707   - * @tags research-group-member-requests-controller
  7843 + * 删除用户
  7844 + * @tags 系统:用户管理
8708 7845 * @produces *
8709 7846 * @consumes application/json
8710 7847 */
8711   -export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => {
  7848 +export const postOrderErpUsersDelete = /* #__PURE__ */ (() => {
8712 7849 const method = 'post';
8713   - const url = '/research/group/member/requests/delete';
  7850 + const url = '/order/erp/users/delete';
8714 7851 function request(
8715   - option: PostResearchGroupMemberRequestsDeleteOption,
8716   - ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> {
  7852 + option: PostOrderErpUsersDeleteOption,
  7853 + ): Promise<PostOrderErpUsersDeleteResponseSuccess> {
8717 7854 return requester(request.url, {
8718 7855 method: request.method,
8719 7856 ...option,
8720   - }) as unknown as Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess>;
  7857 + }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>;
8721 7858 }
8722 7859  
8723 7860 /** http method */
... ... @@ -8727,22 +7864,22 @@ export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() =&gt; {
8727 7864 return request;
8728 7865 })();
8729 7866  
8730   -/** @description request parameter type for postResearchGroupMemberRequestsDetail */
8731   -export interface PostResearchGroupMemberRequestsDetailOption {
  7867 +/** @description request parameter type for postOrderErpUsersEdit */
  7868 +export interface PostOrderErpUsersEditOption {
8732 7869 /**
8733 7870 * @description
8734   - * request
  7871 + * userVO
8735 7872 */
8736 7873 body: {
8737 7874 /**
8738 7875 @description
8739   - request */
8740   - request: ResearchGroupMemberRequestDetailRequest;
  7876 + userVO */
  7877 + userVO: AdminUserVO;
8741 7878 };
8742 7879 }
8743 7880  
8744   -/** @description response type for postResearchGroupMemberRequestsDetail */
8745   -export interface PostResearchGroupMemberRequestsDetailResponse {
  7881 +/** @description response type for postOrderErpUsersEdit */
  7882 +export interface PostOrderErpUsersEditResponse {
8746 7883 /**
8747 7884 * @description
8748 7885 * OK
... ... @@ -8770,25 +7907,25 @@ export interface PostResearchGroupMemberRequestsDetailResponse {
8770 7907 404: any;
8771 7908 }
8772 7909  
8773   -export type PostResearchGroupMemberRequestsDetailResponseSuccess =
8774   - PostResearchGroupMemberRequestsDetailResponse[200];
  7910 +export type PostOrderErpUsersEditResponseSuccess =
  7911 + PostOrderErpUsersEditResponse[200];
8775 7912 /**
8776 7913 * @description
8777   - * 查询申请信息
8778   - * @tags research-group-member-requests-controller
  7914 + * 修改用户
  7915 + * @tags 系统:用户管理
8779 7916 * @produces *
8780 7917 * @consumes application/json
8781 7918 */
8782   -export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => {
  7919 +export const postOrderErpUsersEdit = /* #__PURE__ */ (() => {
8783 7920 const method = 'post';
8784   - const url = '/research/group/member/requests/detail';
  7921 + const url = '/order/erp/users/edit';
8785 7922 function request(
8786   - option: PostResearchGroupMemberRequestsDetailOption,
8787   - ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> {
  7923 + option: PostOrderErpUsersEditOption,
  7924 + ): Promise<PostOrderErpUsersEditResponseSuccess> {
8788 7925 return requester(request.url, {
8789 7926 method: request.method,
8790 7927 ...option,
8791   - }) as unknown as Promise<PostResearchGroupMemberRequestsDetailResponseSuccess>;
  7928 + }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>;
8792 7929 }
8793 7930  
8794 7931 /** http method */
... ... @@ -8798,22 +7935,22 @@ export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() =&gt; {
8798 7935 return request;
8799 7936 })();
8800 7937  
8801   -/** @description request parameter type for postResearchGroupMemberRequestsEdit */
8802   -export interface PostResearchGroupMemberRequestsEditOption {
  7938 +/** @description request parameter type for postOrderErpUsersListByPage */
  7939 +export interface PostOrderErpUsersListByPageOption {
8803 7940 /**
8804 7941 * @description
8805   - * request
  7942 + * queryVO
8806 7943 */
8807 7944 body: {
8808 7945 /**
8809 7946 @description
8810   - request */
8811   - request: ResearchGroupMemberRequestEditRequest;
  7947 + queryVO */
  7948 + queryVO: AdminUserQueryVO;
8812 7949 };
8813 7950 }
8814 7951  
8815   -/** @description response type for postResearchGroupMemberRequestsEdit */
8816   -export interface PostResearchGroupMemberRequestsEditResponse {
  7952 +/** @description response type for postOrderErpUsersListByPage */
  7953 +export interface PostOrderErpUsersListByPageResponse {
8817 7954 /**
8818 7955 * @description
8819 7956 * OK
... ... @@ -8841,25 +7978,25 @@ export interface PostResearchGroupMemberRequestsEditResponse {
8841 7978 404: any;
8842 7979 }
8843 7980  
8844   -export type PostResearchGroupMemberRequestsEditResponseSuccess =
8845   - PostResearchGroupMemberRequestsEditResponse[200];
  7981 +export type PostOrderErpUsersListByPageResponseSuccess =
  7982 + PostOrderErpUsersListByPageResponse[200];
8846 7983 /**
8847 7984 * @description
8848   - * 编辑申请信息
8849   - * @tags research-group-member-requests-controller
  7985 + * 查询用户
  7986 + * @tags 系统:用户管理
8850 7987 * @produces *
8851 7988 * @consumes application/json
8852 7989 */
8853   -export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => {
  7990 +export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => {
8854 7991 const method = 'post';
8855   - const url = '/research/group/member/requests/edit';
  7992 + const url = '/order/erp/users/list_by_page';
8856 7993 function request(
8857   - option: PostResearchGroupMemberRequestsEditOption,
8858   - ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> {
  7994 + option: PostOrderErpUsersListByPageOption,
  7995 + ): Promise<PostOrderErpUsersListByPageResponseSuccess> {
8859 7996 return requester(request.url, {
8860 7997 method: request.method,
8861 7998 ...option,
8862   - }) as unknown as Promise<PostResearchGroupMemberRequestsEditResponseSuccess>;
  7999 + }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>;
8863 8000 }
8864 8001  
8865 8002 /** http method */
... ... @@ -8869,22 +8006,22 @@ export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() =&gt; {
8869 8006 return request;
8870 8007 })();
8871 8008  
8872   -/** @description request parameter type for postResearchGroupMemberRequestsList */
8873   -export interface PostResearchGroupMemberRequestsListOption {
  8009 +/** @description request parameter type for postOrderErpUsersReset */
  8010 +export interface PostOrderErpUsersResetOption {
8874 8011 /**
8875 8012 * @description
8876   - * request
  8013 + * resetPwdVO
8877 8014 */
8878 8015 body: {
8879 8016 /**
8880 8017 @description
8881   - request */
8882   - request: ResearchGroupMemberRequestsRequest;
  8018 + resetPwdVO */
  8019 + resetPwdVO: ResetPwdVO;
8883 8020 };
8884 8021 }
8885 8022  
8886   -/** @description response type for postResearchGroupMemberRequestsList */
8887   -export interface PostResearchGroupMemberRequestsListResponse {
  8023 +/** @description response type for postOrderErpUsersReset */
  8024 +export interface PostOrderErpUsersResetResponse {
8888 8025 /**
8889 8026 * @description
8890 8027 * OK
... ... @@ -8912,25 +8049,25 @@ export interface PostResearchGroupMemberRequestsListResponse {
8912 8049 404: any;
8913 8050 }
8914 8051  
8915   -export type PostResearchGroupMemberRequestsListResponseSuccess =
8916   - PostResearchGroupMemberRequestsListResponse[200];
  8052 +export type PostOrderErpUsersResetResponseSuccess =
  8053 + PostOrderErpUsersResetResponse[200];
8917 8054 /**
8918 8055 * @description
8919   - * 申请列表
8920   - * @tags research-group-member-requests-controller
  8056 + * 重置密码
  8057 + * @tags 系统:用户管理
8921 8058 * @produces *
8922 8059 * @consumes application/json
8923 8060 */
8924   -export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => {
  8061 +export const postOrderErpUsersReset = /* #__PURE__ */ (() => {
8925 8062 const method = 'post';
8926   - const url = '/research/group/member/requests/list';
  8063 + const url = '/order/erp/users/reset';
8927 8064 function request(
8928   - option: PostResearchGroupMemberRequestsListOption,
8929   - ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> {
  8065 + option: PostOrderErpUsersResetOption,
  8066 + ): Promise<PostOrderErpUsersResetResponseSuccess> {
8930 8067 return requester(request.url, {
8931 8068 method: request.method,
8932 8069 ...option,
8933   - }) as unknown as Promise<PostResearchGroupMemberRequestsListResponseSuccess>;
  8070 + }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>;
8934 8071 }
8935 8072  
8936 8073 /** http method */
... ... @@ -8940,22 +8077,22 @@ export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() =&gt; {
8940 8077 return request;
8941 8078 })();
8942 8079  
8943   -/** @description request parameter type for postResearchGroupsAdd */
8944   -export interface PostResearchGroupsAddOption {
  8080 +/** @description request parameter type for postOrderErpUsersUpdatePass */
  8081 +export interface PostOrderErpUsersUpdatePassOption {
8945 8082 /**
8946 8083 * @description
8947   - * request
  8084 + * pwdVO
8948 8085 */
8949 8086 body: {
8950 8087 /**
8951 8088 @description
8952   - request */
8953   - request: ResearchGroupAddRequest;
  8089 + pwdVO */
  8090 + pwdVO: UpdatePwdVO;
8954 8091 };
8955 8092 }
8956 8093  
8957   -/** @description response type for postResearchGroupsAdd */
8958   -export interface PostResearchGroupsAddResponse {
  8094 +/** @description response type for postOrderErpUsersUpdatePass */
  8095 +export interface PostOrderErpUsersUpdatePassResponse {
8959 8096 /**
8960 8097 * @description
8961 8098 * OK
... ... @@ -8983,25 +8120,25 @@ export interface PostResearchGroupsAddResponse {
8983 8120 404: any;
8984 8121 }
8985 8122  
8986   -export type PostResearchGroupsAddResponseSuccess =
8987   - PostResearchGroupsAddResponse[200];
  8123 +export type PostOrderErpUsersUpdatePassResponseSuccess =
  8124 + PostOrderErpUsersUpdatePassResponse[200];
8988 8125 /**
8989 8126 * @description
8990   - * 新增课题组信息
8991   - * @tags research-groups-controller
  8127 + * 修改密码
  8128 + * @tags 系统:用户管理
8992 8129 * @produces *
8993 8130 * @consumes application/json
8994 8131 */
8995   -export const postResearchGroupsAdd = /* #__PURE__ */ (() => {
  8132 +export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => {
8996 8133 const method = 'post';
8997   - const url = '/research/groups/add';
  8134 + const url = '/order/erp/users/update_pass';
8998 8135 function request(
8999   - option: PostResearchGroupsAddOption,
9000   - ): Promise<PostResearchGroupsAddResponseSuccess> {
  8136 + option: PostOrderErpUsersUpdatePassOption,
  8137 + ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> {
9001 8138 return requester(request.url, {
9002 8139 method: request.method,
9003 8140 ...option,
9004   - }) as unknown as Promise<PostResearchGroupsAddResponseSuccess>;
  8141 + }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>;
9005 8142 }
9006 8143  
9007 8144 /** http method */
... ... @@ -9011,22 +8148,22 @@ export const postResearchGroupsAdd = /* #__PURE__ */ (() =&gt; {
9011 8148 return request;
9012 8149 })();
9013 8150  
9014   -/** @description request parameter type for postResearchGroupsDelete */
9015   -export interface PostResearchGroupsDeleteOption {
  8151 +/** @description request parameter type for postOrderImportImportWeightAndVolume */
  8152 +export interface PostOrderImportImportWeightAndVolumeOption {
9016 8153 /**
9017 8154 * @description
9018   - * request
  8155 + * file
9019 8156 */
9020   - body: {
  8157 + formData: {
9021 8158 /**
9022 8159 @description
9023   - request */
9024   - request: ResearchGroupDeleteRequest;
  8160 + file */
  8161 + file: File;
9025 8162 };
9026 8163 }
9027 8164  
9028   -/** @description response type for postResearchGroupsDelete */
9029   -export interface PostResearchGroupsDeleteResponse {
  8165 +/** @description response type for postOrderImportImportWeightAndVolume */
  8166 +export interface PostOrderImportImportWeightAndVolumeResponse {
9030 8167 /**
9031 8168 * @description
9032 8169 * OK
... ... @@ -9054,25 +8191,25 @@ export interface PostResearchGroupsDeleteResponse {
9054 8191 404: any;
9055 8192 }
9056 8193  
9057   -export type PostResearchGroupsDeleteResponseSuccess =
9058   - PostResearchGroupsDeleteResponse[200];
  8194 +export type PostOrderImportImportWeightAndVolumeResponseSuccess =
  8195 + PostOrderImportImportWeightAndVolumeResponse[200];
9059 8196 /**
9060 8197 * @description
9061   - * 删除课题组信息
9062   - * @tags research-groups-controller
  8198 + * 导入重量和体积
  8199 + * @tags 导入
9063 8200 * @produces *
9064   - * @consumes application/json
  8201 + * @consumes multipart/form-data
9065 8202 */
9066   -export const postResearchGroupsDelete = /* #__PURE__ */ (() => {
  8203 +export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => {
9067 8204 const method = 'post';
9068   - const url = '/research/groups/delete';
  8205 + const url = '/order/import/importWeightAndVolume';
9069 8206 function request(
9070   - option: PostResearchGroupsDeleteOption,
9071   - ): Promise<PostResearchGroupsDeleteResponseSuccess> {
  8207 + option: PostOrderImportImportWeightAndVolumeOption,
  8208 + ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> {
9072 8209 return requester(request.url, {
9073 8210 method: request.method,
9074 8211 ...option,
9075   - }) as unknown as Promise<PostResearchGroupsDeleteResponseSuccess>;
  8212 + }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>;
9076 8213 }
9077 8214  
9078 8215 /** http method */
... ... @@ -9082,8 +8219,8 @@ export const postResearchGroupsDelete = /* #__PURE__ */ (() =&gt; {
9082 8219 return request;
9083 8220 })();
9084 8221  
9085   -/** @description request parameter type for postResearchGroupsDetail */
9086   -export interface PostResearchGroupsDetailOption {
  8222 +/** @description request parameter type for postPrepaidAudit */
  8223 +export interface PostPrepaidAuditOption {
9087 8224 /**
9088 8225 * @description
9089 8226 * request
... ... @@ -9092,12 +8229,12 @@ export interface PostResearchGroupsDetailOption {
9092 8229 /**
9093 8230 @description
9094 8231 request */
9095   - request: ResearchGroupDetailRequest;
  8232 + request: SalesRechargePrepaymentAuditRequest;
9096 8233 };
9097 8234 }
9098 8235  
9099   -/** @description response type for postResearchGroupsDetail */
9100   -export interface PostResearchGroupsDetailResponse {
  8236 +/** @description response type for postPrepaidAudit */
  8237 +export interface PostPrepaidAuditResponse {
9101 8238 /**
9102 8239 * @description
9103 8240 * OK
... ... @@ -9125,25 +8262,24 @@ export interface PostResearchGroupsDetailResponse {
9125 8262 404: any;
9126 8263 }
9127 8264  
9128   -export type PostResearchGroupsDetailResponseSuccess =
9129   - PostResearchGroupsDetailResponse[200];
  8265 +export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200];
9130 8266 /**
9131 8267 * @description
9132   - * 查询课题组信息
9133   - * @tags research-groups-controller
  8268 + * 财务审核
  8269 + * @tags prepaid-controller
9134 8270 * @produces *
9135 8271 * @consumes application/json
9136 8272 */
9137   -export const postResearchGroupsDetail = /* #__PURE__ */ (() => {
  8273 +export const postPrepaidAudit = /* #__PURE__ */ (() => {
9138 8274 const method = 'post';
9139   - const url = '/research/groups/detail';
  8275 + const url = '/prepaid/audit';
9140 8276 function request(
9141   - option: PostResearchGroupsDetailOption,
9142   - ): Promise<PostResearchGroupsDetailResponseSuccess> {
  8277 + option: PostPrepaidAuditOption,
  8278 + ): Promise<PostPrepaidAuditResponseSuccess> {
9143 8279 return requester(request.url, {
9144 8280 method: request.method,
9145 8281 ...option,
9146   - }) as unknown as Promise<PostResearchGroupsDetailResponseSuccess>;
  8282 + }) as unknown as Promise<PostPrepaidAuditResponseSuccess>;
9147 8283 }
9148 8284  
9149 8285 /** http method */
... ... @@ -9153,13 +8289,27 @@ export const postResearchGroupsDetail = /* #__PURE__ */ (() =&gt; {
9153 8289 return request;
9154 8290 })();
9155 8291  
9156   -/** @description response type for postResearchGroupsDownloadImportTemplate */
9157   -export interface PostResearchGroupsDownloadImportTemplateResponse {
  8292 +/** @description request parameter type for postPrepaidCreate */
  8293 +export interface PostPrepaidCreateOption {
  8294 + /**
  8295 + * @description
  8296 + * request
  8297 + */
  8298 + body: {
  8299 + /**
  8300 + @description
  8301 + request */
  8302 + request: SalesRechargePrepaymentCreateRequest;
  8303 + };
  8304 +}
  8305 +
  8306 +/** @description response type for postPrepaidCreate */
  8307 +export interface PostPrepaidCreateResponse {
9158 8308 /**
9159 8309 * @description
9160 8310 * OK
9161 8311 */
9162   - 200: any;
  8312 + 200: ServerResult;
9163 8313 /**
9164 8314 * @description
9165 8315 * Created
... ... @@ -9182,22 +8332,24 @@ export interface PostResearchGroupsDownloadImportTemplateResponse {
9182 8332 404: any;
9183 8333 }
9184 8334  
9185   -export type PostResearchGroupsDownloadImportTemplateResponseSuccess =
9186   - PostResearchGroupsDownloadImportTemplateResponse[200];
  8335 +export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200];
9187 8336 /**
9188 8337 * @description
9189   - * 课题组导入模板下载
9190   - * @tags research-groups-controller
  8338 + * 新增预存
  8339 + * @tags prepaid-controller
9191 8340 * @produces *
9192 8341 * @consumes application/json
9193 8342 */
9194   -export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => {
  8343 +export const postPrepaidCreate = /* #__PURE__ */ (() => {
9195 8344 const method = 'post';
9196   - const url = '/research/groups/download/importTemplate';
9197   - function request(): Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess> {
  8345 + const url = '/prepaid/create';
  8346 + function request(
  8347 + option: PostPrepaidCreateOption,
  8348 + ): Promise<PostPrepaidCreateResponseSuccess> {
9198 8349 return requester(request.url, {
9199 8350 method: request.method,
9200   - }) as unknown as Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess>;
  8351 + ...option,
  8352 + }) as unknown as Promise<PostPrepaidCreateResponseSuccess>;
9201 8353 }
9202 8354  
9203 8355 /** http method */
... ... @@ -9207,8 +8359,8 @@ export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() =&gt; {
9207 8359 return request;
9208 8360 })();
9209 8361  
9210   -/** @description request parameter type for postResearchGroupsEdit */
9211   -export interface PostResearchGroupsEditOption {
  8362 +/** @description request parameter type for postPrepaidDelete */
  8363 +export interface PostPrepaidDeleteOption {
9212 8364 /**
9213 8365 * @description
9214 8366 * request
... ... @@ -9217,12 +8369,12 @@ export interface PostResearchGroupsEditOption {
9217 8369 /**
9218 8370 @description
9219 8371 request */
9220   - request: ResearchGroupEditRequest;
  8372 + request: SalesRechargePrepaymentDeleteRequest;
9221 8373 };
9222 8374 }
9223 8375  
9224   -/** @description response type for postResearchGroupsEdit */
9225   -export interface PostResearchGroupsEditResponse {
  8376 +/** @description response type for postPrepaidDelete */
  8377 +export interface PostPrepaidDeleteResponse {
9226 8378 /**
9227 8379 * @description
9228 8380 * OK
... ... @@ -9250,25 +8402,24 @@ export interface PostResearchGroupsEditResponse {
9250 8402 404: any;
9251 8403 }
9252 8404  
9253   -export type PostResearchGroupsEditResponseSuccess =
9254   - PostResearchGroupsEditResponse[200];
  8405 +export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200];
9255 8406 /**
9256 8407 * @description
9257   - * 编辑课题组信息
9258   - * @tags research-groups-controller
  8408 + * 删除预存
  8409 + * @tags prepaid-controller
9259 8410 * @produces *
9260 8411 * @consumes application/json
9261 8412 */
9262   -export const postResearchGroupsEdit = /* #__PURE__ */ (() => {
  8413 +export const postPrepaidDelete = /* #__PURE__ */ (() => {
9263 8414 const method = 'post';
9264   - const url = '/research/groups/edit';
  8415 + const url = '/prepaid/delete';
9265 8416 function request(
9266   - option: PostResearchGroupsEditOption,
9267   - ): Promise<PostResearchGroupsEditResponseSuccess> {
  8417 + option: PostPrepaidDeleteOption,
  8418 + ): Promise<PostPrepaidDeleteResponseSuccess> {
9268 8419 return requester(request.url, {
9269 8420 method: request.method,
9270 8421 ...option,
9271   - }) as unknown as Promise<PostResearchGroupsEditResponseSuccess>;
  8422 + }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>;
9272 8423 }
9273 8424  
9274 8425 /** http method */
... ... @@ -9278,22 +8429,22 @@ export const postResearchGroupsEdit = /* #__PURE__ */ (() =&gt; {
9278 8429 return request;
9279 8430 })();
9280 8431  
9281   -/** @description request parameter type for postResearchGroupsImport */
9282   -export interface PostResearchGroupsImportOption {
  8432 +/** @description request parameter type for postPrepaidList */
  8433 +export interface PostPrepaidListOption {
9283 8434 /**
9284 8435 * @description
9285   - * file
  8436 + * request
9286 8437 */
9287   - formData: {
  8438 + body: {
9288 8439 /**
9289 8440 @description
9290   - file */
9291   - file: File;
  8441 + request */
  8442 + request: SalesRechargePrepaymentRequest;
9292 8443 };
9293 8444 }
9294 8445  
9295   -/** @description response type for postResearchGroupsImport */
9296   -export interface PostResearchGroupsImportResponse {
  8446 +/** @description response type for postPrepaidList */
  8447 +export interface PostPrepaidListResponse {
9297 8448 /**
9298 8449 * @description
9299 8450 * OK
... ... @@ -9321,25 +8472,24 @@ export interface PostResearchGroupsImportResponse {
9321 8472 404: any;
9322 8473 }
9323 8474  
9324   -export type PostResearchGroupsImportResponseSuccess =
9325   - PostResearchGroupsImportResponse[200];
  8475 +export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200];
9326 8476 /**
9327 8477 * @description
9328   - * 课题组信息导入
9329   - * @tags research-groups-controller
  8478 + * 查询列表
  8479 + * @tags prepaid-controller
9330 8480 * @produces *
9331   - * @consumes multipart/form-data
  8481 + * @consumes application/json
9332 8482 */
9333   -export const postResearchGroupsImport = /* #__PURE__ */ (() => {
  8483 +export const postPrepaidList = /* #__PURE__ */ (() => {
9334 8484 const method = 'post';
9335   - const url = '/research/groups/import';
  8485 + const url = '/prepaid/list';
9336 8486 function request(
9337   - option: PostResearchGroupsImportOption,
9338   - ): Promise<PostResearchGroupsImportResponseSuccess> {
  8487 + option: PostPrepaidListOption,
  8488 + ): Promise<PostPrepaidListResponseSuccess> {
9339 8489 return requester(request.url, {
9340 8490 method: request.method,
9341 8491 ...option,
9342   - }) as unknown as Promise<PostResearchGroupsImportResponseSuccess>;
  8492 + }) as unknown as Promise<PostPrepaidListResponseSuccess>;
9343 8493 }
9344 8494  
9345 8495 /** http method */
... ... @@ -9349,8 +8499,8 @@ export const postResearchGroupsImport = /* #__PURE__ */ (() =&gt; {
9349 8499 return request;
9350 8500 })();
9351 8501  
9352   -/** @description request parameter type for postResearchGroupsList */
9353   -export interface PostResearchGroupsListOption {
  8502 +/** @description request parameter type for postPrepaidUpdate */
  8503 +export interface PostPrepaidUpdateOption {
9354 8504 /**
9355 8505 * @description
9356 8506 * request
... ... @@ -9359,12 +8509,12 @@ export interface PostResearchGroupsListOption {
9359 8509 /**
9360 8510 @description
9361 8511 request */
9362   - request: ResearchGroupListRequest;
  8512 + request: SalesRechargePrepaymentUpdateRequest;
9363 8513 };
9364 8514 }
9365 8515  
9366   -/** @description response type for postResearchGroupsList */
9367   -export interface PostResearchGroupsListResponse {
  8516 +/** @description response type for postPrepaidUpdate */
  8517 +export interface PostPrepaidUpdateResponse {
9368 8518 /**
9369 8519 * @description
9370 8520 * OK
... ... @@ -9392,25 +8542,24 @@ export interface PostResearchGroupsListResponse {
9392 8542 404: any;
9393 8543 }
9394 8544  
9395   -export type PostResearchGroupsListResponseSuccess =
9396   - PostResearchGroupsListResponse[200];
  8545 +export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200];
9397 8546 /**
9398 8547 * @description
9399   - * 课题组列表
9400   - * @tags research-groups-controller
  8548 + * 修改预存
  8549 + * @tags prepaid-controller
9401 8550 * @produces *
9402 8551 * @consumes application/json
9403 8552 */
9404   -export const postResearchGroupsList = /* #__PURE__ */ (() => {
  8553 +export const postPrepaidUpdate = /* #__PURE__ */ (() => {
9405 8554 const method = 'post';
9406   - const url = '/research/groups/list';
  8555 + const url = '/prepaid/update';
9407 8556 function request(
9408   - option: PostResearchGroupsListOption,
9409   - ): Promise<PostResearchGroupsListResponseSuccess> {
  8557 + option: PostPrepaidUpdateOption,
  8558 + ): Promise<PostPrepaidUpdateResponseSuccess> {
9410 8559 return requester(request.url, {
9411 8560 method: request.method,
9412 8561 ...option,
9413   - }) as unknown as Promise<PostResearchGroupsListResponseSuccess>;
  8562 + }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>;
9414 8563 }
9415 8564  
9416 8565 /** http method */
... ...