tools.ts 428 B

123456789101112131415
  1. // @ts-ignore
  2. /* eslint-disable */
  3. import request from '@repo/api-client'
  4. /** 批量生成UUID POST /api/openapi/doBatchGenerateUUID */
  5. export async function postOpenapiDoBatchGenerateUuid(options?: { [key: string]: any }) {
  6. return request<{ isSuccess: boolean; code: number; result: string[]; isAuthorized: boolean }>(
  7. '/api/openapi/doBatchGenerateUUID',
  8. {
  9. method: 'POST',
  10. ...(options || {})
  11. }
  12. )
  13. }