Commit 0460bf4a7910d14879269b95fce4ead74eb7a093
Merge remote-tracking branch 'origin/master'
Showing
14 changed files
with
820 additions
and
1817 deletions
.umirc.ts
... | ... | @@ -80,6 +80,13 @@ export default defineConfig({ |
80 | 80 | access: 'canReadLinda', |
81 | 81 | }, |
82 | 82 | { |
83 | + name: '区域管理', | |
84 | + path: '/zoning', | |
85 | + component: './ZoNing', | |
86 | + icon: 'BookOutlined', | |
87 | + access: 'canReadAdminAndSales', | |
88 | + }, | |
89 | + { | |
83 | 90 | name: '打印', |
84 | 91 | path: '/print', |
85 | 92 | component: './OrderPrint', | ... | ... |
src/access.ts
... | ... | @@ -11,7 +11,7 @@ export default (initialState: API.UserInfo) => { |
11 | 11 | return { |
12 | 12 | canReadAdmin: canReadAdmin, |
13 | 13 | canReadProcure: canReadProcure, |
14 | - canReadLinda: username === 'Linda' || username === '吴量', | |
14 | + canReadLinda: username === 'Linda' || username === '吴量' || canReadAdmin, | |
15 | 15 | canReadAdminAndFinance: canReadFinance || canReadAdmin, |
16 | 16 | canReadSales: canReadSales, |
17 | 17 | canReadAdminAndFinanceAndSales: | ... | ... |
src/pages/Instalment/components/comfire/comfire.tsx
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 () => { |
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 () => { |
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/Instalment/components/upload/uploadApp.css
0 → 100644
src/pages/Instalment/components/upload/uploadApp.less
0 → 100644
src/pages/Instalment/components/upload/uploadApp.tsx
1 | 1 | import { InboxOutlined } from '@ant-design/icons'; |
2 | 2 | import { Upload } from 'antd'; |
3 | 3 | import React from 'react'; |
4 | +import './uploadApp.less'; | |
4 | 5 | |
5 | 6 | const App: React.FC = ({ uploadFile }) => { |
6 | 7 | const { Dragger } = Upload; |
... | ... | @@ -15,18 +16,26 @@ const App: React.FC = ({ uploadFile }) => { |
15 | 16 | }; |
16 | 17 | |
17 | 18 | return ( |
18 | - <Dragger {...props}> | |
19 | - <p className="ant-upload-drag-icon"> | |
20 | - <InboxOutlined /> | |
21 | - </p> | |
22 | - <p className="ant-upload-text"> | |
23 | - Click or drag file to this area to upload | |
24 | - </p> | |
25 | - <p className="ant-upload-hint"> | |
26 | - Support for a single or bulk upload. Strictly prohibited from uploading | |
27 | - company data or other banned files. | |
28 | - </p> | |
29 | - </Dragger> | |
19 | + <> | |
20 | + <Dragger {...props}> | |
21 | + <p className="ant-upload-drag-icon"> | |
22 | + <InboxOutlined /> | |
23 | + </p> | |
24 | + <p className="ant-upload-text"> | |
25 | + Click or drag file to this area to upload | |
26 | + </p> | |
27 | + <p className="ant-upload-hint"> | |
28 | + Support for a single or bulk upload. Strictly prohibited from | |
29 | + uploading company data or other banned files. | |
30 | + </p> | |
31 | + </Dragger> | |
32 | + <a | |
33 | + href="https://order-erp.oss-cn-qingdao.aliyuncs.com/%E5%88%86%E6%9C%9F%E4%BB%98%E6%AC%BE-%E5%AF%BC%E5%85%A5%E6%A8%A1%E6%9D%BF.xlsx?Expires=2035527699&OSSAccessKeyId=LTAIZCPI7OaWud0m&Signature=npHyEhfRd6LugJ0St8OkvRmLYtQ%3D" | |
34 | + className="modul-a" | |
35 | + > | |
36 | + 下载模板 | |
37 | + </a> | |
38 | + </> | |
30 | 39 | ); |
31 | 40 | }; |
32 | 41 | ... | ... |
src/pages/Instalment/components/upload/uploadModel.tsx
... | ... | @@ -27,7 +27,12 @@ export default ({ toReload }) => { |
27 | 27 | }> |
28 | 28 | title="新建表单" |
29 | 29 | trigger={ |
30 | - <Button type="primary"> | |
30 | + <Button | |
31 | + type="primary" | |
32 | + onClick={() => { | |
33 | + setUploadFile({}); | |
34 | + }} | |
35 | + > | |
31 | 36 | <VerticalAlignBottomOutlined /> |
32 | 37 | 导入 |
33 | 38 | </Button> |
... | ... | @@ -39,6 +44,9 @@ export default ({ toReload }) => { |
39 | 44 | }} |
40 | 45 | submitTimeout={2000} |
41 | 46 | onFinish={async () => { |
47 | + if (!(uploadFile instanceof File)) { | |
48 | + return false; | |
49 | + } | |
42 | 50 | const formData = new FormData(); |
43 | 51 | formData.append('file', uploadFile as RcFile); |
44 | 52 | const res = await postOrderErpOrderStagesImport({ | ... | ... |
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
0 → 100644
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/index.tsx
0 → 100644
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 | |
... | ... | @@ -811,15 +767,11 @@ export interface AuditDto { |
811 | 767 | export interface AuditVO { |
812 | 768 | /** @format int32 */ |
813 | 769 | current?: number; |
814 | - /** @format int32 */ | |
815 | - end?: number; | |
816 | 770 | /** @format int64 */ |
817 | 771 | id?: number; |
818 | 772 | /** @format int32 */ |
819 | 773 | pageSize?: number; |
820 | 774 | /** @format int32 */ |
821 | - start?: number; | |
822 | - /** @format int32 */ | |
823 | 775 | status?: number; |
824 | 776 | /** @format int32 */ |
825 | 777 | total?: number; |
... | ... | @@ -889,32 +841,16 @@ export interface CancelSendOrderDto { |
889 | 841 | export interface CaptchaMessageVO { |
890 | 842 | /** @format int32 */ |
891 | 843 | current?: number; |
892 | - /** @format int32 */ | |
893 | - end?: number; | |
894 | 844 | imgCaptchaCode?: string; |
895 | 845 | imgCaptchaUuid?: string; |
896 | 846 | /** @format int32 */ |
897 | 847 | pageSize?: number; |
898 | 848 | phone?: string; |
899 | 849 | /** @format int32 */ |
900 | - start?: number; | |
901 | - /** @format int32 */ | |
902 | 850 | total?: number; |
903 | 851 | type?: string; |
904 | 852 | } |
905 | 853 | |
906 | -export interface CommonAuditRequest { | |
907 | - extend?: any; | |
908 | - /** | |
909 | - * @description | |
910 | - * id集合 | |
911 | - */ | |
912 | - ids?: Array<string>; | |
913 | - notes?: string; | |
914 | - pass?: boolean; | |
915 | - type?: string; | |
916 | -} | |
917 | - | |
918 | 854 | export interface Contactperson { |
919 | 855 | birthday?: string; |
920 | 856 | contactAddress?: string; |
... | ... | @@ -1102,8 +1038,6 @@ export interface DictionaryQueryVO { |
1102 | 1038 | dictCode?: string; |
1103 | 1039 | dictName?: string; |
1104 | 1040 | dictValue?: string; |
1105 | - /** @format int32 */ | |
1106 | - end?: number; | |
1107 | 1041 | /** @format int64 */ |
1108 | 1042 | id?: number; |
1109 | 1043 | ids?: Array<number>; |
... | ... | @@ -1113,8 +1047,6 @@ export interface DictionaryQueryVO { |
1113 | 1047 | /** @format int32 */ |
1114 | 1048 | sort?: number; |
1115 | 1049 | /** @format int32 */ |
1116 | - start?: number; | |
1117 | - /** @format int32 */ | |
1118 | 1050 | total?: number; |
1119 | 1051 | } |
1120 | 1052 | |
... | ... | @@ -1798,14 +1730,10 @@ export interface MeasureUnitListResRow { |
1798 | 1730 | export interface MessageQueryDTO { |
1799 | 1731 | /** @format int32 */ |
1800 | 1732 | current?: number; |
1801 | - /** @format int32 */ | |
1802 | - end?: number; | |
1803 | 1733 | isReaded?: string; |
1804 | 1734 | /** @format int32 */ |
1805 | 1735 | pageSize?: number; |
1806 | 1736 | /** @format int32 */ |
1807 | - start?: number; | |
1808 | - /** @format int32 */ | |
1809 | 1737 | total?: number; |
1810 | 1738 | username?: string; |
1811 | 1739 | } |
... | ... | @@ -1841,8 +1769,6 @@ export interface OrderAuditLogQueryVO { |
1841 | 1769 | applyId?: number; |
1842 | 1770 | /** @format int32 */ |
1843 | 1771 | current?: number; |
1844 | - /** @format int32 */ | |
1845 | - end?: number; | |
1846 | 1772 | /** @format int64 */ |
1847 | 1773 | id?: number; |
1848 | 1774 | ids?: Array<number>; |
... | ... | @@ -1852,8 +1778,6 @@ export interface OrderAuditLogQueryVO { |
1852 | 1778 | /** @format int32 */ |
1853 | 1779 | pageSize?: number; |
1854 | 1780 | /** @format int32 */ |
1855 | - start?: number; | |
1856 | - /** @format int32 */ | |
1857 | 1781 | total?: number; |
1858 | 1782 | } |
1859 | 1783 | |
... | ... | @@ -1888,8 +1812,6 @@ export interface OrderBaseInfoQueryVO { |
1888 | 1812 | customerCode?: string; |
1889 | 1813 | customerPo?: string; |
1890 | 1814 | customerStyle?: string; |
1891 | - /** @format int32 */ | |
1892 | - end?: number; | |
1893 | 1815 | /** @format int64 */ |
1894 | 1816 | id?: number; |
1895 | 1817 | ids?: Array<number>; |
... | ... | @@ -1911,8 +1833,6 @@ export interface OrderBaseInfoQueryVO { |
1911 | 1833 | productionDepartmentConsignTime?: string; |
1912 | 1834 | projectNo?: string; |
1913 | 1835 | /** @format int32 */ |
1914 | - start?: number; | |
1915 | - /** @format int32 */ | |
1916 | 1836 | total?: number; |
1917 | 1837 | } |
1918 | 1838 | |
... | ... | @@ -1973,8 +1893,6 @@ export interface OrderFieldLockApplyQueryVO { |
1973 | 1893 | auditUserId?: number; |
1974 | 1894 | /** @format int32 */ |
1975 | 1895 | current?: number; |
1976 | - /** @format int32 */ | |
1977 | - end?: number; | |
1978 | 1896 | fields?: string; |
1979 | 1897 | /** @format int64 */ |
1980 | 1898 | id?: number; |
... | ... | @@ -1984,8 +1902,6 @@ export interface OrderFieldLockApplyQueryVO { |
1984 | 1902 | /** @format int32 */ |
1985 | 1903 | pageSize?: number; |
1986 | 1904 | /** @format int32 */ |
1987 | - start?: number; | |
1988 | - /** @format int32 */ | |
1989 | 1905 | status?: number; |
1990 | 1906 | statusList?: Array<number>; |
1991 | 1907 | /** @format int32 */ |
... | ... | @@ -2034,8 +1950,6 @@ export interface OrderInspectionStageVO { |
2034 | 1950 | export interface OrderOptLogQueryVO { |
2035 | 1951 | /** @format int32 */ |
2036 | 1952 | current?: number; |
2037 | - /** @format int32 */ | |
2038 | - end?: number; | |
2039 | 1953 | /** @format int64 */ |
2040 | 1954 | id?: number; |
2041 | 1955 | ids?: Array<number>; |
... | ... | @@ -2044,8 +1958,6 @@ export interface OrderOptLogQueryVO { |
2044 | 1958 | /** @format int32 */ |
2045 | 1959 | pageSize?: number; |
2046 | 1960 | /** @format int32 */ |
2047 | - start?: number; | |
2048 | - /** @format int32 */ | |
2049 | 1961 | total?: number; |
2050 | 1962 | } |
2051 | 1963 | |
... | ... | @@ -2095,6 +2007,12 @@ export interface OrderProfitAnalysisVo { |
2095 | 2007 | orderIds?: Array<number>; |
2096 | 2008 | } |
2097 | 2009 | |
2010 | +export interface OrderProvinceVo { | |
2011 | + /** @format int32 */ | |
2012 | + pid?: number; | |
2013 | + province?: string; | |
2014 | +} | |
2015 | + | |
2098 | 2016 | export interface OrderStageFileDo { |
2099 | 2017 | file?: File; |
2100 | 2018 | } |
... | ... | @@ -2241,6 +2159,20 @@ export interface OrderUpdateVO { |
2241 | 2159 | trackStageInfo?: OrderTrackStageVO; |
2242 | 2160 | } |
2243 | 2161 | |
2162 | +export interface OrderUserVo { | |
2163 | + /** @format int32 */ | |
2164 | + uid?: number; | |
2165 | + userName?: string; | |
2166 | +} | |
2167 | + | |
2168 | +export interface OrderZoNingProvinceUserDo { | |
2169 | + /** @format int32 */ | |
2170 | + id?: number; | |
2171 | + orderProvinceVoList?: Array<OrderProvinceVo>; | |
2172 | + orderUserVoList?: Array<OrderUserVo>; | |
2173 | + zoning?: string; | |
2174 | +} | |
2175 | + | |
2244 | 2176 | export interface ProcureConvertProcureDto { |
2245 | 2177 | /** |
2246 | 2178 | * @description |
... | ... | @@ -2331,8 +2263,6 @@ export interface QueryBankStatementDto { |
2331 | 2263 | collectionDatetimeEnd?: string; |
2332 | 2264 | /** @format int32 */ |
2333 | 2265 | current?: number; |
2334 | - /** @format int32 */ | |
2335 | - end?: number; | |
2336 | 2266 | /** @format int64 */ |
2337 | 2267 | id?: number; |
2338 | 2268 | /** @format int32 */ |
... | ... | @@ -2354,8 +2284,6 @@ export interface QueryBankStatementDto { |
2354 | 2284 | remark?: string; |
2355 | 2285 | remarkNote?: string; |
2356 | 2286 | serialNumber?: string; |
2357 | - /** @format int32 */ | |
2358 | - start?: number; | |
2359 | 2287 | status?: string; |
2360 | 2288 | /** @format int32 */ |
2361 | 2289 | total?: number; |
... | ... | @@ -2637,325 +2565,6 @@ export interface ReissueInvoiceDto { |
2637 | 2565 | notes?: string; |
2638 | 2566 | } |
2639 | 2567 | |
2640 | -export interface ResearchGroupAccountAddRequest { | |
2641 | - /** | |
2642 | - * @description | |
2643 | - * 关联的账号id | |
2644 | - * @format int64 | |
2645 | - */ | |
2646 | - accountId?: number; | |
2647 | - /** | |
2648 | - * @description | |
2649 | - * 关联的账号名称 | |
2650 | - */ | |
2651 | - accountName?: string; | |
2652 | - /** | |
2653 | - * @description | |
2654 | - * 关联的账号手机号 | |
2655 | - */ | |
2656 | - accountPhone?: string; | |
2657 | - /** | |
2658 | - * @description | |
2659 | - * 课题组id | |
2660 | - * @format int64 | |
2661 | - */ | |
2662 | - groupId?: number; | |
2663 | -} | |
2664 | - | |
2665 | -export interface ResearchGroupAccountEditRequest { | |
2666 | - /** | |
2667 | - * @description | |
2668 | - * 关联的账号id | |
2669 | - * @format int64 | |
2670 | - */ | |
2671 | - accountId?: number; | |
2672 | - /** | |
2673 | - * @description | |
2674 | - * 关联的账号名称 | |
2675 | - */ | |
2676 | - accountName?: string; | |
2677 | - /** | |
2678 | - * @description | |
2679 | - * 关联的账号手机号 | |
2680 | - */ | |
2681 | - accountPhone?: string; | |
2682 | - /** | |
2683 | - * @description | |
2684 | - * 课题组id | |
2685 | - * @format int64 | |
2686 | - */ | |
2687 | - groupId?: number; | |
2688 | - /** | |
2689 | - * @description | |
2690 | - * 主键id | |
2691 | - * @format int64 | |
2692 | - */ | |
2693 | - id?: number; | |
2694 | -} | |
2695 | - | |
2696 | -export interface ResearchGroupAddRequest { | |
2697 | - accounts?: Array<ResearchGroupAccountAddRequest>; | |
2698 | - /** | |
2699 | - * @description | |
2700 | - * 课题组名称 | |
2701 | - */ | |
2702 | - group?: string; | |
2703 | - /** | |
2704 | - * @description | |
2705 | - * 课题组负责人 | |
2706 | - */ | |
2707 | - leader?: string; | |
2708 | - members?: Array<ResearchGroupMemberAddRequest>; | |
2709 | -} | |
2710 | - | |
2711 | -export interface ResearchGroupDeleteRequest { | |
2712 | - /** | |
2713 | - * @description | |
2714 | - * 主键id | |
2715 | - */ | |
2716 | - ids?: Array<number>; | |
2717 | -} | |
2718 | - | |
2719 | -export interface ResearchGroupDetailRequest { | |
2720 | - /** | |
2721 | - * @description | |
2722 | - * 主键id | |
2723 | - * @format int64 | |
2724 | - */ | |
2725 | - id?: number; | |
2726 | -} | |
2727 | - | |
2728 | -export interface ResearchGroupEditRequest { | |
2729 | - /** | |
2730 | - * @description | |
2731 | - * 课题组预存账号 | |
2732 | - */ | |
2733 | - accounts?: Array<ResearchGroupAccountEditRequest>; | |
2734 | - /** | |
2735 | - * @description | |
2736 | - * 课题组名称 | |
2737 | - */ | |
2738 | - group?: string; | |
2739 | - /** | |
2740 | - * @description | |
2741 | - * 主键id | |
2742 | - * @format int64 | |
2743 | - */ | |
2744 | - id?: number; | |
2745 | - /** | |
2746 | - * @description | |
2747 | - * 课题组负责人 | |
2748 | - */ | |
2749 | - leader?: string; | |
2750 | - /** | |
2751 | - * @description | |
2752 | - * 课题组成员集合 | |
2753 | - */ | |
2754 | - members?: Array<ResearchGroupMemberEditRequest>; | |
2755 | -} | |
2756 | - | |
2757 | -export interface ResearchGroupListRequest { | |
2758 | - /** | |
2759 | - * @description | |
2760 | - * 预存账号手机号 | |
2761 | - */ | |
2762 | - accountPhone?: string; | |
2763 | - /** @format int32 */ | |
2764 | - current?: number; | |
2765 | - /** @format int32 */ | |
2766 | - end?: number; | |
2767 | - /** | |
2768 | - * @description | |
2769 | - * 课题组名称 | |
2770 | - */ | |
2771 | - groupName?: string; | |
2772 | - /** | |
2773 | - * @description | |
2774 | - * 课题组负责人 | |
2775 | - */ | |
2776 | - leaderName?: string; | |
2777 | - /** | |
2778 | - * @description | |
2779 | - * 课题组成员名称 | |
2780 | - */ | |
2781 | - memberName?: string; | |
2782 | - /** | |
2783 | - * @description | |
2784 | - * 课题组成员手机号 | |
2785 | - */ | |
2786 | - memberPhone?: string; | |
2787 | - /** @format int32 */ | |
2788 | - pageSize?: number; | |
2789 | - /** @format int32 */ | |
2790 | - start?: number; | |
2791 | - /** @format int32 */ | |
2792 | - total?: number; | |
2793 | -} | |
2794 | - | |
2795 | -export interface ResearchGroupMemberAddRequest { | |
2796 | - /** | |
2797 | - * @description | |
2798 | - * 课题组ID | |
2799 | - * @format int64 | |
2800 | - */ | |
2801 | - groupId?: number; | |
2802 | - /** | |
2803 | - * @description | |
2804 | - * 成员名称 | |
2805 | - */ | |
2806 | - memberName?: string; | |
2807 | - /** | |
2808 | - * @description | |
2809 | - * 成员手机号 | |
2810 | - */ | |
2811 | - memberPhone?: string; | |
2812 | -} | |
2813 | - | |
2814 | -export interface ResearchGroupMemberEditRequest { | |
2815 | - /** | |
2816 | - * @description | |
2817 | - * 课题组ID | |
2818 | - * @format int64 | |
2819 | - */ | |
2820 | - groupId?: number; | |
2821 | - /** | |
2822 | - * @description | |
2823 | - * 主键id | |
2824 | - * @format int64 | |
2825 | - */ | |
2826 | - id?: number; | |
2827 | - /** | |
2828 | - * @description | |
2829 | - * 成员名称 | |
2830 | - */ | |
2831 | - memberName?: string; | |
2832 | - /** | |
2833 | - * @description | |
2834 | - * 成员手机号 | |
2835 | - */ | |
2836 | - memberPhone?: string; | |
2837 | -} | |
2838 | - | |
2839 | -export interface ResearchGroupMemberRequestAddRequest { | |
2840 | - /** | |
2841 | - * @description | |
2842 | - * 课题组ID | |
2843 | - * @format int64 | |
2844 | - */ | |
2845 | - groupId?: number; | |
2846 | - /** | |
2847 | - * @description | |
2848 | - * 课题组名称 | |
2849 | - */ | |
2850 | - groupName?: string; | |
2851 | - members?: Array<ResearchGroupMemberAddRequest>; | |
2852 | - /** | |
2853 | - * @description | |
2854 | - * 申请备注 | |
2855 | - */ | |
2856 | - requestNotes?: string; | |
2857 | -} | |
2858 | - | |
2859 | -export interface ResearchGroupMemberRequestDeleteRequest { | |
2860 | - /** | |
2861 | - * @description | |
2862 | - * 主键id | |
2863 | - */ | |
2864 | - ids?: Array<number>; | |
2865 | -} | |
2866 | - | |
2867 | -export interface ResearchGroupMemberRequestDetailRequest { | |
2868 | - /** | |
2869 | - * @description | |
2870 | - * 主键id | |
2871 | - * @format int64 | |
2872 | - */ | |
2873 | - id?: number; | |
2874 | -} | |
2875 | - | |
2876 | -export interface ResearchGroupMemberRequestEditRequest { | |
2877 | - /** | |
2878 | - * @description | |
2879 | - * 课题组ID | |
2880 | - * @format int64 | |
2881 | - */ | |
2882 | - groupId?: number; | |
2883 | - /** | |
2884 | - * @description | |
2885 | - * 课题组名称 | |
2886 | - */ | |
2887 | - groupName?: string; | |
2888 | - /** | |
2889 | - * @description | |
2890 | - * 主键id | |
2891 | - * @format int64 | |
2892 | - */ | |
2893 | - id?: number; | |
2894 | - /** | |
2895 | - * @description | |
2896 | - * 成员名称 | |
2897 | - */ | |
2898 | - memberName?: string; | |
2899 | - /** | |
2900 | - * @description | |
2901 | - * 成员手机号 | |
2902 | - */ | |
2903 | - memberPhone?: string; | |
2904 | - /** | |
2905 | - * @description | |
2906 | - * 申请备注 | |
2907 | - */ | |
2908 | - requestNotes?: string; | |
2909 | -} | |
2910 | - | |
2911 | -export interface ResearchGroupMemberRequestsRequest { | |
2912 | - /** | |
2913 | - * @description | |
2914 | - * 审核备注 | |
2915 | - */ | |
2916 | - auditNotes?: string; | |
2917 | - /** | |
2918 | - * @description | |
2919 | - * 审核状态 | |
2920 | - */ | |
2921 | - auditStatus?: string; | |
2922 | - /** | |
2923 | - * @description | |
2924 | - * 创建人 | |
2925 | - */ | |
2926 | - createByName?: string; | |
2927 | - /** @format int32 */ | |
2928 | - current?: number; | |
2929 | - /** @format int32 */ | |
2930 | - end?: number; | |
2931 | - /** | |
2932 | - * @description | |
2933 | - * 课题组名称 | |
2934 | - */ | |
2935 | - groupName?: string; | |
2936 | - /** | |
2937 | - * @description | |
2938 | - * 成员名称 | |
2939 | - */ | |
2940 | - memberName?: string; | |
2941 | - /** | |
2942 | - * @description | |
2943 | - * 成员手机号 | |
2944 | - */ | |
2945 | - memberPhone?: string; | |
2946 | - /** @format int32 */ | |
2947 | - pageSize?: number; | |
2948 | - /** | |
2949 | - * @description | |
2950 | - * 申请备注 | |
2951 | - */ | |
2952 | - requestNotes?: string; | |
2953 | - /** @format int32 */ | |
2954 | - start?: number; | |
2955 | - /** @format int32 */ | |
2956 | - total?: number; | |
2957 | -} | |
2958 | - | |
2959 | 2568 | export interface ResetPwdVO { |
2960 | 2569 | /** @format int64 */ |
2961 | 2570 | userId?: number; |
... | ... | @@ -3123,8 +2732,6 @@ export interface SysLogQueryVO { |
3123 | 2732 | /** @format int32 */ |
3124 | 2733 | current?: number; |
3125 | 2734 | description?: string; |
3126 | - /** @format int32 */ | |
3127 | - end?: number; | |
3128 | 2735 | exceptionDetail?: string; |
3129 | 2736 | /** @format int64 */ |
3130 | 2737 | id?: number; |
... | ... | @@ -3135,8 +2742,6 @@ export interface SysLogQueryVO { |
3135 | 2742 | pageSize?: number; |
3136 | 2743 | params?: string; |
3137 | 2744 | requestIp?: string; |
3138 | - /** @format int32 */ | |
3139 | - start?: number; | |
3140 | 2745 | /** @format int64 */ |
3141 | 2746 | time?: number; |
3142 | 2747 | /** @format int32 */ |
... | ... | @@ -3300,12 +2905,8 @@ export interface UserCenterInfoRequest { |
3300 | 2905 | /** @format int32 */ |
3301 | 2906 | current?: number; |
3302 | 2907 | /** @format int32 */ |
3303 | - end?: number; | |
3304 | - /** @format int32 */ | |
3305 | 2908 | pageSize?: number; |
3306 | 2909 | /** @format int32 */ |
3307 | - start?: number; | |
3308 | - /** @format int32 */ | |
3309 | 2910 | total?: number; |
3310 | 2911 | /** |
3311 | 2912 | * @description |
... | ... | @@ -3325,8 +2926,6 @@ export interface UserDetailRequest { |
3325 | 2926 | /** @format int32 */ |
3326 | 2927 | current?: number; |
3327 | 2928 | /** @format int32 */ |
3328 | - end?: number; | |
3329 | - /** @format int32 */ | |
3330 | 2929 | pageSize?: number; |
3331 | 2930 | /** |
3332 | 2931 | * @description |
... | ... | @@ -3334,8 +2933,6 @@ export interface UserDetailRequest { |
3334 | 2933 | */ |
3335 | 2934 | phone?: string; |
3336 | 2935 | /** @format int32 */ |
3337 | - start?: number; | |
3338 | - /** @format int32 */ | |
3339 | 2936 | total?: number; |
3340 | 2937 | /** |
3341 | 2938 | * @description |
... | ... | @@ -3352,8 +2949,6 @@ export interface UserListRequest { |
3352 | 2949 | * 创建日期开始时间 |
3353 | 2950 | */ |
3354 | 2951 | dateLimit?: string; |
3355 | - /** @format int32 */ | |
3356 | - end?: number; | |
3357 | 2952 | /** |
3358 | 2953 | * @description |
3359 | 2954 | * 单位 |
... | ... | @@ -3378,23 +2973,10 @@ export interface UserListRequest { |
3378 | 2973 | phone?: string; |
3379 | 2974 | /** |
3380 | 2975 | * @description |
3381 | - * phones | |
3382 | - */ | |
3383 | - phones?: Array<string>; | |
3384 | - /** | |
3385 | - * @description | |
3386 | - * 内部订单系统课题组id | |
3387 | - * @format int64 | |
3388 | - */ | |
3389 | - researchGroupId?: number; | |
3390 | - /** | |
3391 | - * @description | |
3392 | 2976 | * salesCode |
3393 | 2977 | */ |
3394 | 2978 | salesCode?: string; |
3395 | 2979 | /** @format int32 */ |
3396 | - start?: number; | |
3397 | - /** @format int32 */ | |
3398 | 2980 | total?: number; |
3399 | 2981 | /** |
3400 | 2982 | * @description |
... | ... | @@ -3404,23 +2986,11 @@ export interface UserListRequest { |
3404 | 2986 | uid?: number; |
3405 | 2987 | /** |
3406 | 2988 | * @description |
3407 | - * ids | |
3408 | - */ | |
3409 | - uids?: Array<number>; | |
3410 | - /** | |
3411 | - * @description | |
3412 | 2989 | * 用户名 |
3413 | 2990 | */ |
3414 | 2991 | username?: string; |
3415 | 2992 | } |
3416 | 2993 | |
3417 | -export interface UserNowMoneyCheckRequest { | |
3418 | - phone?: string; | |
3419 | - subPrice?: number; | |
3420 | - /** @format int64 */ | |
3421 | - uid?: number; | |
3422 | -} | |
3423 | - | |
3424 | 2994 | export interface View { |
3425 | 2995 | contentType?: string; |
3426 | 2996 | } |
... | ... | @@ -3523,11 +3093,6 @@ export interface SalesRechargePrepaymentAuditRequest { |
3523 | 3093 | * 是否通过 |
3524 | 3094 | */ |
3525 | 3095 | pass?: boolean; |
3526 | - /** | |
3527 | - * @description | |
3528 | - * 手机号 | |
3529 | - */ | |
3530 | - phone?: string; | |
3531 | 3096 | } |
3532 | 3097 | |
3533 | 3098 | export interface SalesRechargePrepaymentCreateRequest { |
... | ... | @@ -3633,8 +3198,6 @@ export interface SalesRechargePrepaymentRequest { |
3633 | 3198 | * @format int32 |
3634 | 3199 | */ |
3635 | 3200 | enableFlag?: number; |
3636 | - /** @format int32 */ | |
3637 | - end?: number; | |
3638 | 3201 | /** |
3639 | 3202 | * @description |
3640 | 3203 | * id |
... | ... | @@ -3679,8 +3242,6 @@ export interface SalesRechargePrepaymentRequest { |
3679 | 3242 | * 销售代表 |
3680 | 3243 | */ |
3681 | 3244 | salesCode?: string; |
3682 | - /** @format int32 */ | |
3683 | - start?: number; | |
3684 | 3245 | /** |
3685 | 3246 | * @description |
3686 | 3247 | * 状态 |
... | ... | @@ -3859,38 +3420,6 @@ export interface TsgURL { |
3859 | 3420 | userInfo?: string; |
3860 | 3421 | } |
3861 | 3422 | |
3862 | -/** | |
3863 | - * @description | |
3864 | - * 保存用户地址请求对象 | |
3865 | - */ | |
3866 | -export interface UserAddressSaveRequest { | |
3867 | - /** | |
3868 | - * @description | |
3869 | - * 联系电话 | |
3870 | - */ | |
3871 | - customerContactNumber: string; | |
3872 | - /** | |
3873 | - * @description | |
3874 | - * 客户姓名 | |
3875 | - */ | |
3876 | - customerName: string; | |
3877 | - /** | |
3878 | - * @description | |
3879 | - * 收货地址 | |
3880 | - */ | |
3881 | - customerShippingAddress?: string; | |
3882 | - /** | |
3883 | - * @description | |
3884 | - * 客户单位 | |
3885 | - */ | |
3886 | - institution?: string; | |
3887 | - /** | |
3888 | - * @description | |
3889 | - * 课题组老师 | |
3890 | - */ | |
3891 | - institutionContactName?: string; | |
3892 | -} | |
3893 | - | |
3894 | 3423 | export interface UploadPaymentReceiptDTO { |
3895 | 3424 | /** |
3896 | 3425 | * @description | ... | ... |
src/services/request.ts
... | ... | @@ -35,7 +35,6 @@ import type { |
35 | 35 | CancelInvoiceAndBankStatementDto, |
36 | 36 | CancelSendOrderDto, |
37 | 37 | CaptchaMessageVO, |
38 | - CommonAuditRequest, | |
39 | 38 | CustomFieldRes, |
40 | 39 | CustomerCustomerListReq, |
41 | 40 | CustomerDetailDto, |
... | ... | @@ -71,6 +70,7 @@ import type { |
71 | 70 | OrderStagesSelDo, |
72 | 71 | OrderUnlockFieldApplyVO, |
73 | 72 | OrderUpdateVO, |
73 | + OrderZoNingProvinceUserDo, | |
74 | 74 | ProcureConvertProcureDto, |
75 | 75 | ProcureOrderDto, |
76 | 76 | ProcurePrintDto, |
... | ... | @@ -86,16 +86,6 @@ import type { |
86 | 86 | QueryMainOrderDto, |
87 | 87 | QueryReportFormsDto, |
88 | 88 | ReissueInvoiceDto, |
89 | - ResearchGroupAddRequest, | |
90 | - ResearchGroupDeleteRequest, | |
91 | - ResearchGroupDetailRequest, | |
92 | - ResearchGroupEditRequest, | |
93 | - ResearchGroupListRequest, | |
94 | - ResearchGroupMemberRequestAddRequest, | |
95 | - ResearchGroupMemberRequestDeleteRequest, | |
96 | - ResearchGroupMemberRequestDetailRequest, | |
97 | - ResearchGroupMemberRequestEditRequest, | |
98 | - ResearchGroupMemberRequestsRequest, | |
99 | 89 | ResetPwdVO, |
100 | 90 | SalOrderSaveDto, |
101 | 91 | SalesRechargePrepaymentAuditRequest, |
... | ... | @@ -117,11 +107,9 @@ import type { |
117 | 107 | UpdatePwdVO, |
118 | 108 | UploadPaymentReceiptDTO, |
119 | 109 | UserAddressListRequest, |
120 | - UserAddressSaveRequest, | |
121 | 110 | UserCenterInfoRequest, |
122 | 111 | UserDetailRequest, |
123 | 112 | UserListRequest, |
124 | - UserNowMoneyCheckRequest, | |
125 | 113 | } from './definition'; |
126 | 114 | |
127 | 115 | /** @description request parameter type for postApiLocalStorageUpload */ |
... | ... | @@ -1484,78 +1472,6 @@ export const postCanrdApiUserDetail = /* #__PURE__ */ (() => { |
1484 | 1472 | return request; |
1485 | 1473 | })(); |
1486 | 1474 | |
1487 | -/** @description request parameter type for postCanrdApiUserInnerOrderSystemAddressSave */ | |
1488 | -export interface PostCanrdApiUserInnerOrderSystemAddressSaveOption { | |
1489 | - /** | |
1490 | - * @description | |
1491 | - * request | |
1492 | - */ | |
1493 | - body: { | |
1494 | - /** | |
1495 | - @description | |
1496 | - request */ | |
1497 | - request: UserAddressSaveRequest; | |
1498 | - }; | |
1499 | -} | |
1500 | - | |
1501 | -/** @description response type for postCanrdApiUserInnerOrderSystemAddressSave */ | |
1502 | -export interface PostCanrdApiUserInnerOrderSystemAddressSaveResponse { | |
1503 | - /** | |
1504 | - * @description | |
1505 | - * OK | |
1506 | - */ | |
1507 | - 200: ServerResult; | |
1508 | - /** | |
1509 | - * @description | |
1510 | - * Created | |
1511 | - */ | |
1512 | - 201: any; | |
1513 | - /** | |
1514 | - * @description | |
1515 | - * Unauthorized | |
1516 | - */ | |
1517 | - 401: any; | |
1518 | - /** | |
1519 | - * @description | |
1520 | - * Forbidden | |
1521 | - */ | |
1522 | - 403: any; | |
1523 | - /** | |
1524 | - * @description | |
1525 | - * Not Found | |
1526 | - */ | |
1527 | - 404: any; | |
1528 | -} | |
1529 | - | |
1530 | -export type PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess = | |
1531 | - PostCanrdApiUserInnerOrderSystemAddressSaveResponse[200]; | |
1532 | -/** | |
1533 | - * @description | |
1534 | - * 查询地址信息 | |
1535 | - * @tags canrd-mobile-api-controller | |
1536 | - * @produces * | |
1537 | - * @consumes application/json | |
1538 | - */ | |
1539 | -export const postCanrdApiUserInnerOrderSystemAddressSave = | |
1540 | - /* #__PURE__ */ (() => { | |
1541 | - const method = 'post'; | |
1542 | - const url = '/canrd/api/user/innerOrderSystem/address/save'; | |
1543 | - function request( | |
1544 | - option: PostCanrdApiUserInnerOrderSystemAddressSaveOption, | |
1545 | - ): Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess> { | |
1546 | - return requester(request.url, { | |
1547 | - method: request.method, | |
1548 | - ...option, | |
1549 | - }) as unknown as Promise<PostCanrdApiUserInnerOrderSystemAddressSaveResponseSuccess>; | |
1550 | - } | |
1551 | - | |
1552 | - /** http method */ | |
1553 | - request.method = method; | |
1554 | - /** request url */ | |
1555 | - request.url = url; | |
1556 | - return request; | |
1557 | - })(); | |
1558 | - | |
1559 | 1475 | /** @description request parameter type for postCanrdApiUserList */ |
1560 | 1476 | export interface PostCanrdApiUserListOption { |
1561 | 1477 | /** |
... | ... | @@ -1627,147 +1543,6 @@ export const postCanrdApiUserList = /* #__PURE__ */ (() => { |
1627 | 1543 | return request; |
1628 | 1544 | })(); |
1629 | 1545 | |
1630 | -/** @description request parameter type for postCanrdApiUserNowMoneyCheck */ | |
1631 | -export interface PostCanrdApiUserNowMoneyCheckOption { | |
1632 | - /** | |
1633 | - * @description | |
1634 | - * request | |
1635 | - */ | |
1636 | - body: { | |
1637 | - /** | |
1638 | - @description | |
1639 | - request */ | |
1640 | - request: UserNowMoneyCheckRequest; | |
1641 | - }; | |
1642 | -} | |
1643 | - | |
1644 | -/** @description response type for postCanrdApiUserNowMoneyCheck */ | |
1645 | -export interface PostCanrdApiUserNowMoneyCheckResponse { | |
1646 | - /** | |
1647 | - * @description | |
1648 | - * OK | |
1649 | - */ | |
1650 | - 200: ServerResult; | |
1651 | - /** | |
1652 | - * @description | |
1653 | - * Created | |
1654 | - */ | |
1655 | - 201: any; | |
1656 | - /** | |
1657 | - * @description | |
1658 | - * Unauthorized | |
1659 | - */ | |
1660 | - 401: any; | |
1661 | - /** | |
1662 | - * @description | |
1663 | - * Forbidden | |
1664 | - */ | |
1665 | - 403: any; | |
1666 | - /** | |
1667 | - * @description | |
1668 | - * Not Found | |
1669 | - */ | |
1670 | - 404: any; | |
1671 | -} | |
1672 | - | |
1673 | -export type PostCanrdApiUserNowMoneyCheckResponseSuccess = | |
1674 | - PostCanrdApiUserNowMoneyCheckResponse[200]; | |
1675 | -/** | |
1676 | - * @description | |
1677 | - * 检查用户额度 | |
1678 | - * @tags canrd-mobile-api-controller | |
1679 | - * @produces * | |
1680 | - * @consumes application/json | |
1681 | - */ | |
1682 | -export const postCanrdApiUserNowMoneyCheck = /* #__PURE__ */ (() => { | |
1683 | - const method = 'post'; | |
1684 | - const url = '/canrd/api/user/nowMoney/check'; | |
1685 | - function request( | |
1686 | - option: PostCanrdApiUserNowMoneyCheckOption, | |
1687 | - ): Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess> { | |
1688 | - return requester(request.url, { | |
1689 | - method: request.method, | |
1690 | - ...option, | |
1691 | - }) as unknown as Promise<PostCanrdApiUserNowMoneyCheckResponseSuccess>; | |
1692 | - } | |
1693 | - | |
1694 | - /** http method */ | |
1695 | - request.method = method; | |
1696 | - /** request url */ | |
1697 | - request.url = url; | |
1698 | - return request; | |
1699 | -})(); | |
1700 | - | |
1701 | -/** @description request parameter type for postCommonAudit */ | |
1702 | -export interface PostCommonAuditOption { | |
1703 | - /** | |
1704 | - * @description | |
1705 | - * request | |
1706 | - */ | |
1707 | - body: { | |
1708 | - /** | |
1709 | - @description | |
1710 | - request */ | |
1711 | - request: CommonAuditRequest; | |
1712 | - }; | |
1713 | -} | |
1714 | - | |
1715 | -/** @description response type for postCommonAudit */ | |
1716 | -export interface PostCommonAuditResponse { | |
1717 | - /** | |
1718 | - * @description | |
1719 | - * OK | |
1720 | - */ | |
1721 | - 200: ServerResult; | |
1722 | - /** | |
1723 | - * @description | |
1724 | - * Created | |
1725 | - */ | |
1726 | - 201: any; | |
1727 | - /** | |
1728 | - * @description | |
1729 | - * Unauthorized | |
1730 | - */ | |
1731 | - 401: any; | |
1732 | - /** | |
1733 | - * @description | |
1734 | - * Forbidden | |
1735 | - */ | |
1736 | - 403: any; | |
1737 | - /** | |
1738 | - * @description | |
1739 | - * Not Found | |
1740 | - */ | |
1741 | - 404: any; | |
1742 | -} | |
1743 | - | |
1744 | -export type PostCommonAuditResponseSuccess = PostCommonAuditResponse[200]; | |
1745 | -/** | |
1746 | - * @description | |
1747 | - * audit | |
1748 | - * @tags common-controller | |
1749 | - * @produces * | |
1750 | - * @consumes application/json | |
1751 | - */ | |
1752 | -export const postCommonAudit = /* #__PURE__ */ (() => { | |
1753 | - const method = 'post'; | |
1754 | - const url = '/common/audit'; | |
1755 | - function request( | |
1756 | - option: PostCommonAuditOption, | |
1757 | - ): Promise<PostCommonAuditResponseSuccess> { | |
1758 | - return requester(request.url, { | |
1759 | - method: request.method, | |
1760 | - ...option, | |
1761 | - }) as unknown as Promise<PostCommonAuditResponseSuccess>; | |
1762 | - } | |
1763 | - | |
1764 | - /** http method */ | |
1765 | - request.method = method; | |
1766 | - /** request url */ | |
1767 | - request.url = url; | |
1768 | - return request; | |
1769 | -})(); | |
1770 | - | |
1771 | 1546 | /** @description response type for getError */ |
1772 | 1547 | export interface GetErrorResponse { |
1773 | 1548 | /** |
... | ... | @@ -7019,22 +6794,22 @@ export const postOrderErpOrderStagesPayWayUploadForPayWay = |
7019 | 6794 | return request; |
7020 | 6795 | })(); |
7021 | 6796 | |
7022 | -/** @description request parameter type for postOrderErpProfitAnalysis */ | |
7023 | -export interface PostOrderErpProfitAnalysisOption { | |
6797 | +/** @description request parameter type for deleteOrderErpOrderZoNingDelete */ | |
6798 | +export interface DeleteOrderErpOrderZoNingDeleteOption { | |
7024 | 6799 | /** |
7025 | 6800 | * @description |
7026 | - * orderProfitAnalysisVo | |
6801 | + * id | |
7027 | 6802 | */ |
7028 | 6803 | body: { |
7029 | 6804 | /** |
7030 | 6805 | @description |
7031 | - orderProfitAnalysisVo */ | |
7032 | - orderProfitAnalysisVo: OrderProfitAnalysisVo; | |
6806 | + id */ | |
6807 | + id: number; | |
7033 | 6808 | }; |
7034 | 6809 | } |
7035 | 6810 | |
7036 | -/** @description response type for postOrderErpProfitAnalysis */ | |
7037 | -export interface PostOrderErpProfitAnalysisResponse { | |
6811 | +/** @description response type for deleteOrderErpOrderZoNingDelete */ | |
6812 | +export interface DeleteOrderErpOrderZoNingDeleteResponse { | |
7038 | 6813 | /** |
7039 | 6814 | * @description |
7040 | 6815 | * OK |
... | ... | @@ -7042,9 +6817,9 @@ export interface PostOrderErpProfitAnalysisResponse { |
7042 | 6817 | 200: ServerResult; |
7043 | 6818 | /** |
7044 | 6819 | * @description |
7045 | - * Created | |
6820 | + * No Content | |
7046 | 6821 | */ |
7047 | - 201: any; | |
6822 | + 204: any; | |
7048 | 6823 | /** |
7049 | 6824 | * @description |
7050 | 6825 | * Unauthorized |
... | ... | @@ -7055,32 +6830,26 @@ export interface PostOrderErpProfitAnalysisResponse { |
7055 | 6830 | * Forbidden |
7056 | 6831 | */ |
7057 | 6832 | 403: any; |
7058 | - /** | |
7059 | - * @description | |
7060 | - * Not Found | |
7061 | - */ | |
7062 | - 404: any; | |
7063 | 6833 | } |
7064 | 6834 | |
7065 | -export type PostOrderErpProfitAnalysisResponseSuccess = | |
7066 | - PostOrderErpProfitAnalysisResponse[200]; | |
6835 | +export type DeleteOrderErpOrderZoNingDeleteResponseSuccess = | |
6836 | + DeleteOrderErpOrderZoNingDeleteResponse[200]; | |
7067 | 6837 | /** |
7068 | 6838 | * @description |
7069 | - * analysis | |
7070 | - * @tags order-profit-controller | |
6839 | + * toDetele | |
6840 | + * @tags order-zo-ning-controller | |
7071 | 6841 | * @produces * |
7072 | - * @consumes application/json | |
7073 | 6842 | */ |
7074 | -export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => { | |
7075 | - const method = 'post'; | |
7076 | - const url = '/order/erp/profit/analysis'; | |
6843 | +export const deleteOrderErpOrderZoNingDelete = /* #__PURE__ */ (() => { | |
6844 | + const method = 'delete'; | |
6845 | + const url = '/order/erp/orderZoNing/delete'; | |
7077 | 6846 | function request( |
7078 | - option: PostOrderErpProfitAnalysisOption, | |
7079 | - ): Promise<PostOrderErpProfitAnalysisResponseSuccess> { | |
6847 | + option: DeleteOrderErpOrderZoNingDeleteOption, | |
6848 | + ): Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess> { | |
7080 | 6849 | return requester(request.url, { |
7081 | 6850 | method: request.method, |
7082 | 6851 | ...option, |
7083 | - }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>; | |
6852 | + }) as unknown as Promise<DeleteOrderErpOrderZoNingDeleteResponseSuccess>; | |
7084 | 6853 | } |
7085 | 6854 | |
7086 | 6855 | /** http method */ |
... | ... | @@ -7090,22 +6859,22 @@ export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => { |
7090 | 6859 | return request; |
7091 | 6860 | })(); |
7092 | 6861 | |
7093 | -/** @description request parameter type for postOrderErpRolesAdd */ | |
7094 | -export interface PostOrderErpRolesAddOption { | |
6862 | +/** @description request parameter type for postOrderErpOrderZoNingSaveOrUpdate */ | |
6863 | +export interface PostOrderErpOrderZoNingSaveOrUpdateOption { | |
7095 | 6864 | /** |
7096 | 6865 | * @description |
7097 | - * roleVO | |
6866 | + * orderZoNingProvinceUserDo | |
7098 | 6867 | */ |
7099 | 6868 | body: { |
7100 | 6869 | /** |
7101 | 6870 | @description |
7102 | - roleVO */ | |
7103 | - roleVO: AdminRoleVO; | |
6871 | + orderZoNingProvinceUserDo */ | |
6872 | + orderZoNingProvinceUserDo: OrderZoNingProvinceUserDo; | |
7104 | 6873 | }; |
7105 | 6874 | } |
7106 | 6875 | |
7107 | -/** @description response type for postOrderErpRolesAdd */ | |
7108 | -export interface PostOrderErpRolesAddResponse { | |
6876 | +/** @description response type for postOrderErpOrderZoNingSaveOrUpdate */ | |
6877 | +export interface PostOrderErpOrderZoNingSaveOrUpdateResponse { | |
7109 | 6878 | /** |
7110 | 6879 | * @description |
7111 | 6880 | * OK |
... | ... | @@ -7133,25 +6902,25 @@ export interface PostOrderErpRolesAddResponse { |
7133 | 6902 | 404: any; |
7134 | 6903 | } |
7135 | 6904 | |
7136 | -export type PostOrderErpRolesAddResponseSuccess = | |
7137 | - PostOrderErpRolesAddResponse[200]; | |
6905 | +export type PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess = | |
6906 | + PostOrderErpOrderZoNingSaveOrUpdateResponse[200]; | |
7138 | 6907 | /** |
7139 | 6908 | * @description |
7140 | - * 新增角色 | |
7141 | - * @tags 系统:角色管理 | |
6909 | + * update | |
6910 | + * @tags order-zo-ning-controller | |
7142 | 6911 | * @produces * |
7143 | 6912 | * @consumes application/json |
7144 | 6913 | */ |
7145 | -export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { | |
6914 | +export const postOrderErpOrderZoNingSaveOrUpdate = /* #__PURE__ */ (() => { | |
7146 | 6915 | const method = 'post'; |
7147 | - const url = '/order/erp/roles/add'; | |
6916 | + const url = '/order/erp/orderZoNing/saveOrUpdate'; | |
7148 | 6917 | function request( |
7149 | - option: PostOrderErpRolesAddOption, | |
7150 | - ): Promise<PostOrderErpRolesAddResponseSuccess> { | |
6918 | + option: PostOrderErpOrderZoNingSaveOrUpdateOption, | |
6919 | + ): Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess> { | |
7151 | 6920 | return requester(request.url, { |
7152 | 6921 | method: request.method, |
7153 | 6922 | ...option, |
7154 | - }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>; | |
6923 | + }) as unknown as Promise<PostOrderErpOrderZoNingSaveOrUpdateResponseSuccess>; | |
7155 | 6924 | } |
7156 | 6925 | |
7157 | 6926 | /** http method */ |
... | ... | @@ -7161,22 +6930,8 @@ export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { |
7161 | 6930 | return request; |
7162 | 6931 | })(); |
7163 | 6932 | |
7164 | -/** @description request parameter type for postOrderErpRolesAll */ | |
7165 | -export interface PostOrderErpRolesAllOption { | |
7166 | - /** | |
7167 | - * @description | |
7168 | - * queryVO | |
7169 | - */ | |
7170 | - body: { | |
7171 | - /** | |
7172 | - @description | |
7173 | - queryVO */ | |
7174 | - queryVO: AdminRoleQueryVO; | |
7175 | - }; | |
7176 | -} | |
7177 | - | |
7178 | -/** @description response type for postOrderErpRolesAll */ | |
7179 | -export interface PostOrderErpRolesAllResponse { | |
6933 | +/** @description response type for getOrderErpOrderZoNingSelectAll */ | |
6934 | +export interface GetOrderErpOrderZoNingSelectAllResponse { | |
7180 | 6935 | /** |
7181 | 6936 | * @description |
7182 | 6937 | * OK |
... | ... | @@ -7184,11 +6939,6 @@ export interface PostOrderErpRolesAllResponse { |
7184 | 6939 | 200: ServerResult; |
7185 | 6940 | /** |
7186 | 6941 | * @description |
7187 | - * Created | |
7188 | - */ | |
7189 | - 201: any; | |
7190 | - /** | |
7191 | - * @description | |
7192 | 6942 | * Unauthorized |
7193 | 6943 | */ |
7194 | 6944 | 401: any; |
... | ... | @@ -7204,25 +6954,21 @@ export interface PostOrderErpRolesAllResponse { |
7204 | 6954 | 404: any; |
7205 | 6955 | } |
7206 | 6956 | |
7207 | -export type PostOrderErpRolesAllResponseSuccess = | |
7208 | - PostOrderErpRolesAllResponse[200]; | |
6957 | +export type GetOrderErpOrderZoNingSelectAllResponseSuccess = | |
6958 | + GetOrderErpOrderZoNingSelectAllResponse[200]; | |
7209 | 6959 | /** |
7210 | 6960 | * @description |
7211 | - * 返回全部的角色 | |
7212 | - * @tags 系统:角色管理 | |
6961 | + * 查询 | |
6962 | + * @tags order-zo-ning-controller | |
7213 | 6963 | * @produces * |
7214 | - * @consumes application/json | |
7215 | 6964 | */ |
7216 | -export const postOrderErpRolesAll = /* #__PURE__ */ (() => { | |
7217 | - const method = 'post'; | |
7218 | - const url = '/order/erp/roles/all'; | |
7219 | - function request( | |
7220 | - option: PostOrderErpRolesAllOption, | |
7221 | - ): Promise<PostOrderErpRolesAllResponseSuccess> { | |
6965 | +export const getOrderErpOrderZoNingSelectAll = /* #__PURE__ */ (() => { | |
6966 | + const method = 'get'; | |
6967 | + const url = '/order/erp/orderZoNing/selectAll'; | |
6968 | + function request(): Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess> { | |
7222 | 6969 | return requester(request.url, { |
7223 | 6970 | method: request.method, |
7224 | - ...option, | |
7225 | - }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>; | |
6971 | + }) as unknown as Promise<GetOrderErpOrderZoNingSelectAllResponseSuccess>; | |
7226 | 6972 | } |
7227 | 6973 | |
7228 | 6974 | /** http method */ |
... | ... | @@ -7232,22 +6978,8 @@ export const postOrderErpRolesAll = /* #__PURE__ */ (() => { |
7232 | 6978 | return request; |
7233 | 6979 | })(); |
7234 | 6980 | |
7235 | -/** @description request parameter type for postOrderErpRolesAuthMenu */ | |
7236 | -export interface PostOrderErpRolesAuthMenuOption { | |
7237 | - /** | |
7238 | - * @description | |
7239 | - * roleVO | |
7240 | - */ | |
7241 | - body: { | |
7242 | - /** | |
7243 | - @description | |
7244 | - roleVO */ | |
7245 | - roleVO: AdminAuthRoleVO; | |
7246 | - }; | |
7247 | -} | |
7248 | - | |
7249 | -/** @description response type for postOrderErpRolesAuthMenu */ | |
7250 | -export interface PostOrderErpRolesAuthMenuResponse { | |
6981 | +/** @description response type for getOrderErpOrderZoNingSelectProvinceAll */ | |
6982 | +export interface GetOrderErpOrderZoNingSelectProvinceAllResponse { | |
7251 | 6983 | /** |
7252 | 6984 | * @description |
7253 | 6985 | * OK |
... | ... | @@ -7255,11 +6987,6 @@ export interface PostOrderErpRolesAuthMenuResponse { |
7255 | 6987 | 200: ServerResult; |
7256 | 6988 | /** |
7257 | 6989 | * @description |
7258 | - * Created | |
7259 | - */ | |
7260 | - 201: any; | |
7261 | - /** | |
7262 | - * @description | |
7263 | 6990 | * Unauthorized |
7264 | 6991 | */ |
7265 | 6992 | 401: any; |
... | ... | @@ -7275,25 +7002,21 @@ export interface PostOrderErpRolesAuthMenuResponse { |
7275 | 7002 | 404: any; |
7276 | 7003 | } |
7277 | 7004 | |
7278 | -export type PostOrderErpRolesAuthMenuResponseSuccess = | |
7279 | - PostOrderErpRolesAuthMenuResponse[200]; | |
7005 | +export type GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess = | |
7006 | + GetOrderErpOrderZoNingSelectProvinceAllResponse[200]; | |
7280 | 7007 | /** |
7281 | 7008 | * @description |
7282 | - * 授权角色菜单 | |
7283 | - * @tags 系统:角色管理 | |
7009 | + * 查询所有省份 | |
7010 | + * @tags order-zo-ning-controller | |
7284 | 7011 | * @produces * |
7285 | - * @consumes application/json | |
7286 | 7012 | */ |
7287 | -export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { | |
7288 | - const method = 'post'; | |
7289 | - const url = '/order/erp/roles/auth_menu'; | |
7290 | - function request( | |
7291 | - option: PostOrderErpRolesAuthMenuOption, | |
7292 | - ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> { | |
7013 | +export const getOrderErpOrderZoNingSelectProvinceAll = /* #__PURE__ */ (() => { | |
7014 | + const method = 'get'; | |
7015 | + const url = '/order/erp/orderZoNing/selectProvinceAll'; | |
7016 | + function request(): Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess> { | |
7293 | 7017 | return requester(request.url, { |
7294 | 7018 | method: request.method, |
7295 | - ...option, | |
7296 | - }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>; | |
7019 | + }) as unknown as Promise<GetOrderErpOrderZoNingSelectProvinceAllResponseSuccess>; | |
7297 | 7020 | } |
7298 | 7021 | |
7299 | 7022 | /** http method */ |
... | ... | @@ -7303,22 +7026,8 @@ export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { |
7303 | 7026 | return request; |
7304 | 7027 | })(); |
7305 | 7028 | |
7306 | -/** @description request parameter type for postOrderErpRolesDelete */ | |
7307 | -export interface PostOrderErpRolesDeleteOption { | |
7308 | - /** | |
7309 | - * @description | |
7310 | - * queryVO | |
7311 | - */ | |
7312 | - body: { | |
7313 | - /** | |
7314 | - @description | |
7315 | - queryVO */ | |
7316 | - queryVO: AdminRoleQueryVO; | |
7317 | - }; | |
7318 | -} | |
7319 | - | |
7320 | -/** @description response type for postOrderErpRolesDelete */ | |
7321 | -export interface PostOrderErpRolesDeleteResponse { | |
7029 | +/** @description response type for getOrderErpOrderZoNingSelectUserAll */ | |
7030 | +export interface GetOrderErpOrderZoNingSelectUserAllResponse { | |
7322 | 7031 | /** |
7323 | 7032 | * @description |
7324 | 7033 | * OK |
... | ... | @@ -7326,11 +7035,6 @@ export interface PostOrderErpRolesDeleteResponse { |
7326 | 7035 | 200: ServerResult; |
7327 | 7036 | /** |
7328 | 7037 | * @description |
7329 | - * Created | |
7330 | - */ | |
7331 | - 201: any; | |
7332 | - /** | |
7333 | - * @description | |
7334 | 7038 | * Unauthorized |
7335 | 7039 | */ |
7336 | 7040 | 401: any; |
... | ... | @@ -7346,25 +7050,21 @@ export interface PostOrderErpRolesDeleteResponse { |
7346 | 7050 | 404: any; |
7347 | 7051 | } |
7348 | 7052 | |
7349 | -export type PostOrderErpRolesDeleteResponseSuccess = | |
7350 | - PostOrderErpRolesDeleteResponse[200]; | |
7053 | +export type GetOrderErpOrderZoNingSelectUserAllResponseSuccess = | |
7054 | + GetOrderErpOrderZoNingSelectUserAllResponse[200]; | |
7351 | 7055 | /** |
7352 | 7056 | * @description |
7353 | - * 删除角色 | |
7354 | - * @tags 系统:角色管理 | |
7057 | + * 查询所有销售 | |
7058 | + * @tags order-zo-ning-controller | |
7355 | 7059 | * @produces * |
7356 | - * @consumes application/json | |
7357 | 7060 | */ |
7358 | -export const postOrderErpRolesDelete = /* #__PURE__ */ (() => { | |
7359 | - const method = 'post'; | |
7360 | - const url = '/order/erp/roles/delete'; | |
7361 | - function request( | |
7362 | - option: PostOrderErpRolesDeleteOption, | |
7363 | - ): Promise<PostOrderErpRolesDeleteResponseSuccess> { | |
7061 | +export const getOrderErpOrderZoNingSelectUserAll = /* #__PURE__ */ (() => { | |
7062 | + const method = 'get'; | |
7063 | + const url = '/order/erp/orderZoNing/selectUserAll'; | |
7064 | + function request(): Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess> { | |
7364 | 7065 | return requester(request.url, { |
7365 | 7066 | method: request.method, |
7366 | - ...option, | |
7367 | - }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>; | |
7067 | + }) as unknown as Promise<GetOrderErpOrderZoNingSelectUserAllResponseSuccess>; | |
7368 | 7068 | } |
7369 | 7069 | |
7370 | 7070 | /** http method */ |
... | ... | @@ -7374,22 +7074,22 @@ export const postOrderErpRolesDelete = /* #__PURE__ */ (() => { |
7374 | 7074 | return request; |
7375 | 7075 | })(); |
7376 | 7076 | |
7377 | -/** @description request parameter type for postOrderErpRolesDetail */ | |
7378 | -export interface PostOrderErpRolesDetailOption { | |
7077 | +/** @description request parameter type for postOrderErpProfitAnalysis */ | |
7078 | +export interface PostOrderErpProfitAnalysisOption { | |
7379 | 7079 | /** |
7380 | 7080 | * @description |
7381 | - * queryVO | |
7081 | + * orderProfitAnalysisVo | |
7382 | 7082 | */ |
7383 | 7083 | body: { |
7384 | 7084 | /** |
7385 | 7085 | @description |
7386 | - queryVO */ | |
7387 | - queryVO: AdminRoleQueryVO; | |
7086 | + orderProfitAnalysisVo */ | |
7087 | + orderProfitAnalysisVo: OrderProfitAnalysisVo; | |
7388 | 7088 | }; |
7389 | 7089 | } |
7390 | 7090 | |
7391 | -/** @description response type for postOrderErpRolesDetail */ | |
7392 | -export interface PostOrderErpRolesDetailResponse { | |
7091 | +/** @description response type for postOrderErpProfitAnalysis */ | |
7092 | +export interface PostOrderErpProfitAnalysisResponse { | |
7393 | 7093 | /** |
7394 | 7094 | * @description |
7395 | 7095 | * OK |
... | ... | @@ -7417,25 +7117,25 @@ export interface PostOrderErpRolesDetailResponse { |
7417 | 7117 | 404: any; |
7418 | 7118 | } |
7419 | 7119 | |
7420 | -export type PostOrderErpRolesDetailResponseSuccess = | |
7421 | - PostOrderErpRolesDetailResponse[200]; | |
7120 | +export type PostOrderErpProfitAnalysisResponseSuccess = | |
7121 | + PostOrderErpProfitAnalysisResponse[200]; | |
7422 | 7122 | /** |
7423 | 7123 | * @description |
7424 | - * 获取单个role | |
7425 | - * @tags 系统:角色管理 | |
7124 | + * analysis | |
7125 | + * @tags order-profit-controller | |
7426 | 7126 | * @produces * |
7427 | 7127 | * @consumes application/json |
7428 | 7128 | */ |
7429 | -export const postOrderErpRolesDetail = /* #__PURE__ */ (() => { | |
7129 | +export const postOrderErpProfitAnalysis = /* #__PURE__ */ (() => { | |
7430 | 7130 | const method = 'post'; |
7431 | - const url = '/order/erp/roles/detail'; | |
7131 | + const url = '/order/erp/profit/analysis'; | |
7432 | 7132 | function request( |
7433 | - option: PostOrderErpRolesDetailOption, | |
7434 | - ): Promise<PostOrderErpRolesDetailResponseSuccess> { | |
7133 | + option: PostOrderErpProfitAnalysisOption, | |
7134 | + ): Promise<PostOrderErpProfitAnalysisResponseSuccess> { | |
7435 | 7135 | return requester(request.url, { |
7436 | 7136 | method: request.method, |
7437 | 7137 | ...option, |
7438 | - }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>; | |
7138 | + }) as unknown as Promise<PostOrderErpProfitAnalysisResponseSuccess>; | |
7439 | 7139 | } |
7440 | 7140 | |
7441 | 7141 | /** http method */ |
... | ... | @@ -7445,8 +7145,8 @@ export const postOrderErpRolesDetail = /* #__PURE__ */ (() => { |
7445 | 7145 | return request; |
7446 | 7146 | })(); |
7447 | 7147 | |
7448 | -/** @description request parameter type for postOrderErpRolesEdit */ | |
7449 | -export interface PostOrderErpRolesEditOption { | |
7148 | +/** @description request parameter type for postOrderErpRolesAdd */ | |
7149 | +export interface PostOrderErpRolesAddOption { | |
7450 | 7150 | /** |
7451 | 7151 | * @description |
7452 | 7152 | * roleVO |
... | ... | @@ -7459,8 +7159,8 @@ export interface PostOrderErpRolesEditOption { |
7459 | 7159 | }; |
7460 | 7160 | } |
7461 | 7161 | |
7462 | -/** @description response type for postOrderErpRolesEdit */ | |
7463 | -export interface PostOrderErpRolesEditResponse { | |
7162 | +/** @description response type for postOrderErpRolesAdd */ | |
7163 | +export interface PostOrderErpRolesAddResponse { | |
7464 | 7164 | /** |
7465 | 7165 | * @description |
7466 | 7166 | * OK |
... | ... | @@ -7488,25 +7188,25 @@ export interface PostOrderErpRolesEditResponse { |
7488 | 7188 | 404: any; |
7489 | 7189 | } |
7490 | 7190 | |
7491 | -export type PostOrderErpRolesEditResponseSuccess = | |
7492 | - PostOrderErpRolesEditResponse[200]; | |
7191 | +export type PostOrderErpRolesAddResponseSuccess = | |
7192 | + PostOrderErpRolesAddResponse[200]; | |
7493 | 7193 | /** |
7494 | 7194 | * @description |
7495 | - * 修改角色 | |
7195 | + * 新增角色 | |
7496 | 7196 | * @tags 系统:角色管理 |
7497 | 7197 | * @produces * |
7498 | 7198 | * @consumes application/json |
7499 | 7199 | */ |
7500 | -export const postOrderErpRolesEdit = /* #__PURE__ */ (() => { | |
7200 | +export const postOrderErpRolesAdd = /* #__PURE__ */ (() => { | |
7501 | 7201 | const method = 'post'; |
7502 | - const url = '/order/erp/roles/edit'; | |
7202 | + const url = '/order/erp/roles/add'; | |
7503 | 7203 | function request( |
7504 | - option: PostOrderErpRolesEditOption, | |
7505 | - ): Promise<PostOrderErpRolesEditResponseSuccess> { | |
7204 | + option: PostOrderErpRolesAddOption, | |
7205 | + ): Promise<PostOrderErpRolesAddResponseSuccess> { | |
7506 | 7206 | return requester(request.url, { |
7507 | 7207 | method: request.method, |
7508 | 7208 | ...option, |
7509 | - }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>; | |
7209 | + }) as unknown as Promise<PostOrderErpRolesAddResponseSuccess>; | |
7510 | 7210 | } |
7511 | 7211 | |
7512 | 7212 | /** http method */ |
... | ... | @@ -7516,8 +7216,8 @@ export const postOrderErpRolesEdit = /* #__PURE__ */ (() => { |
7516 | 7216 | return request; |
7517 | 7217 | })(); |
7518 | 7218 | |
7519 | -/** @description request parameter type for postOrderErpRolesListByPage */ | |
7520 | -export interface PostOrderErpRolesListByPageOption { | |
7219 | +/** @description request parameter type for postOrderErpRolesAll */ | |
7220 | +export interface PostOrderErpRolesAllOption { | |
7521 | 7221 | /** |
7522 | 7222 | * @description |
7523 | 7223 | * queryVO |
... | ... | @@ -7530,8 +7230,8 @@ export interface PostOrderErpRolesListByPageOption { |
7530 | 7230 | }; |
7531 | 7231 | } |
7532 | 7232 | |
7533 | -/** @description response type for postOrderErpRolesListByPage */ | |
7534 | -export interface PostOrderErpRolesListByPageResponse { | |
7233 | +/** @description response type for postOrderErpRolesAll */ | |
7234 | +export interface PostOrderErpRolesAllResponse { | |
7535 | 7235 | /** |
7536 | 7236 | * @description |
7537 | 7237 | * OK |
... | ... | @@ -7559,25 +7259,25 @@ export interface PostOrderErpRolesListByPageResponse { |
7559 | 7259 | 404: any; |
7560 | 7260 | } |
7561 | 7261 | |
7562 | -export type PostOrderErpRolesListByPageResponseSuccess = | |
7563 | - PostOrderErpRolesListByPageResponse[200]; | |
7262 | +export type PostOrderErpRolesAllResponseSuccess = | |
7263 | + PostOrderErpRolesAllResponse[200]; | |
7564 | 7264 | /** |
7565 | 7265 | * @description |
7566 | - * 查询角色 | |
7266 | + * 返回全部的角色 | |
7567 | 7267 | * @tags 系统:角色管理 |
7568 | 7268 | * @produces * |
7569 | 7269 | * @consumes application/json |
7570 | 7270 | */ |
7571 | -export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => { | |
7271 | +export const postOrderErpRolesAll = /* #__PURE__ */ (() => { | |
7572 | 7272 | const method = 'post'; |
7573 | - const url = '/order/erp/roles/list_by_page'; | |
7273 | + const url = '/order/erp/roles/all'; | |
7574 | 7274 | function request( |
7575 | - option: PostOrderErpRolesListByPageOption, | |
7576 | - ): Promise<PostOrderErpRolesListByPageResponseSuccess> { | |
7275 | + option: PostOrderErpRolesAllOption, | |
7276 | + ): Promise<PostOrderErpRolesAllResponseSuccess> { | |
7577 | 7277 | return requester(request.url, { |
7578 | 7278 | method: request.method, |
7579 | 7279 | ...option, |
7580 | - }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>; | |
7280 | + }) as unknown as Promise<PostOrderErpRolesAllResponseSuccess>; | |
7581 | 7281 | } |
7582 | 7282 | |
7583 | 7283 | /** http method */ |
... | ... | @@ -7587,22 +7287,22 @@ export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => { |
7587 | 7287 | return request; |
7588 | 7288 | })(); |
7589 | 7289 | |
7590 | -/** @description request parameter type for postOrderErpUsersAdd */ | |
7591 | -export interface PostOrderErpUsersAddOption { | |
7290 | +/** @description request parameter type for postOrderErpRolesAuthMenu */ | |
7291 | +export interface PostOrderErpRolesAuthMenuOption { | |
7592 | 7292 | /** |
7593 | 7293 | * @description |
7594 | - * userVO | |
7294 | + * roleVO | |
7595 | 7295 | */ |
7596 | 7296 | body: { |
7597 | 7297 | /** |
7598 | 7298 | @description |
7599 | - userVO */ | |
7600 | - userVO: AdminUserVO; | |
7299 | + roleVO */ | |
7300 | + roleVO: AdminAuthRoleVO; | |
7601 | 7301 | }; |
7602 | 7302 | } |
7603 | 7303 | |
7604 | -/** @description response type for postOrderErpUsersAdd */ | |
7605 | -export interface PostOrderErpUsersAddResponse { | |
7304 | +/** @description response type for postOrderErpRolesAuthMenu */ | |
7305 | +export interface PostOrderErpRolesAuthMenuResponse { | |
7606 | 7306 | /** |
7607 | 7307 | * @description |
7608 | 7308 | * OK |
... | ... | @@ -7630,25 +7330,25 @@ export interface PostOrderErpUsersAddResponse { |
7630 | 7330 | 404: any; |
7631 | 7331 | } |
7632 | 7332 | |
7633 | -export type PostOrderErpUsersAddResponseSuccess = | |
7634 | - PostOrderErpUsersAddResponse[200]; | |
7333 | +export type PostOrderErpRolesAuthMenuResponseSuccess = | |
7334 | + PostOrderErpRolesAuthMenuResponse[200]; | |
7635 | 7335 | /** |
7636 | 7336 | * @description |
7637 | - * 新增用户 | |
7638 | - * @tags 系统:用户管理 | |
7337 | + * 授权角色菜单 | |
7338 | + * @tags 系统:角色管理 | |
7639 | 7339 | * @produces * |
7640 | 7340 | * @consumes application/json |
7641 | 7341 | */ |
7642 | -export const postOrderErpUsersAdd = /* #__PURE__ */ (() => { | |
7342 | +export const postOrderErpRolesAuthMenu = /* #__PURE__ */ (() => { | |
7643 | 7343 | const method = 'post'; |
7644 | - const url = '/order/erp/users/add'; | |
7344 | + const url = '/order/erp/roles/auth_menu'; | |
7645 | 7345 | function request( |
7646 | - option: PostOrderErpUsersAddOption, | |
7647 | - ): Promise<PostOrderErpUsersAddResponseSuccess> { | |
7346 | + option: PostOrderErpRolesAuthMenuOption, | |
7347 | + ): Promise<PostOrderErpRolesAuthMenuResponseSuccess> { | |
7648 | 7348 | return requester(request.url, { |
7649 | 7349 | method: request.method, |
7650 | 7350 | ...option, |
7651 | - }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>; | |
7351 | + }) as unknown as Promise<PostOrderErpRolesAuthMenuResponseSuccess>; | |
7652 | 7352 | } |
7653 | 7353 | |
7654 | 7354 | /** http method */ |
... | ... | @@ -7658,22 +7358,22 @@ export const postOrderErpUsersAdd = /* #__PURE__ */ (() => { |
7658 | 7358 | return request; |
7659 | 7359 | })(); |
7660 | 7360 | |
7661 | -/** @description request parameter type for postOrderErpUsersAuthRole */ | |
7662 | -export interface PostOrderErpUsersAuthRoleOption { | |
7361 | +/** @description request parameter type for postOrderErpRolesDelete */ | |
7362 | +export interface PostOrderErpRolesDeleteOption { | |
7663 | 7363 | /** |
7664 | 7364 | * @description |
7665 | - * userVO | |
7365 | + * queryVO | |
7666 | 7366 | */ |
7667 | 7367 | body: { |
7668 | 7368 | /** |
7669 | 7369 | @description |
7670 | - userVO */ | |
7671 | - userVO: AdminAuthUserVO; | |
7370 | + queryVO */ | |
7371 | + queryVO: AdminRoleQueryVO; | |
7672 | 7372 | }; |
7673 | 7373 | } |
7674 | 7374 | |
7675 | -/** @description response type for postOrderErpUsersAuthRole */ | |
7676 | -export interface PostOrderErpUsersAuthRoleResponse { | |
7375 | +/** @description response type for postOrderErpRolesDelete */ | |
7376 | +export interface PostOrderErpRolesDeleteResponse { | |
7677 | 7377 | /** |
7678 | 7378 | * @description |
7679 | 7379 | * OK |
... | ... | @@ -7701,25 +7401,25 @@ export interface PostOrderErpUsersAuthRoleResponse { |
7701 | 7401 | 404: any; |
7702 | 7402 | } |
7703 | 7403 | |
7704 | -export type PostOrderErpUsersAuthRoleResponseSuccess = | |
7705 | - PostOrderErpUsersAuthRoleResponse[200]; | |
7404 | +export type PostOrderErpRolesDeleteResponseSuccess = | |
7405 | + PostOrderErpRolesDeleteResponse[200]; | |
7706 | 7406 | /** |
7707 | 7407 | * @description |
7708 | - * 授权角色 | |
7709 | - * @tags 系统:用户管理 | |
7408 | + * 删除角色 | |
7409 | + * @tags 系统:角色管理 | |
7710 | 7410 | * @produces * |
7711 | 7411 | * @consumes application/json |
7712 | 7412 | */ |
7713 | -export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => { | |
7413 | +export const postOrderErpRolesDelete = /* #__PURE__ */ (() => { | |
7714 | 7414 | const method = 'post'; |
7715 | - const url = '/order/erp/users/auth_role'; | |
7415 | + const url = '/order/erp/roles/delete'; | |
7716 | 7416 | function request( |
7717 | - option: PostOrderErpUsersAuthRoleOption, | |
7718 | - ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> { | |
7417 | + option: PostOrderErpRolesDeleteOption, | |
7418 | + ): Promise<PostOrderErpRolesDeleteResponseSuccess> { | |
7719 | 7419 | return requester(request.url, { |
7720 | 7420 | method: request.method, |
7721 | 7421 | ...option, |
7722 | - }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>; | |
7422 | + }) as unknown as Promise<PostOrderErpRolesDeleteResponseSuccess>; | |
7723 | 7423 | } |
7724 | 7424 | |
7725 | 7425 | /** http method */ |
... | ... | @@ -7729,8 +7429,8 @@ export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => { |
7729 | 7429 | return request; |
7730 | 7430 | })(); |
7731 | 7431 | |
7732 | -/** @description request parameter type for postOrderErpUsersDelete */ | |
7733 | -export interface PostOrderErpUsersDeleteOption { | |
7432 | +/** @description request parameter type for postOrderErpRolesDetail */ | |
7433 | +export interface PostOrderErpRolesDetailOption { | |
7734 | 7434 | /** |
7735 | 7435 | * @description |
7736 | 7436 | * queryVO |
... | ... | @@ -7739,12 +7439,12 @@ export interface PostOrderErpUsersDeleteOption { |
7739 | 7439 | /** |
7740 | 7440 | @description |
7741 | 7441 | queryVO */ |
7742 | - queryVO: AdminUserQueryVO; | |
7442 | + queryVO: AdminRoleQueryVO; | |
7743 | 7443 | }; |
7744 | 7444 | } |
7745 | 7445 | |
7746 | -/** @description response type for postOrderErpUsersDelete */ | |
7747 | -export interface PostOrderErpUsersDeleteResponse { | |
7446 | +/** @description response type for postOrderErpRolesDetail */ | |
7447 | +export interface PostOrderErpRolesDetailResponse { | |
7748 | 7448 | /** |
7749 | 7449 | * @description |
7750 | 7450 | * OK |
... | ... | @@ -7772,25 +7472,25 @@ export interface PostOrderErpUsersDeleteResponse { |
7772 | 7472 | 404: any; |
7773 | 7473 | } |
7774 | 7474 | |
7775 | -export type PostOrderErpUsersDeleteResponseSuccess = | |
7776 | - PostOrderErpUsersDeleteResponse[200]; | |
7475 | +export type PostOrderErpRolesDetailResponseSuccess = | |
7476 | + PostOrderErpRolesDetailResponse[200]; | |
7777 | 7477 | /** |
7778 | 7478 | * @description |
7779 | - * 删除用户 | |
7780 | - * @tags 系统:用户管理 | |
7479 | + * 获取单个role | |
7480 | + * @tags 系统:角色管理 | |
7781 | 7481 | * @produces * |
7782 | 7482 | * @consumes application/json |
7783 | 7483 | */ |
7784 | -export const postOrderErpUsersDelete = /* #__PURE__ */ (() => { | |
7484 | +export const postOrderErpRolesDetail = /* #__PURE__ */ (() => { | |
7785 | 7485 | const method = 'post'; |
7786 | - const url = '/order/erp/users/delete'; | |
7486 | + const url = '/order/erp/roles/detail'; | |
7787 | 7487 | function request( |
7788 | - option: PostOrderErpUsersDeleteOption, | |
7789 | - ): Promise<PostOrderErpUsersDeleteResponseSuccess> { | |
7488 | + option: PostOrderErpRolesDetailOption, | |
7489 | + ): Promise<PostOrderErpRolesDetailResponseSuccess> { | |
7790 | 7490 | return requester(request.url, { |
7791 | 7491 | method: request.method, |
7792 | 7492 | ...option, |
7793 | - }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>; | |
7493 | + }) as unknown as Promise<PostOrderErpRolesDetailResponseSuccess>; | |
7794 | 7494 | } |
7795 | 7495 | |
7796 | 7496 | /** http method */ |
... | ... | @@ -7800,22 +7500,22 @@ export const postOrderErpUsersDelete = /* #__PURE__ */ (() => { |
7800 | 7500 | return request; |
7801 | 7501 | })(); |
7802 | 7502 | |
7803 | -/** @description request parameter type for postOrderErpUsersEdit */ | |
7804 | -export interface PostOrderErpUsersEditOption { | |
7503 | +/** @description request parameter type for postOrderErpRolesEdit */ | |
7504 | +export interface PostOrderErpRolesEditOption { | |
7805 | 7505 | /** |
7806 | 7506 | * @description |
7807 | - * userVO | |
7507 | + * roleVO | |
7808 | 7508 | */ |
7809 | 7509 | body: { |
7810 | 7510 | /** |
7811 | 7511 | @description |
7812 | - userVO */ | |
7813 | - userVO: AdminUserVO; | |
7512 | + roleVO */ | |
7513 | + roleVO: AdminRoleVO; | |
7814 | 7514 | }; |
7815 | 7515 | } |
7816 | 7516 | |
7817 | -/** @description response type for postOrderErpUsersEdit */ | |
7818 | -export interface PostOrderErpUsersEditResponse { | |
7517 | +/** @description response type for postOrderErpRolesEdit */ | |
7518 | +export interface PostOrderErpRolesEditResponse { | |
7819 | 7519 | /** |
7820 | 7520 | * @description |
7821 | 7521 | * OK |
... | ... | @@ -7843,25 +7543,25 @@ export interface PostOrderErpUsersEditResponse { |
7843 | 7543 | 404: any; |
7844 | 7544 | } |
7845 | 7545 | |
7846 | -export type PostOrderErpUsersEditResponseSuccess = | |
7847 | - PostOrderErpUsersEditResponse[200]; | |
7546 | +export type PostOrderErpRolesEditResponseSuccess = | |
7547 | + PostOrderErpRolesEditResponse[200]; | |
7848 | 7548 | /** |
7849 | 7549 | * @description |
7850 | - * 修改用户 | |
7851 | - * @tags 系统:用户管理 | |
7550 | + * 修改角色 | |
7551 | + * @tags 系统:角色管理 | |
7852 | 7552 | * @produces * |
7853 | 7553 | * @consumes application/json |
7854 | 7554 | */ |
7855 | -export const postOrderErpUsersEdit = /* #__PURE__ */ (() => { | |
7555 | +export const postOrderErpRolesEdit = /* #__PURE__ */ (() => { | |
7856 | 7556 | const method = 'post'; |
7857 | - const url = '/order/erp/users/edit'; | |
7557 | + const url = '/order/erp/roles/edit'; | |
7858 | 7558 | function request( |
7859 | - option: PostOrderErpUsersEditOption, | |
7860 | - ): Promise<PostOrderErpUsersEditResponseSuccess> { | |
7559 | + option: PostOrderErpRolesEditOption, | |
7560 | + ): Promise<PostOrderErpRolesEditResponseSuccess> { | |
7861 | 7561 | return requester(request.url, { |
7862 | 7562 | method: request.method, |
7863 | 7563 | ...option, |
7864 | - }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>; | |
7564 | + }) as unknown as Promise<PostOrderErpRolesEditResponseSuccess>; | |
7865 | 7565 | } |
7866 | 7566 | |
7867 | 7567 | /** http method */ |
... | ... | @@ -7871,8 +7571,8 @@ export const postOrderErpUsersEdit = /* #__PURE__ */ (() => { |
7871 | 7571 | return request; |
7872 | 7572 | })(); |
7873 | 7573 | |
7874 | -/** @description request parameter type for postOrderErpUsersListByPage */ | |
7875 | -export interface PostOrderErpUsersListByPageOption { | |
7574 | +/** @description request parameter type for postOrderErpRolesListByPage */ | |
7575 | +export interface PostOrderErpRolesListByPageOption { | |
7876 | 7576 | /** |
7877 | 7577 | * @description |
7878 | 7578 | * queryVO |
... | ... | @@ -7881,83 +7581,12 @@ export interface PostOrderErpUsersListByPageOption { |
7881 | 7581 | /** |
7882 | 7582 | @description |
7883 | 7583 | queryVO */ |
7884 | - queryVO: AdminUserQueryVO; | |
7885 | - }; | |
7886 | -} | |
7887 | - | |
7888 | -/** @description response type for postOrderErpUsersListByPage */ | |
7889 | -export interface PostOrderErpUsersListByPageResponse { | |
7890 | - /** | |
7891 | - * @description | |
7892 | - * OK | |
7893 | - */ | |
7894 | - 200: ServerResult; | |
7895 | - /** | |
7896 | - * @description | |
7897 | - * Created | |
7898 | - */ | |
7899 | - 201: any; | |
7900 | - /** | |
7901 | - * @description | |
7902 | - * Unauthorized | |
7903 | - */ | |
7904 | - 401: any; | |
7905 | - /** | |
7906 | - * @description | |
7907 | - * Forbidden | |
7908 | - */ | |
7909 | - 403: any; | |
7910 | - /** | |
7911 | - * @description | |
7912 | - * Not Found | |
7913 | - */ | |
7914 | - 404: any; | |
7915 | -} | |
7916 | - | |
7917 | -export type PostOrderErpUsersListByPageResponseSuccess = | |
7918 | - PostOrderErpUsersListByPageResponse[200]; | |
7919 | -/** | |
7920 | - * @description | |
7921 | - * 查询用户 | |
7922 | - * @tags 系统:用户管理 | |
7923 | - * @produces * | |
7924 | - * @consumes application/json | |
7925 | - */ | |
7926 | -export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => { | |
7927 | - const method = 'post'; | |
7928 | - const url = '/order/erp/users/list_by_page'; | |
7929 | - function request( | |
7930 | - option: PostOrderErpUsersListByPageOption, | |
7931 | - ): Promise<PostOrderErpUsersListByPageResponseSuccess> { | |
7932 | - return requester(request.url, { | |
7933 | - method: request.method, | |
7934 | - ...option, | |
7935 | - }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>; | |
7936 | - } | |
7937 | - | |
7938 | - /** http method */ | |
7939 | - request.method = method; | |
7940 | - /** request url */ | |
7941 | - request.url = url; | |
7942 | - return request; | |
7943 | -})(); | |
7944 | - | |
7945 | -/** @description request parameter type for postOrderErpUsersReset */ | |
7946 | -export interface PostOrderErpUsersResetOption { | |
7947 | - /** | |
7948 | - * @description | |
7949 | - * resetPwdVO | |
7950 | - */ | |
7951 | - body: { | |
7952 | - /** | |
7953 | - @description | |
7954 | - resetPwdVO */ | |
7955 | - resetPwdVO: ResetPwdVO; | |
7584 | + queryVO: AdminRoleQueryVO; | |
7956 | 7585 | }; |
7957 | 7586 | } |
7958 | 7587 | |
7959 | -/** @description response type for postOrderErpUsersReset */ | |
7960 | -export interface PostOrderErpUsersResetResponse { | |
7588 | +/** @description response type for postOrderErpRolesListByPage */ | |
7589 | +export interface PostOrderErpRolesListByPageResponse { | |
7961 | 7590 | /** |
7962 | 7591 | * @description |
7963 | 7592 | * OK |
... | ... | @@ -7985,25 +7614,25 @@ export interface PostOrderErpUsersResetResponse { |
7985 | 7614 | 404: any; |
7986 | 7615 | } |
7987 | 7616 | |
7988 | -export type PostOrderErpUsersResetResponseSuccess = | |
7989 | - PostOrderErpUsersResetResponse[200]; | |
7617 | +export type PostOrderErpRolesListByPageResponseSuccess = | |
7618 | + PostOrderErpRolesListByPageResponse[200]; | |
7990 | 7619 | /** |
7991 | 7620 | * @description |
7992 | - * 重置密码 | |
7993 | - * @tags 系统:用户管理 | |
7621 | + * 查询角色 | |
7622 | + * @tags 系统:角色管理 | |
7994 | 7623 | * @produces * |
7995 | 7624 | * @consumes application/json |
7996 | 7625 | */ |
7997 | -export const postOrderErpUsersReset = /* #__PURE__ */ (() => { | |
7626 | +export const postOrderErpRolesListByPage = /* #__PURE__ */ (() => { | |
7998 | 7627 | const method = 'post'; |
7999 | - const url = '/order/erp/users/reset'; | |
7628 | + const url = '/order/erp/roles/list_by_page'; | |
8000 | 7629 | function request( |
8001 | - option: PostOrderErpUsersResetOption, | |
8002 | - ): Promise<PostOrderErpUsersResetResponseSuccess> { | |
7630 | + option: PostOrderErpRolesListByPageOption, | |
7631 | + ): Promise<PostOrderErpRolesListByPageResponseSuccess> { | |
8003 | 7632 | return requester(request.url, { |
8004 | 7633 | method: request.method, |
8005 | 7634 | ...option, |
8006 | - }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>; | |
7635 | + }) as unknown as Promise<PostOrderErpRolesListByPageResponseSuccess>; | |
8007 | 7636 | } |
8008 | 7637 | |
8009 | 7638 | /** http method */ |
... | ... | @@ -8013,22 +7642,22 @@ export const postOrderErpUsersReset = /* #__PURE__ */ (() => { |
8013 | 7642 | return request; |
8014 | 7643 | })(); |
8015 | 7644 | |
8016 | -/** @description request parameter type for postOrderErpUsersUpdatePass */ | |
8017 | -export interface PostOrderErpUsersUpdatePassOption { | |
7645 | +/** @description request parameter type for postOrderErpUsersAdd */ | |
7646 | +export interface PostOrderErpUsersAddOption { | |
8018 | 7647 | /** |
8019 | 7648 | * @description |
8020 | - * pwdVO | |
7649 | + * userVO | |
8021 | 7650 | */ |
8022 | 7651 | body: { |
8023 | 7652 | /** |
8024 | 7653 | @description |
8025 | - pwdVO */ | |
8026 | - pwdVO: UpdatePwdVO; | |
7654 | + userVO */ | |
7655 | + userVO: AdminUserVO; | |
8027 | 7656 | }; |
8028 | 7657 | } |
8029 | 7658 | |
8030 | -/** @description response type for postOrderErpUsersUpdatePass */ | |
8031 | -export interface PostOrderErpUsersUpdatePassResponse { | |
7659 | +/** @description response type for postOrderErpUsersAdd */ | |
7660 | +export interface PostOrderErpUsersAddResponse { | |
8032 | 7661 | /** |
8033 | 7662 | * @description |
8034 | 7663 | * OK |
... | ... | @@ -8056,518 +7685,25 @@ export interface PostOrderErpUsersUpdatePassResponse { |
8056 | 7685 | 404: any; |
8057 | 7686 | } |
8058 | 7687 | |
8059 | -export type PostOrderErpUsersUpdatePassResponseSuccess = | |
8060 | - PostOrderErpUsersUpdatePassResponse[200]; | |
7688 | +export type PostOrderErpUsersAddResponseSuccess = | |
7689 | + PostOrderErpUsersAddResponse[200]; | |
8061 | 7690 | /** |
8062 | 7691 | * @description |
8063 | - * 修改密码 | |
7692 | + * 新增用户 | |
8064 | 7693 | * @tags 系统:用户管理 |
8065 | 7694 | * @produces * |
8066 | 7695 | * @consumes application/json |
8067 | 7696 | */ |
8068 | -export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { | |
8069 | - const method = 'post'; | |
8070 | - const url = '/order/erp/users/update_pass'; | |
8071 | - function request( | |
8072 | - option: PostOrderErpUsersUpdatePassOption, | |
8073 | - ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> { | |
8074 | - return requester(request.url, { | |
8075 | - method: request.method, | |
8076 | - ...option, | |
8077 | - }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>; | |
8078 | - } | |
8079 | - | |
8080 | - /** http method */ | |
8081 | - request.method = method; | |
8082 | - /** request url */ | |
8083 | - request.url = url; | |
8084 | - return request; | |
8085 | -})(); | |
8086 | - | |
8087 | -/** @description request parameter type for postOrderImportImportInvoiceProject */ | |
8088 | -export interface PostOrderImportImportInvoiceProjectOption { | |
8089 | - /** | |
8090 | - * @description | |
8091 | - * file | |
8092 | - */ | |
8093 | - formData: { | |
8094 | - /** | |
8095 | - @description | |
8096 | - file */ | |
8097 | - file: File; | |
8098 | - }; | |
8099 | -} | |
8100 | - | |
8101 | -/** @description response type for postOrderImportImportInvoiceProject */ | |
8102 | -export interface PostOrderImportImportInvoiceProjectResponse { | |
8103 | - /** | |
8104 | - * @description | |
8105 | - * OK | |
8106 | - */ | |
8107 | - 200: ServerResult; | |
8108 | - /** | |
8109 | - * @description | |
8110 | - * Created | |
8111 | - */ | |
8112 | - 201: any; | |
8113 | - /** | |
8114 | - * @description | |
8115 | - * Unauthorized | |
8116 | - */ | |
8117 | - 401: any; | |
8118 | - /** | |
8119 | - * @description | |
8120 | - * Forbidden | |
8121 | - */ | |
8122 | - 403: any; | |
8123 | - /** | |
8124 | - * @description | |
8125 | - * Not Found | |
8126 | - */ | |
8127 | - 404: any; | |
8128 | -} | |
8129 | - | |
8130 | -export type PostOrderImportImportInvoiceProjectResponseSuccess = | |
8131 | - PostOrderImportImportInvoiceProjectResponse[200]; | |
8132 | -/** | |
8133 | - * @description | |
8134 | - * 导入发票项目 | |
8135 | - * @tags 导入 | |
8136 | - * @produces * | |
8137 | - * @consumes multipart/form-data | |
8138 | - */ | |
8139 | -export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() => { | |
7697 | +export const postOrderErpUsersAdd = /* #__PURE__ */ (() => { | |
8140 | 7698 | const method = 'post'; |
8141 | - const url = '/order/import/importInvoiceProject'; | |
7699 | + const url = '/order/erp/users/add'; | |
8142 | 7700 | function request( |
8143 | - option: PostOrderImportImportInvoiceProjectOption, | |
8144 | - ): Promise<PostOrderImportImportInvoiceProjectResponseSuccess> { | |
8145 | - return requester(request.url, { | |
8146 | - method: request.method, | |
8147 | - ...option, | |
8148 | - }) as unknown as Promise<PostOrderImportImportInvoiceProjectResponseSuccess>; | |
8149 | - } | |
8150 | - | |
8151 | - /** http method */ | |
8152 | - request.method = method; | |
8153 | - /** request url */ | |
8154 | - request.url = url; | |
8155 | - return request; | |
8156 | -})(); | |
8157 | - | |
8158 | -/** @description request parameter type for postOrderImportImportWeightAndVolume */ | |
8159 | -export interface PostOrderImportImportWeightAndVolumeOption { | |
8160 | - /** | |
8161 | - * @description | |
8162 | - * file | |
8163 | - */ | |
8164 | - formData: { | |
8165 | - /** | |
8166 | - @description | |
8167 | - file */ | |
8168 | - file: File; | |
8169 | - }; | |
8170 | -} | |
8171 | - | |
8172 | -/** @description response type for postOrderImportImportWeightAndVolume */ | |
8173 | -export interface PostOrderImportImportWeightAndVolumeResponse { | |
8174 | - /** | |
8175 | - * @description | |
8176 | - * OK | |
8177 | - */ | |
8178 | - 200: ServerResult; | |
8179 | - /** | |
8180 | - * @description | |
8181 | - * Created | |
8182 | - */ | |
8183 | - 201: any; | |
8184 | - /** | |
8185 | - * @description | |
8186 | - * Unauthorized | |
8187 | - */ | |
8188 | - 401: any; | |
8189 | - /** | |
8190 | - * @description | |
8191 | - * Forbidden | |
8192 | - */ | |
8193 | - 403: any; | |
8194 | - /** | |
8195 | - * @description | |
8196 | - * Not Found | |
8197 | - */ | |
8198 | - 404: any; | |
8199 | -} | |
8200 | - | |
8201 | -export type PostOrderImportImportWeightAndVolumeResponseSuccess = | |
8202 | - PostOrderImportImportWeightAndVolumeResponse[200]; | |
8203 | -/** | |
8204 | - * @description | |
8205 | - * 导入重量和体积 | |
8206 | - * @tags 导入 | |
8207 | - * @produces * | |
8208 | - * @consumes multipart/form-data | |
8209 | - */ | |
8210 | -export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => { | |
8211 | - const method = 'post'; | |
8212 | - const url = '/order/import/importWeightAndVolume'; | |
8213 | - function request( | |
8214 | - option: PostOrderImportImportWeightAndVolumeOption, | |
8215 | - ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> { | |
8216 | - return requester(request.url, { | |
8217 | - method: request.method, | |
8218 | - ...option, | |
8219 | - }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>; | |
8220 | - } | |
8221 | - | |
8222 | - /** http method */ | |
8223 | - request.method = method; | |
8224 | - /** request url */ | |
8225 | - request.url = url; | |
8226 | - return request; | |
8227 | -})(); | |
8228 | - | |
8229 | -/** @description request parameter type for postPrepaidAudit */ | |
8230 | -export interface PostPrepaidAuditOption { | |
8231 | - /** | |
8232 | - * @description | |
8233 | - * request | |
8234 | - */ | |
8235 | - body: { | |
8236 | - /** | |
8237 | - @description | |
8238 | - request */ | |
8239 | - request: SalesRechargePrepaymentAuditRequest; | |
8240 | - }; | |
8241 | -} | |
8242 | - | |
8243 | -/** @description response type for postPrepaidAudit */ | |
8244 | -export interface PostPrepaidAuditResponse { | |
8245 | - /** | |
8246 | - * @description | |
8247 | - * OK | |
8248 | - */ | |
8249 | - 200: ServerResult; | |
8250 | - /** | |
8251 | - * @description | |
8252 | - * Created | |
8253 | - */ | |
8254 | - 201: any; | |
8255 | - /** | |
8256 | - * @description | |
8257 | - * Unauthorized | |
8258 | - */ | |
8259 | - 401: any; | |
8260 | - /** | |
8261 | - * @description | |
8262 | - * Forbidden | |
8263 | - */ | |
8264 | - 403: any; | |
8265 | - /** | |
8266 | - * @description | |
8267 | - * Not Found | |
8268 | - */ | |
8269 | - 404: any; | |
8270 | -} | |
8271 | - | |
8272 | -export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200]; | |
8273 | -/** | |
8274 | - * @description | |
8275 | - * 财务审核 | |
8276 | - * @tags prepaid-controller | |
8277 | - * @produces * | |
8278 | - * @consumes application/json | |
8279 | - */ | |
8280 | -export const postPrepaidAudit = /* #__PURE__ */ (() => { | |
8281 | - const method = 'post'; | |
8282 | - const url = '/prepaid/audit'; | |
8283 | - function request( | |
8284 | - option: PostPrepaidAuditOption, | |
8285 | - ): Promise<PostPrepaidAuditResponseSuccess> { | |
8286 | - return requester(request.url, { | |
8287 | - method: request.method, | |
8288 | - ...option, | |
8289 | - }) as unknown as Promise<PostPrepaidAuditResponseSuccess>; | |
8290 | - } | |
8291 | - | |
8292 | - /** http method */ | |
8293 | - request.method = method; | |
8294 | - /** request url */ | |
8295 | - request.url = url; | |
8296 | - return request; | |
8297 | -})(); | |
8298 | - | |
8299 | -/** @description request parameter type for postPrepaidCreate */ | |
8300 | -export interface PostPrepaidCreateOption { | |
8301 | - /** | |
8302 | - * @description | |
8303 | - * request | |
8304 | - */ | |
8305 | - body: { | |
8306 | - /** | |
8307 | - @description | |
8308 | - request */ | |
8309 | - request: SalesRechargePrepaymentCreateRequest; | |
8310 | - }; | |
8311 | -} | |
8312 | - | |
8313 | -/** @description response type for postPrepaidCreate */ | |
8314 | -export interface PostPrepaidCreateResponse { | |
8315 | - /** | |
8316 | - * @description | |
8317 | - * OK | |
8318 | - */ | |
8319 | - 200: ServerResult; | |
8320 | - /** | |
8321 | - * @description | |
8322 | - * Created | |
8323 | - */ | |
8324 | - 201: any; | |
8325 | - /** | |
8326 | - * @description | |
8327 | - * Unauthorized | |
8328 | - */ | |
8329 | - 401: any; | |
8330 | - /** | |
8331 | - * @description | |
8332 | - * Forbidden | |
8333 | - */ | |
8334 | - 403: any; | |
8335 | - /** | |
8336 | - * @description | |
8337 | - * Not Found | |
8338 | - */ | |
8339 | - 404: any; | |
8340 | -} | |
8341 | - | |
8342 | -export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200]; | |
8343 | -/** | |
8344 | - * @description | |
8345 | - * 新增预存 | |
8346 | - * @tags prepaid-controller | |
8347 | - * @produces * | |
8348 | - * @consumes application/json | |
8349 | - */ | |
8350 | -export const postPrepaidCreate = /* #__PURE__ */ (() => { | |
8351 | - const method = 'post'; | |
8352 | - const url = '/prepaid/create'; | |
8353 | - function request( | |
8354 | - option: PostPrepaidCreateOption, | |
8355 | - ): Promise<PostPrepaidCreateResponseSuccess> { | |
8356 | - return requester(request.url, { | |
8357 | - method: request.method, | |
8358 | - ...option, | |
8359 | - }) as unknown as Promise<PostPrepaidCreateResponseSuccess>; | |
8360 | - } | |
8361 | - | |
8362 | - /** http method */ | |
8363 | - request.method = method; | |
8364 | - /** request url */ | |
8365 | - request.url = url; | |
8366 | - return request; | |
8367 | -})(); | |
8368 | - | |
8369 | -/** @description request parameter type for postPrepaidDelete */ | |
8370 | -export interface PostPrepaidDeleteOption { | |
8371 | - /** | |
8372 | - * @description | |
8373 | - * request | |
8374 | - */ | |
8375 | - body: { | |
8376 | - /** | |
8377 | - @description | |
8378 | - request */ | |
8379 | - request: SalesRechargePrepaymentDeleteRequest; | |
8380 | - }; | |
8381 | -} | |
8382 | - | |
8383 | -/** @description response type for postPrepaidDelete */ | |
8384 | -export interface PostPrepaidDeleteResponse { | |
8385 | - /** | |
8386 | - * @description | |
8387 | - * OK | |
8388 | - */ | |
8389 | - 200: ServerResult; | |
8390 | - /** | |
8391 | - * @description | |
8392 | - * Created | |
8393 | - */ | |
8394 | - 201: any; | |
8395 | - /** | |
8396 | - * @description | |
8397 | - * Unauthorized | |
8398 | - */ | |
8399 | - 401: any; | |
8400 | - /** | |
8401 | - * @description | |
8402 | - * Forbidden | |
8403 | - */ | |
8404 | - 403: any; | |
8405 | - /** | |
8406 | - * @description | |
8407 | - * Not Found | |
8408 | - */ | |
8409 | - 404: any; | |
8410 | -} | |
8411 | - | |
8412 | -export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200]; | |
8413 | -/** | |
8414 | - * @description | |
8415 | - * 删除预存 | |
8416 | - * @tags prepaid-controller | |
8417 | - * @produces * | |
8418 | - * @consumes application/json | |
8419 | - */ | |
8420 | -export const postPrepaidDelete = /* #__PURE__ */ (() => { | |
8421 | - const method = 'post'; | |
8422 | - const url = '/prepaid/delete'; | |
8423 | - function request( | |
8424 | - option: PostPrepaidDeleteOption, | |
8425 | - ): Promise<PostPrepaidDeleteResponseSuccess> { | |
8426 | - return requester(request.url, { | |
8427 | - method: request.method, | |
8428 | - ...option, | |
8429 | - }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>; | |
8430 | - } | |
8431 | - | |
8432 | - /** http method */ | |
8433 | - request.method = method; | |
8434 | - /** request url */ | |
8435 | - request.url = url; | |
8436 | - return request; | |
8437 | -})(); | |
8438 | - | |
8439 | -/** @description request parameter type for postPrepaidList */ | |
8440 | -export interface PostPrepaidListOption { | |
8441 | - /** | |
8442 | - * @description | |
8443 | - * request | |
8444 | - */ | |
8445 | - body: { | |
8446 | - /** | |
8447 | - @description | |
8448 | - request */ | |
8449 | - request: SalesRechargePrepaymentRequest; | |
8450 | - }; | |
8451 | -} | |
8452 | - | |
8453 | -/** @description response type for postPrepaidList */ | |
8454 | -export interface PostPrepaidListResponse { | |
8455 | - /** | |
8456 | - * @description | |
8457 | - * OK | |
8458 | - */ | |
8459 | - 200: ServerResult; | |
8460 | - /** | |
8461 | - * @description | |
8462 | - * Created | |
8463 | - */ | |
8464 | - 201: any; | |
8465 | - /** | |
8466 | - * @description | |
8467 | - * Unauthorized | |
8468 | - */ | |
8469 | - 401: any; | |
8470 | - /** | |
8471 | - * @description | |
8472 | - * Forbidden | |
8473 | - */ | |
8474 | - 403: any; | |
8475 | - /** | |
8476 | - * @description | |
8477 | - * Not Found | |
8478 | - */ | |
8479 | - 404: any; | |
8480 | -} | |
8481 | - | |
8482 | -export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200]; | |
8483 | -/** | |
8484 | - * @description | |
8485 | - * 查询列表 | |
8486 | - * @tags prepaid-controller | |
8487 | - * @produces * | |
8488 | - * @consumes application/json | |
8489 | - */ | |
8490 | -export const postPrepaidList = /* #__PURE__ */ (() => { | |
8491 | - const method = 'post'; | |
8492 | - const url = '/prepaid/list'; | |
8493 | - function request( | |
8494 | - option: PostPrepaidListOption, | |
8495 | - ): Promise<PostPrepaidListResponseSuccess> { | |
8496 | - return requester(request.url, { | |
8497 | - method: request.method, | |
8498 | - ...option, | |
8499 | - }) as unknown as Promise<PostPrepaidListResponseSuccess>; | |
8500 | - } | |
8501 | - | |
8502 | - /** http method */ | |
8503 | - request.method = method; | |
8504 | - /** request url */ | |
8505 | - request.url = url; | |
8506 | - return request; | |
8507 | -})(); | |
8508 | - | |
8509 | -/** @description request parameter type for postPrepaidPhoneAvailableList */ | |
8510 | -export interface PostPrepaidPhoneAvailableListOption { | |
8511 | - /** | |
8512 | - * @description | |
8513 | - * request | |
8514 | - */ | |
8515 | - body: { | |
8516 | - /** | |
8517 | - @description | |
8518 | - request */ | |
8519 | - request: SalesRechargePrepaymentAuditRequest; | |
8520 | - }; | |
8521 | -} | |
8522 | - | |
8523 | -/** @description response type for postPrepaidPhoneAvailableList */ | |
8524 | -export interface PostPrepaidPhoneAvailableListResponse { | |
8525 | - /** | |
8526 | - * @description | |
8527 | - * OK | |
8528 | - */ | |
8529 | - 200: ServerResult; | |
8530 | - /** | |
8531 | - * @description | |
8532 | - * Created | |
8533 | - */ | |
8534 | - 201: any; | |
8535 | - /** | |
8536 | - * @description | |
8537 | - * Unauthorized | |
8538 | - */ | |
8539 | - 401: any; | |
8540 | - /** | |
8541 | - * @description | |
8542 | - * Forbidden | |
8543 | - */ | |
8544 | - 403: any; | |
8545 | - /** | |
8546 | - * @description | |
8547 | - * Not Found | |
8548 | - */ | |
8549 | - 404: any; | |
8550 | -} | |
8551 | - | |
8552 | -export type PostPrepaidPhoneAvailableListResponseSuccess = | |
8553 | - PostPrepaidPhoneAvailableListResponse[200]; | |
8554 | -/** | |
8555 | - * @description | |
8556 | - * 财务审核 | |
8557 | - * @tags prepaid-controller | |
8558 | - * @produces * | |
8559 | - * @consumes application/json | |
8560 | - */ | |
8561 | -export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => { | |
8562 | - const method = 'post'; | |
8563 | - const url = '/prepaid/phone/available/list'; | |
8564 | - function request( | |
8565 | - option: PostPrepaidPhoneAvailableListOption, | |
8566 | - ): Promise<PostPrepaidPhoneAvailableListResponseSuccess> { | |
7701 | + option: PostOrderErpUsersAddOption, | |
7702 | + ): Promise<PostOrderErpUsersAddResponseSuccess> { | |
8567 | 7703 | return requester(request.url, { |
8568 | 7704 | method: request.method, |
8569 | 7705 | ...option, |
8570 | - }) as unknown as Promise<PostPrepaidPhoneAvailableListResponseSuccess>; | |
7706 | + }) as unknown as Promise<PostOrderErpUsersAddResponseSuccess>; | |
8571 | 7707 | } |
8572 | 7708 | |
8573 | 7709 | /** http method */ |
... | ... | @@ -8577,22 +7713,22 @@ export const postPrepaidPhoneAvailableList = /* #__PURE__ */ (() => { |
8577 | 7713 | return request; |
8578 | 7714 | })(); |
8579 | 7715 | |
8580 | -/** @description request parameter type for postPrepaidUpdate */ | |
8581 | -export interface PostPrepaidUpdateOption { | |
7716 | +/** @description request parameter type for postOrderErpUsersAuthRole */ | |
7717 | +export interface PostOrderErpUsersAuthRoleOption { | |
8582 | 7718 | /** |
8583 | 7719 | * @description |
8584 | - * request | |
7720 | + * userVO | |
8585 | 7721 | */ |
8586 | 7722 | body: { |
8587 | 7723 | /** |
8588 | 7724 | @description |
8589 | - request */ | |
8590 | - request: SalesRechargePrepaymentUpdateRequest; | |
7725 | + userVO */ | |
7726 | + userVO: AdminAuthUserVO; | |
8591 | 7727 | }; |
8592 | 7728 | } |
8593 | 7729 | |
8594 | -/** @description response type for postPrepaidUpdate */ | |
8595 | -export interface PostPrepaidUpdateResponse { | |
7730 | +/** @description response type for postOrderErpUsersAuthRole */ | |
7731 | +export interface PostOrderErpUsersAuthRoleResponse { | |
8596 | 7732 | /** |
8597 | 7733 | * @description |
8598 | 7734 | * OK |
... | ... | @@ -8620,24 +7756,25 @@ export interface PostPrepaidUpdateResponse { |
8620 | 7756 | 404: any; |
8621 | 7757 | } |
8622 | 7758 | |
8623 | -export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; | |
7759 | +export type PostOrderErpUsersAuthRoleResponseSuccess = | |
7760 | + PostOrderErpUsersAuthRoleResponse[200]; | |
8624 | 7761 | /** |
8625 | 7762 | * @description |
8626 | - * 修改预存 | |
8627 | - * @tags prepaid-controller | |
7763 | + * 授权角色 | |
7764 | + * @tags 系统:用户管理 | |
8628 | 7765 | * @produces * |
8629 | 7766 | * @consumes application/json |
8630 | 7767 | */ |
8631 | -export const postPrepaidUpdate = /* #__PURE__ */ (() => { | |
7768 | +export const postOrderErpUsersAuthRole = /* #__PURE__ */ (() => { | |
8632 | 7769 | const method = 'post'; |
8633 | - const url = '/prepaid/update'; | |
7770 | + const url = '/order/erp/users/auth_role'; | |
8634 | 7771 | function request( |
8635 | - option: PostPrepaidUpdateOption, | |
8636 | - ): Promise<PostPrepaidUpdateResponseSuccess> { | |
7772 | + option: PostOrderErpUsersAuthRoleOption, | |
7773 | + ): Promise<PostOrderErpUsersAuthRoleResponseSuccess> { | |
8637 | 7774 | return requester(request.url, { |
8638 | 7775 | method: request.method, |
8639 | 7776 | ...option, |
8640 | - }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; | |
7777 | + }) as unknown as Promise<PostOrderErpUsersAuthRoleResponseSuccess>; | |
8641 | 7778 | } |
8642 | 7779 | |
8643 | 7780 | /** http method */ |
... | ... | @@ -8647,22 +7784,22 @@ export const postPrepaidUpdate = /* #__PURE__ */ (() => { |
8647 | 7784 | return request; |
8648 | 7785 | })(); |
8649 | 7786 | |
8650 | -/** @description request parameter type for postResearchGroupMemberRequestsAdd */ | |
8651 | -export interface PostResearchGroupMemberRequestsAddOption { | |
7787 | +/** @description request parameter type for postOrderErpUsersDelete */ | |
7788 | +export interface PostOrderErpUsersDeleteOption { | |
8652 | 7789 | /** |
8653 | 7790 | * @description |
8654 | - * request | |
7791 | + * queryVO | |
8655 | 7792 | */ |
8656 | 7793 | body: { |
8657 | 7794 | /** |
8658 | 7795 | @description |
8659 | - request */ | |
8660 | - request: ResearchGroupMemberRequestAddRequest; | |
7796 | + queryVO */ | |
7797 | + queryVO: AdminUserQueryVO; | |
8661 | 7798 | }; |
8662 | 7799 | } |
8663 | 7800 | |
8664 | -/** @description response type for postResearchGroupMemberRequestsAdd */ | |
8665 | -export interface PostResearchGroupMemberRequestsAddResponse { | |
7801 | +/** @description response type for postOrderErpUsersDelete */ | |
7802 | +export interface PostOrderErpUsersDeleteResponse { | |
8666 | 7803 | /** |
8667 | 7804 | * @description |
8668 | 7805 | * OK |
... | ... | @@ -8690,25 +7827,25 @@ export interface PostResearchGroupMemberRequestsAddResponse { |
8690 | 7827 | 404: any; |
8691 | 7828 | } |
8692 | 7829 | |
8693 | -export type PostResearchGroupMemberRequestsAddResponseSuccess = | |
8694 | - PostResearchGroupMemberRequestsAddResponse[200]; | |
7830 | +export type PostOrderErpUsersDeleteResponseSuccess = | |
7831 | + PostOrderErpUsersDeleteResponse[200]; | |
8695 | 7832 | /** |
8696 | 7833 | * @description |
8697 | - * 新增申请信息 | |
8698 | - * @tags research-group-member-requests-controller | |
7834 | + * 删除用户 | |
7835 | + * @tags 系统:用户管理 | |
8699 | 7836 | * @produces * |
8700 | 7837 | * @consumes application/json |
8701 | 7838 | */ |
8702 | -export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => { | |
7839 | +export const postOrderErpUsersDelete = /* #__PURE__ */ (() => { | |
8703 | 7840 | const method = 'post'; |
8704 | - const url = '/research/group/member/requests/add'; | |
7841 | + const url = '/order/erp/users/delete'; | |
8705 | 7842 | function request( |
8706 | - option: PostResearchGroupMemberRequestsAddOption, | |
8707 | - ): Promise<PostResearchGroupMemberRequestsAddResponseSuccess> { | |
7843 | + option: PostOrderErpUsersDeleteOption, | |
7844 | + ): Promise<PostOrderErpUsersDeleteResponseSuccess> { | |
8708 | 7845 | return requester(request.url, { |
8709 | 7846 | method: request.method, |
8710 | 7847 | ...option, |
8711 | - }) as unknown as Promise<PostResearchGroupMemberRequestsAddResponseSuccess>; | |
7848 | + }) as unknown as Promise<PostOrderErpUsersDeleteResponseSuccess>; | |
8712 | 7849 | } |
8713 | 7850 | |
8714 | 7851 | /** http method */ |
... | ... | @@ -8718,22 +7855,22 @@ export const postResearchGroupMemberRequestsAdd = /* #__PURE__ */ (() => { |
8718 | 7855 | return request; |
8719 | 7856 | })(); |
8720 | 7857 | |
8721 | -/** @description request parameter type for postResearchGroupMemberRequestsDelete */ | |
8722 | -export interface PostResearchGroupMemberRequestsDeleteOption { | |
7858 | +/** @description request parameter type for postOrderErpUsersEdit */ | |
7859 | +export interface PostOrderErpUsersEditOption { | |
8723 | 7860 | /** |
8724 | 7861 | * @description |
8725 | - * request | |
7862 | + * userVO | |
8726 | 7863 | */ |
8727 | 7864 | body: { |
8728 | 7865 | /** |
8729 | 7866 | @description |
8730 | - request */ | |
8731 | - request: ResearchGroupMemberRequestDeleteRequest; | |
7867 | + userVO */ | |
7868 | + userVO: AdminUserVO; | |
8732 | 7869 | }; |
8733 | 7870 | } |
8734 | 7871 | |
8735 | -/** @description response type for postResearchGroupMemberRequestsDelete */ | |
8736 | -export interface PostResearchGroupMemberRequestsDeleteResponse { | |
7872 | +/** @description response type for postOrderErpUsersEdit */ | |
7873 | +export interface PostOrderErpUsersEditResponse { | |
8737 | 7874 | /** |
8738 | 7875 | * @description |
8739 | 7876 | * OK |
... | ... | @@ -8761,25 +7898,25 @@ export interface PostResearchGroupMemberRequestsDeleteResponse { |
8761 | 7898 | 404: any; |
8762 | 7899 | } |
8763 | 7900 | |
8764 | -export type PostResearchGroupMemberRequestsDeleteResponseSuccess = | |
8765 | - PostResearchGroupMemberRequestsDeleteResponse[200]; | |
7901 | +export type PostOrderErpUsersEditResponseSuccess = | |
7902 | + PostOrderErpUsersEditResponse[200]; | |
8766 | 7903 | /** |
8767 | 7904 | * @description |
8768 | - * 删除申请信息 | |
8769 | - * @tags research-group-member-requests-controller | |
7905 | + * 修改用户 | |
7906 | + * @tags 系统:用户管理 | |
8770 | 7907 | * @produces * |
8771 | 7908 | * @consumes application/json |
8772 | 7909 | */ |
8773 | -export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => { | |
7910 | +export const postOrderErpUsersEdit = /* #__PURE__ */ (() => { | |
8774 | 7911 | const method = 'post'; |
8775 | - const url = '/research/group/member/requests/delete'; | |
7912 | + const url = '/order/erp/users/edit'; | |
8776 | 7913 | function request( |
8777 | - option: PostResearchGroupMemberRequestsDeleteOption, | |
8778 | - ): Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess> { | |
7914 | + option: PostOrderErpUsersEditOption, | |
7915 | + ): Promise<PostOrderErpUsersEditResponseSuccess> { | |
8779 | 7916 | return requester(request.url, { |
8780 | 7917 | method: request.method, |
8781 | 7918 | ...option, |
8782 | - }) as unknown as Promise<PostResearchGroupMemberRequestsDeleteResponseSuccess>; | |
7919 | + }) as unknown as Promise<PostOrderErpUsersEditResponseSuccess>; | |
8783 | 7920 | } |
8784 | 7921 | |
8785 | 7922 | /** http method */ |
... | ... | @@ -8789,22 +7926,22 @@ export const postResearchGroupMemberRequestsDelete = /* #__PURE__ */ (() => { |
8789 | 7926 | return request; |
8790 | 7927 | })(); |
8791 | 7928 | |
8792 | -/** @description request parameter type for postResearchGroupMemberRequestsDetail */ | |
8793 | -export interface PostResearchGroupMemberRequestsDetailOption { | |
7929 | +/** @description request parameter type for postOrderErpUsersListByPage */ | |
7930 | +export interface PostOrderErpUsersListByPageOption { | |
8794 | 7931 | /** |
8795 | 7932 | * @description |
8796 | - * request | |
7933 | + * queryVO | |
8797 | 7934 | */ |
8798 | 7935 | body: { |
8799 | 7936 | /** |
8800 | 7937 | @description |
8801 | - request */ | |
8802 | - request: ResearchGroupMemberRequestDetailRequest; | |
7938 | + queryVO */ | |
7939 | + queryVO: AdminUserQueryVO; | |
8803 | 7940 | }; |
8804 | 7941 | } |
8805 | 7942 | |
8806 | -/** @description response type for postResearchGroupMemberRequestsDetail */ | |
8807 | -export interface PostResearchGroupMemberRequestsDetailResponse { | |
7943 | +/** @description response type for postOrderErpUsersListByPage */ | |
7944 | +export interface PostOrderErpUsersListByPageResponse { | |
8808 | 7945 | /** |
8809 | 7946 | * @description |
8810 | 7947 | * OK |
... | ... | @@ -8832,25 +7969,25 @@ export interface PostResearchGroupMemberRequestsDetailResponse { |
8832 | 7969 | 404: any; |
8833 | 7970 | } |
8834 | 7971 | |
8835 | -export type PostResearchGroupMemberRequestsDetailResponseSuccess = | |
8836 | - PostResearchGroupMemberRequestsDetailResponse[200]; | |
7972 | +export type PostOrderErpUsersListByPageResponseSuccess = | |
7973 | + PostOrderErpUsersListByPageResponse[200]; | |
8837 | 7974 | /** |
8838 | 7975 | * @description |
8839 | - * 查询申请信息 | |
8840 | - * @tags research-group-member-requests-controller | |
7976 | + * 查询用户 | |
7977 | + * @tags 系统:用户管理 | |
8841 | 7978 | * @produces * |
8842 | 7979 | * @consumes application/json |
8843 | 7980 | */ |
8844 | -export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => { | |
7981 | +export const postOrderErpUsersListByPage = /* #__PURE__ */ (() => { | |
8845 | 7982 | const method = 'post'; |
8846 | - const url = '/research/group/member/requests/detail'; | |
7983 | + const url = '/order/erp/users/list_by_page'; | |
8847 | 7984 | function request( |
8848 | - option: PostResearchGroupMemberRequestsDetailOption, | |
8849 | - ): Promise<PostResearchGroupMemberRequestsDetailResponseSuccess> { | |
7985 | + option: PostOrderErpUsersListByPageOption, | |
7986 | + ): Promise<PostOrderErpUsersListByPageResponseSuccess> { | |
8850 | 7987 | return requester(request.url, { |
8851 | 7988 | method: request.method, |
8852 | 7989 | ...option, |
8853 | - }) as unknown as Promise<PostResearchGroupMemberRequestsDetailResponseSuccess>; | |
7990 | + }) as unknown as Promise<PostOrderErpUsersListByPageResponseSuccess>; | |
8854 | 7991 | } |
8855 | 7992 | |
8856 | 7993 | /** http method */ |
... | ... | @@ -8860,22 +7997,22 @@ export const postResearchGroupMemberRequestsDetail = /* #__PURE__ */ (() => { |
8860 | 7997 | return request; |
8861 | 7998 | })(); |
8862 | 7999 | |
8863 | -/** @description request parameter type for postResearchGroupMemberRequestsEdit */ | |
8864 | -export interface PostResearchGroupMemberRequestsEditOption { | |
8000 | +/** @description request parameter type for postOrderErpUsersReset */ | |
8001 | +export interface PostOrderErpUsersResetOption { | |
8865 | 8002 | /** |
8866 | 8003 | * @description |
8867 | - * request | |
8004 | + * resetPwdVO | |
8868 | 8005 | */ |
8869 | 8006 | body: { |
8870 | 8007 | /** |
8871 | 8008 | @description |
8872 | - request */ | |
8873 | - request: ResearchGroupMemberRequestEditRequest; | |
8009 | + resetPwdVO */ | |
8010 | + resetPwdVO: ResetPwdVO; | |
8874 | 8011 | }; |
8875 | 8012 | } |
8876 | 8013 | |
8877 | -/** @description response type for postResearchGroupMemberRequestsEdit */ | |
8878 | -export interface PostResearchGroupMemberRequestsEditResponse { | |
8014 | +/** @description response type for postOrderErpUsersReset */ | |
8015 | +export interface PostOrderErpUsersResetResponse { | |
8879 | 8016 | /** |
8880 | 8017 | * @description |
8881 | 8018 | * OK |
... | ... | @@ -8903,25 +8040,25 @@ export interface PostResearchGroupMemberRequestsEditResponse { |
8903 | 8040 | 404: any; |
8904 | 8041 | } |
8905 | 8042 | |
8906 | -export type PostResearchGroupMemberRequestsEditResponseSuccess = | |
8907 | - PostResearchGroupMemberRequestsEditResponse[200]; | |
8043 | +export type PostOrderErpUsersResetResponseSuccess = | |
8044 | + PostOrderErpUsersResetResponse[200]; | |
8908 | 8045 | /** |
8909 | 8046 | * @description |
8910 | - * 编辑申请信息 | |
8911 | - * @tags research-group-member-requests-controller | |
8047 | + * 重置密码 | |
8048 | + * @tags 系统:用户管理 | |
8912 | 8049 | * @produces * |
8913 | 8050 | * @consumes application/json |
8914 | 8051 | */ |
8915 | -export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => { | |
8052 | +export const postOrderErpUsersReset = /* #__PURE__ */ (() => { | |
8916 | 8053 | const method = 'post'; |
8917 | - const url = '/research/group/member/requests/edit'; | |
8054 | + const url = '/order/erp/users/reset'; | |
8918 | 8055 | function request( |
8919 | - option: PostResearchGroupMemberRequestsEditOption, | |
8920 | - ): Promise<PostResearchGroupMemberRequestsEditResponseSuccess> { | |
8056 | + option: PostOrderErpUsersResetOption, | |
8057 | + ): Promise<PostOrderErpUsersResetResponseSuccess> { | |
8921 | 8058 | return requester(request.url, { |
8922 | 8059 | method: request.method, |
8923 | 8060 | ...option, |
8924 | - }) as unknown as Promise<PostResearchGroupMemberRequestsEditResponseSuccess>; | |
8061 | + }) as unknown as Promise<PostOrderErpUsersResetResponseSuccess>; | |
8925 | 8062 | } |
8926 | 8063 | |
8927 | 8064 | /** http method */ |
... | ... | @@ -8931,22 +8068,22 @@ export const postResearchGroupMemberRequestsEdit = /* #__PURE__ */ (() => { |
8931 | 8068 | return request; |
8932 | 8069 | })(); |
8933 | 8070 | |
8934 | -/** @description request parameter type for postResearchGroupMemberRequestsList */ | |
8935 | -export interface PostResearchGroupMemberRequestsListOption { | |
8071 | +/** @description request parameter type for postOrderErpUsersUpdatePass */ | |
8072 | +export interface PostOrderErpUsersUpdatePassOption { | |
8936 | 8073 | /** |
8937 | 8074 | * @description |
8938 | - * request | |
8075 | + * pwdVO | |
8939 | 8076 | */ |
8940 | 8077 | body: { |
8941 | 8078 | /** |
8942 | 8079 | @description |
8943 | - request */ | |
8944 | - request: ResearchGroupMemberRequestsRequest; | |
8080 | + pwdVO */ | |
8081 | + pwdVO: UpdatePwdVO; | |
8945 | 8082 | }; |
8946 | 8083 | } |
8947 | 8084 | |
8948 | -/** @description response type for postResearchGroupMemberRequestsList */ | |
8949 | -export interface PostResearchGroupMemberRequestsListResponse { | |
8085 | +/** @description response type for postOrderErpUsersUpdatePass */ | |
8086 | +export interface PostOrderErpUsersUpdatePassResponse { | |
8950 | 8087 | /** |
8951 | 8088 | * @description |
8952 | 8089 | * OK |
... | ... | @@ -8974,25 +8111,25 @@ export interface PostResearchGroupMemberRequestsListResponse { |
8974 | 8111 | 404: any; |
8975 | 8112 | } |
8976 | 8113 | |
8977 | -export type PostResearchGroupMemberRequestsListResponseSuccess = | |
8978 | - PostResearchGroupMemberRequestsListResponse[200]; | |
8114 | +export type PostOrderErpUsersUpdatePassResponseSuccess = | |
8115 | + PostOrderErpUsersUpdatePassResponse[200]; | |
8979 | 8116 | /** |
8980 | 8117 | * @description |
8981 | - * 申请列表 | |
8982 | - * @tags research-group-member-requests-controller | |
8118 | + * 修改密码 | |
8119 | + * @tags 系统:用户管理 | |
8983 | 8120 | * @produces * |
8984 | 8121 | * @consumes application/json |
8985 | 8122 | */ |
8986 | -export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => { | |
8123 | +export const postOrderErpUsersUpdatePass = /* #__PURE__ */ (() => { | |
8987 | 8124 | const method = 'post'; |
8988 | - const url = '/research/group/member/requests/list'; | |
8125 | + const url = '/order/erp/users/update_pass'; | |
8989 | 8126 | function request( |
8990 | - option: PostResearchGroupMemberRequestsListOption, | |
8991 | - ): Promise<PostResearchGroupMemberRequestsListResponseSuccess> { | |
8127 | + option: PostOrderErpUsersUpdatePassOption, | |
8128 | + ): Promise<PostOrderErpUsersUpdatePassResponseSuccess> { | |
8992 | 8129 | return requester(request.url, { |
8993 | 8130 | method: request.method, |
8994 | 8131 | ...option, |
8995 | - }) as unknown as Promise<PostResearchGroupMemberRequestsListResponseSuccess>; | |
8132 | + }) as unknown as Promise<PostOrderErpUsersUpdatePassResponseSuccess>; | |
8996 | 8133 | } |
8997 | 8134 | |
8998 | 8135 | /** http method */ |
... | ... | @@ -9002,22 +8139,22 @@ export const postResearchGroupMemberRequestsList = /* #__PURE__ */ (() => { |
9002 | 8139 | return request; |
9003 | 8140 | })(); |
9004 | 8141 | |
9005 | -/** @description request parameter type for postResearchGroupsAdd */ | |
9006 | -export interface PostResearchGroupsAddOption { | |
8142 | +/** @description request parameter type for postOrderImportImportInvoiceProject */ | |
8143 | +export interface PostOrderImportImportInvoiceProjectOption { | |
9007 | 8144 | /** |
9008 | 8145 | * @description |
9009 | - * request | |
8146 | + * file | |
9010 | 8147 | */ |
9011 | - body: { | |
8148 | + formData: { | |
9012 | 8149 | /** |
9013 | 8150 | @description |
9014 | - request */ | |
9015 | - request: ResearchGroupAddRequest; | |
8151 | + file */ | |
8152 | + file: File; | |
9016 | 8153 | }; |
9017 | 8154 | } |
9018 | 8155 | |
9019 | -/** @description response type for postResearchGroupsAdd */ | |
9020 | -export interface PostResearchGroupsAddResponse { | |
8156 | +/** @description response type for postOrderImportImportInvoiceProject */ | |
8157 | +export interface PostOrderImportImportInvoiceProjectResponse { | |
9021 | 8158 | /** |
9022 | 8159 | * @description |
9023 | 8160 | * OK |
... | ... | @@ -9045,25 +8182,25 @@ export interface PostResearchGroupsAddResponse { |
9045 | 8182 | 404: any; |
9046 | 8183 | } |
9047 | 8184 | |
9048 | -export type PostResearchGroupsAddResponseSuccess = | |
9049 | - PostResearchGroupsAddResponse[200]; | |
8185 | +export type PostOrderImportImportInvoiceProjectResponseSuccess = | |
8186 | + PostOrderImportImportInvoiceProjectResponse[200]; | |
9050 | 8187 | /** |
9051 | 8188 | * @description |
9052 | - * 新增课题组信息 | |
9053 | - * @tags research-groups-controller | |
8189 | + * 导入发票项目 | |
8190 | + * @tags 导入 | |
9054 | 8191 | * @produces * |
9055 | - * @consumes application/json | |
8192 | + * @consumes multipart/form-data | |
9056 | 8193 | */ |
9057 | -export const postResearchGroupsAdd = /* #__PURE__ */ (() => { | |
8194 | +export const postOrderImportImportInvoiceProject = /* #__PURE__ */ (() => { | |
9058 | 8195 | const method = 'post'; |
9059 | - const url = '/research/groups/add'; | |
8196 | + const url = '/order/import/importInvoiceProject'; | |
9060 | 8197 | function request( |
9061 | - option: PostResearchGroupsAddOption, | |
9062 | - ): Promise<PostResearchGroupsAddResponseSuccess> { | |
8198 | + option: PostOrderImportImportInvoiceProjectOption, | |
8199 | + ): Promise<PostOrderImportImportInvoiceProjectResponseSuccess> { | |
9063 | 8200 | return requester(request.url, { |
9064 | 8201 | method: request.method, |
9065 | 8202 | ...option, |
9066 | - }) as unknown as Promise<PostResearchGroupsAddResponseSuccess>; | |
8203 | + }) as unknown as Promise<PostOrderImportImportInvoiceProjectResponseSuccess>; | |
9067 | 8204 | } |
9068 | 8205 | |
9069 | 8206 | /** http method */ |
... | ... | @@ -9073,22 +8210,22 @@ export const postResearchGroupsAdd = /* #__PURE__ */ (() => { |
9073 | 8210 | return request; |
9074 | 8211 | })(); |
9075 | 8212 | |
9076 | -/** @description request parameter type for postResearchGroupsDelete */ | |
9077 | -export interface PostResearchGroupsDeleteOption { | |
8213 | +/** @description request parameter type for postOrderImportImportWeightAndVolume */ | |
8214 | +export interface PostOrderImportImportWeightAndVolumeOption { | |
9078 | 8215 | /** |
9079 | 8216 | * @description |
9080 | - * request | |
8217 | + * file | |
9081 | 8218 | */ |
9082 | - body: { | |
8219 | + formData: { | |
9083 | 8220 | /** |
9084 | 8221 | @description |
9085 | - request */ | |
9086 | - request: ResearchGroupDeleteRequest; | |
8222 | + file */ | |
8223 | + file: File; | |
9087 | 8224 | }; |
9088 | 8225 | } |
9089 | 8226 | |
9090 | -/** @description response type for postResearchGroupsDelete */ | |
9091 | -export interface PostResearchGroupsDeleteResponse { | |
8227 | +/** @description response type for postOrderImportImportWeightAndVolume */ | |
8228 | +export interface PostOrderImportImportWeightAndVolumeResponse { | |
9092 | 8229 | /** |
9093 | 8230 | * @description |
9094 | 8231 | * OK |
... | ... | @@ -9116,25 +8253,25 @@ export interface PostResearchGroupsDeleteResponse { |
9116 | 8253 | 404: any; |
9117 | 8254 | } |
9118 | 8255 | |
9119 | -export type PostResearchGroupsDeleteResponseSuccess = | |
9120 | - PostResearchGroupsDeleteResponse[200]; | |
8256 | +export type PostOrderImportImportWeightAndVolumeResponseSuccess = | |
8257 | + PostOrderImportImportWeightAndVolumeResponse[200]; | |
9121 | 8258 | /** |
9122 | 8259 | * @description |
9123 | - * 删除课题组信息 | |
9124 | - * @tags research-groups-controller | |
8260 | + * 导入重量和体积 | |
8261 | + * @tags 导入 | |
9125 | 8262 | * @produces * |
9126 | - * @consumes application/json | |
8263 | + * @consumes multipart/form-data | |
9127 | 8264 | */ |
9128 | -export const postResearchGroupsDelete = /* #__PURE__ */ (() => { | |
8265 | +export const postOrderImportImportWeightAndVolume = /* #__PURE__ */ (() => { | |
9129 | 8266 | const method = 'post'; |
9130 | - const url = '/research/groups/delete'; | |
8267 | + const url = '/order/import/importWeightAndVolume'; | |
9131 | 8268 | function request( |
9132 | - option: PostResearchGroupsDeleteOption, | |
9133 | - ): Promise<PostResearchGroupsDeleteResponseSuccess> { | |
8269 | + option: PostOrderImportImportWeightAndVolumeOption, | |
8270 | + ): Promise<PostOrderImportImportWeightAndVolumeResponseSuccess> { | |
9134 | 8271 | return requester(request.url, { |
9135 | 8272 | method: request.method, |
9136 | 8273 | ...option, |
9137 | - }) as unknown as Promise<PostResearchGroupsDeleteResponseSuccess>; | |
8274 | + }) as unknown as Promise<PostOrderImportImportWeightAndVolumeResponseSuccess>; | |
9138 | 8275 | } |
9139 | 8276 | |
9140 | 8277 | /** http method */ |
... | ... | @@ -9144,8 +8281,8 @@ export const postResearchGroupsDelete = /* #__PURE__ */ (() => { |
9144 | 8281 | return request; |
9145 | 8282 | })(); |
9146 | 8283 | |
9147 | -/** @description request parameter type for postResearchGroupsDetail */ | |
9148 | -export interface PostResearchGroupsDetailOption { | |
8284 | +/** @description request parameter type for postPrepaidAudit */ | |
8285 | +export interface PostPrepaidAuditOption { | |
9149 | 8286 | /** |
9150 | 8287 | * @description |
9151 | 8288 | * request |
... | ... | @@ -9154,12 +8291,12 @@ export interface PostResearchGroupsDetailOption { |
9154 | 8291 | /** |
9155 | 8292 | @description |
9156 | 8293 | request */ |
9157 | - request: ResearchGroupDetailRequest; | |
8294 | + request: SalesRechargePrepaymentAuditRequest; | |
9158 | 8295 | }; |
9159 | 8296 | } |
9160 | 8297 | |
9161 | -/** @description response type for postResearchGroupsDetail */ | |
9162 | -export interface PostResearchGroupsDetailResponse { | |
8298 | +/** @description response type for postPrepaidAudit */ | |
8299 | +export interface PostPrepaidAuditResponse { | |
9163 | 8300 | /** |
9164 | 8301 | * @description |
9165 | 8302 | * OK |
... | ... | @@ -9187,25 +8324,24 @@ export interface PostResearchGroupsDetailResponse { |
9187 | 8324 | 404: any; |
9188 | 8325 | } |
9189 | 8326 | |
9190 | -export type PostResearchGroupsDetailResponseSuccess = | |
9191 | - PostResearchGroupsDetailResponse[200]; | |
8327 | +export type PostPrepaidAuditResponseSuccess = PostPrepaidAuditResponse[200]; | |
9192 | 8328 | /** |
9193 | 8329 | * @description |
9194 | - * 查询课题组信息 | |
9195 | - * @tags research-groups-controller | |
8330 | + * 财务审核 | |
8331 | + * @tags prepaid-controller | |
9196 | 8332 | * @produces * |
9197 | 8333 | * @consumes application/json |
9198 | 8334 | */ |
9199 | -export const postResearchGroupsDetail = /* #__PURE__ */ (() => { | |
8335 | +export const postPrepaidAudit = /* #__PURE__ */ (() => { | |
9200 | 8336 | const method = 'post'; |
9201 | - const url = '/research/groups/detail'; | |
8337 | + const url = '/prepaid/audit'; | |
9202 | 8338 | function request( |
9203 | - option: PostResearchGroupsDetailOption, | |
9204 | - ): Promise<PostResearchGroupsDetailResponseSuccess> { | |
8339 | + option: PostPrepaidAuditOption, | |
8340 | + ): Promise<PostPrepaidAuditResponseSuccess> { | |
9205 | 8341 | return requester(request.url, { |
9206 | 8342 | method: request.method, |
9207 | 8343 | ...option, |
9208 | - }) as unknown as Promise<PostResearchGroupsDetailResponseSuccess>; | |
8344 | + }) as unknown as Promise<PostPrepaidAuditResponseSuccess>; | |
9209 | 8345 | } |
9210 | 8346 | |
9211 | 8347 | /** http method */ |
... | ... | @@ -9215,13 +8351,27 @@ export const postResearchGroupsDetail = /* #__PURE__ */ (() => { |
9215 | 8351 | return request; |
9216 | 8352 | })(); |
9217 | 8353 | |
9218 | -/** @description response type for postResearchGroupsDownloadImportTemplate */ | |
9219 | -export interface PostResearchGroupsDownloadImportTemplateResponse { | |
8354 | +/** @description request parameter type for postPrepaidCreate */ | |
8355 | +export interface PostPrepaidCreateOption { | |
8356 | + /** | |
8357 | + * @description | |
8358 | + * request | |
8359 | + */ | |
8360 | + body: { | |
8361 | + /** | |
8362 | + @description | |
8363 | + request */ | |
8364 | + request: SalesRechargePrepaymentCreateRequest; | |
8365 | + }; | |
8366 | +} | |
8367 | + | |
8368 | +/** @description response type for postPrepaidCreate */ | |
8369 | +export interface PostPrepaidCreateResponse { | |
9220 | 8370 | /** |
9221 | 8371 | * @description |
9222 | 8372 | * OK |
9223 | 8373 | */ |
9224 | - 200: any; | |
8374 | + 200: ServerResult; | |
9225 | 8375 | /** |
9226 | 8376 | * @description |
9227 | 8377 | * Created |
... | ... | @@ -9244,22 +8394,24 @@ export interface PostResearchGroupsDownloadImportTemplateResponse { |
9244 | 8394 | 404: any; |
9245 | 8395 | } |
9246 | 8396 | |
9247 | -export type PostResearchGroupsDownloadImportTemplateResponseSuccess = | |
9248 | - PostResearchGroupsDownloadImportTemplateResponse[200]; | |
8397 | +export type PostPrepaidCreateResponseSuccess = PostPrepaidCreateResponse[200]; | |
9249 | 8398 | /** |
9250 | 8399 | * @description |
9251 | - * 课题组导入模板下载 | |
9252 | - * @tags research-groups-controller | |
8400 | + * 新增预存 | |
8401 | + * @tags prepaid-controller | |
9253 | 8402 | * @produces * |
9254 | 8403 | * @consumes application/json |
9255 | 8404 | */ |
9256 | -export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => { | |
8405 | +export const postPrepaidCreate = /* #__PURE__ */ (() => { | |
9257 | 8406 | const method = 'post'; |
9258 | - const url = '/research/groups/download/importTemplate'; | |
9259 | - function request(): Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess> { | |
8407 | + const url = '/prepaid/create'; | |
8408 | + function request( | |
8409 | + option: PostPrepaidCreateOption, | |
8410 | + ): Promise<PostPrepaidCreateResponseSuccess> { | |
9260 | 8411 | return requester(request.url, { |
9261 | 8412 | method: request.method, |
9262 | - }) as unknown as Promise<PostResearchGroupsDownloadImportTemplateResponseSuccess>; | |
8413 | + ...option, | |
8414 | + }) as unknown as Promise<PostPrepaidCreateResponseSuccess>; | |
9263 | 8415 | } |
9264 | 8416 | |
9265 | 8417 | /** http method */ |
... | ... | @@ -9269,8 +8421,8 @@ export const postResearchGroupsDownloadImportTemplate = /* #__PURE__ */ (() => { |
9269 | 8421 | return request; |
9270 | 8422 | })(); |
9271 | 8423 | |
9272 | -/** @description request parameter type for postResearchGroupsEdit */ | |
9273 | -export interface PostResearchGroupsEditOption { | |
8424 | +/** @description request parameter type for postPrepaidDelete */ | |
8425 | +export interface PostPrepaidDeleteOption { | |
9274 | 8426 | /** |
9275 | 8427 | * @description |
9276 | 8428 | * request |
... | ... | @@ -9279,12 +8431,12 @@ export interface PostResearchGroupsEditOption { |
9279 | 8431 | /** |
9280 | 8432 | @description |
9281 | 8433 | request */ |
9282 | - request: ResearchGroupEditRequest; | |
8434 | + request: SalesRechargePrepaymentDeleteRequest; | |
9283 | 8435 | }; |
9284 | 8436 | } |
9285 | 8437 | |
9286 | -/** @description response type for postResearchGroupsEdit */ | |
9287 | -export interface PostResearchGroupsEditResponse { | |
8438 | +/** @description response type for postPrepaidDelete */ | |
8439 | +export interface PostPrepaidDeleteResponse { | |
9288 | 8440 | /** |
9289 | 8441 | * @description |
9290 | 8442 | * OK |
... | ... | @@ -9312,25 +8464,24 @@ export interface PostResearchGroupsEditResponse { |
9312 | 8464 | 404: any; |
9313 | 8465 | } |
9314 | 8466 | |
9315 | -export type PostResearchGroupsEditResponseSuccess = | |
9316 | - PostResearchGroupsEditResponse[200]; | |
8467 | +export type PostPrepaidDeleteResponseSuccess = PostPrepaidDeleteResponse[200]; | |
9317 | 8468 | /** |
9318 | 8469 | * @description |
9319 | - * 编辑课题组信息 | |
9320 | - * @tags research-groups-controller | |
8470 | + * 删除预存 | |
8471 | + * @tags prepaid-controller | |
9321 | 8472 | * @produces * |
9322 | 8473 | * @consumes application/json |
9323 | 8474 | */ |
9324 | -export const postResearchGroupsEdit = /* #__PURE__ */ (() => { | |
8475 | +export const postPrepaidDelete = /* #__PURE__ */ (() => { | |
9325 | 8476 | const method = 'post'; |
9326 | - const url = '/research/groups/edit'; | |
8477 | + const url = '/prepaid/delete'; | |
9327 | 8478 | function request( |
9328 | - option: PostResearchGroupsEditOption, | |
9329 | - ): Promise<PostResearchGroupsEditResponseSuccess> { | |
8479 | + option: PostPrepaidDeleteOption, | |
8480 | + ): Promise<PostPrepaidDeleteResponseSuccess> { | |
9330 | 8481 | return requester(request.url, { |
9331 | 8482 | method: request.method, |
9332 | 8483 | ...option, |
9333 | - }) as unknown as Promise<PostResearchGroupsEditResponseSuccess>; | |
8484 | + }) as unknown as Promise<PostPrepaidDeleteResponseSuccess>; | |
9334 | 8485 | } |
9335 | 8486 | |
9336 | 8487 | /** http method */ |
... | ... | @@ -9340,22 +8491,22 @@ export const postResearchGroupsEdit = /* #__PURE__ */ (() => { |
9340 | 8491 | return request; |
9341 | 8492 | })(); |
9342 | 8493 | |
9343 | -/** @description request parameter type for postResearchGroupsImport */ | |
9344 | -export interface PostResearchGroupsImportOption { | |
8494 | +/** @description request parameter type for postPrepaidList */ | |
8495 | +export interface PostPrepaidListOption { | |
9345 | 8496 | /** |
9346 | 8497 | * @description |
9347 | - * file | |
8498 | + * request | |
9348 | 8499 | */ |
9349 | - formData: { | |
8500 | + body: { | |
9350 | 8501 | /** |
9351 | 8502 | @description |
9352 | - file */ | |
9353 | - file: File; | |
8503 | + request */ | |
8504 | + request: SalesRechargePrepaymentRequest; | |
9354 | 8505 | }; |
9355 | 8506 | } |
9356 | 8507 | |
9357 | -/** @description response type for postResearchGroupsImport */ | |
9358 | -export interface PostResearchGroupsImportResponse { | |
8508 | +/** @description response type for postPrepaidList */ | |
8509 | +export interface PostPrepaidListResponse { | |
9359 | 8510 | /** |
9360 | 8511 | * @description |
9361 | 8512 | * OK |
... | ... | @@ -9383,25 +8534,24 @@ export interface PostResearchGroupsImportResponse { |
9383 | 8534 | 404: any; |
9384 | 8535 | } |
9385 | 8536 | |
9386 | -export type PostResearchGroupsImportResponseSuccess = | |
9387 | - PostResearchGroupsImportResponse[200]; | |
8537 | +export type PostPrepaidListResponseSuccess = PostPrepaidListResponse[200]; | |
9388 | 8538 | /** |
9389 | 8539 | * @description |
9390 | - * 课题组信息导入 | |
9391 | - * @tags research-groups-controller | |
8540 | + * 查询列表 | |
8541 | + * @tags prepaid-controller | |
9392 | 8542 | * @produces * |
9393 | - * @consumes multipart/form-data | |
8543 | + * @consumes application/json | |
9394 | 8544 | */ |
9395 | -export const postResearchGroupsImport = /* #__PURE__ */ (() => { | |
8545 | +export const postPrepaidList = /* #__PURE__ */ (() => { | |
9396 | 8546 | const method = 'post'; |
9397 | - const url = '/research/groups/import'; | |
8547 | + const url = '/prepaid/list'; | |
9398 | 8548 | function request( |
9399 | - option: PostResearchGroupsImportOption, | |
9400 | - ): Promise<PostResearchGroupsImportResponseSuccess> { | |
8549 | + option: PostPrepaidListOption, | |
8550 | + ): Promise<PostPrepaidListResponseSuccess> { | |
9401 | 8551 | return requester(request.url, { |
9402 | 8552 | method: request.method, |
9403 | 8553 | ...option, |
9404 | - }) as unknown as Promise<PostResearchGroupsImportResponseSuccess>; | |
8554 | + }) as unknown as Promise<PostPrepaidListResponseSuccess>; | |
9405 | 8555 | } |
9406 | 8556 | |
9407 | 8557 | /** http method */ |
... | ... | @@ -9411,8 +8561,8 @@ export const postResearchGroupsImport = /* #__PURE__ */ (() => { |
9411 | 8561 | return request; |
9412 | 8562 | })(); |
9413 | 8563 | |
9414 | -/** @description request parameter type for postResearchGroupsList */ | |
9415 | -export interface PostResearchGroupsListOption { | |
8564 | +/** @description request parameter type for postPrepaidUpdate */ | |
8565 | +export interface PostPrepaidUpdateOption { | |
9416 | 8566 | /** |
9417 | 8567 | * @description |
9418 | 8568 | * request |
... | ... | @@ -9421,12 +8571,12 @@ export interface PostResearchGroupsListOption { |
9421 | 8571 | /** |
9422 | 8572 | @description |
9423 | 8573 | request */ |
9424 | - request: ResearchGroupListRequest; | |
8574 | + request: SalesRechargePrepaymentUpdateRequest; | |
9425 | 8575 | }; |
9426 | 8576 | } |
9427 | 8577 | |
9428 | -/** @description response type for postResearchGroupsList */ | |
9429 | -export interface PostResearchGroupsListResponse { | |
8578 | +/** @description response type for postPrepaidUpdate */ | |
8579 | +export interface PostPrepaidUpdateResponse { | |
9430 | 8580 | /** |
9431 | 8581 | * @description |
9432 | 8582 | * OK |
... | ... | @@ -9454,25 +8604,24 @@ export interface PostResearchGroupsListResponse { |
9454 | 8604 | 404: any; |
9455 | 8605 | } |
9456 | 8606 | |
9457 | -export type PostResearchGroupsListResponseSuccess = | |
9458 | - PostResearchGroupsListResponse[200]; | |
8607 | +export type PostPrepaidUpdateResponseSuccess = PostPrepaidUpdateResponse[200]; | |
9459 | 8608 | /** |
9460 | 8609 | * @description |
9461 | - * 课题组列表 | |
9462 | - * @tags research-groups-controller | |
8610 | + * 修改预存 | |
8611 | + * @tags prepaid-controller | |
9463 | 8612 | * @produces * |
9464 | 8613 | * @consumes application/json |
9465 | 8614 | */ |
9466 | -export const postResearchGroupsList = /* #__PURE__ */ (() => { | |
8615 | +export const postPrepaidUpdate = /* #__PURE__ */ (() => { | |
9467 | 8616 | const method = 'post'; |
9468 | - const url = '/research/groups/list'; | |
8617 | + const url = '/prepaid/update'; | |
9469 | 8618 | function request( |
9470 | - option: PostResearchGroupsListOption, | |
9471 | - ): Promise<PostResearchGroupsListResponseSuccess> { | |
8619 | + option: PostPrepaidUpdateOption, | |
8620 | + ): Promise<PostPrepaidUpdateResponseSuccess> { | |
9472 | 8621 | return requester(request.url, { |
9473 | 8622 | method: request.method, |
9474 | 8623 | ...option, |
9475 | - }) as unknown as Promise<PostResearchGroupsListResponseSuccess>; | |
8624 | + }) as unknown as Promise<PostPrepaidUpdateResponseSuccess>; | |
9476 | 8625 | } |
9477 | 8626 | |
9478 | 8627 | /** http method */ | ... | ... |