1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
| /* eslint-disable */
| // 该文件由 OneAPI 自动生成,请勿手动修改!
| import { request } from '@umijs/max';
|
| /** 此处后端没有提供注释 GET /api/v1/queryUserList */
| export async function queryUserList(
| params: {
| // query
| /** keyword */
| keyword?: string;
| /** current */
| current?: number;
| /** pageSize */
| pageSize?: number;
| },
| options?: { [key: string]: any },
| ) {
| return request<API.Result_PageInfo_UserInfo__>('/api/v1/queryUserList', {
| method: 'GET',
| params: {
| ...params,
| },
| ...(options || {}),
| });
| }
|
| /** 此处后端没有提供注释 POST /api/v1/user */
| export async function addUser(
| body?: API.UserInfoVO,
| options?: { [key: string]: any },
| ) {
| return request<API.Result_UserInfo_>('/api/v1/user', {
| method: 'POST',
| headers: {
| 'Content-Type': 'application/json',
| },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 此处后端没有提供注释 GET /api/v1/user/${param0} */
| export async function getUserDetail(
| params: {
| // path
| /** userId */
| userId?: string;
| },
| options?: { [key: string]: any },
| ) {
| const { userId: param0 } = params;
| return request<API.Result_UserInfo_>(`/api/v1/user/${param0}`, {
| method: 'GET',
| params: { ...params },
| ...(options || {}),
| });
| }
|
| /** 此处后端没有提供注释 PUT /api/v1/user/${param0} */
| export async function modifyUser(
| params: {
| // path
| /** userId */
| userId?: string;
| },
| body?: API.UserInfoVO,
| options?: { [key: string]: any },
| ) {
| const { userId: param0 } = params;
| return request<API.Result_UserInfo_>(`/api/v1/user/${param0}`, {
| method: 'PUT',
| headers: {
| 'Content-Type': 'application/json',
| },
| params: { ...params },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 此处后端没有提供注释 DELETE /api/v1/user/${param0} */
| export async function deleteUser(
| params: {
| // path
| /** userId */
| userId?: string;
| },
| options?: { [key: string]: any },
| ) {
| const { userId: param0 } = params;
| return request<API.Result_string_>(`/api/v1/user/${param0}`, {
| method: 'DELETE',
| params: { ...params },
| ...(options || {}),
| });
| }
|
|