1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| /* eslint-disable */
| // @ts-ignore
| import { request } from '@/utils/request';
|
| /** 文字识别营业执照 GET /api/common/ocrUtils/getLicenseOcr */
| export async function getLicenseOcr(
| // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
| params: API.APIgetLicenseOcrParams,
| options?: API.RequestConfig
| ) {
| return request<API.GetLicenseOcrCommandResult>('/api/common/ocrUtils/getLicenseOcr', {
| method: 'GET',
| params: {
| ...params,
| },
| ...(options || {}),
| });
| }
|
|