| | |
| | | }); |
| | | } |
| | | |
| | | /** 政务端账号列表 POST /api/UserRole/GetGovermentClientUsers */ |
| | | export async function getGovermentClientUsers( |
| | | body: API.GetBackClientUsersInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.UserDtoPageOutput>('/api/UserRole/GetGovermentClientUsers', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 角色列表 POST /api/UserRole/GetRoles */ |
| | | export async function getRoles(body: API.GetRolesInput, options?: API.RequestConfig) { |
| | | return request<API.RoleInfoPageOutput>('/api/UserRole/GetRoles', { |