listAll.ts 407 B

12345678910111213141516171819
  1. /* eslint-disable */
  2. // @ts-ignore
  3. import request from '@/http/vue-query';
  4. import { CustomRequestOptions_ } from '@/http/types';
  5. import * as API from './types';
  6. /** 用户列表 GET /user/listAll */
  7. export function listAllUsingGet({
  8. options,
  9. }: {
  10. options?: CustomRequestOptions_;
  11. }) {
  12. return request<API.ListAllUsingGetResponse>('/user/listAll', {
  13. method: 'GET',
  14. ...(options || {}),
  15. });
  16. }