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