| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取全部用户下拉列表 POST /api/User/GetUserAllList */ |
| | | export async function getUserAllList(body: API.QueryUserPageInput, options?: API.RequestConfig) { |
| | | return request<API.UserListOutput[]>('/api/User/GetUserAllList', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取客户余额信息 GET /api/User/GetUserAmountShow */ |
| | | export async function getUserAmountShow(options?: API.RequestConfig) { |
| | | return request<API.UserAmountShowDto>('/api/User/GetUserAmountShow', { |