dev-v2
Joe 8 months ago
parent 8b3cdafb55
commit 12f46100c1

@ -2,41 +2,41 @@
/* eslint-disable */ /* eslint-disable */
import request from '@/utils/request'; import request from '@/utils/request';
/** error GET /error */ /** errorHtml GET /error */
export async function errorUsingGet(options?: { [key: string]: any }) { export async function errorHtmlUsingGet(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', { return request<API.ModelAndView>('/error', {
method: 'GET', method: 'GET',
...(options || {}), ...(options || {}),
}); });
} }
/** error PUT /error */ /** errorHtml PUT /error */
export async function errorUsingPut(options?: { [key: string]: any }) { export async function errorHtmlUsingPut(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', { return request<API.ModelAndView>('/error', {
method: 'PUT', method: 'PUT',
...(options || {}), ...(options || {}),
}); });
} }
/** error POST /error */ /** errorHtml POST /error */
export async function errorUsingPost(options?: { [key: string]: any }) { export async function errorHtmlUsingPost(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', { return request<API.ModelAndView>('/error', {
method: 'POST', method: 'POST',
...(options || {}), ...(options || {}),
}); });
} }
/** error DELETE /error */ /** errorHtml DELETE /error */
export async function errorUsingDelete(options?: { [key: string]: any }) { export async function errorHtmlUsingDelete(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', { return request<API.ModelAndView>('/error', {
method: 'DELETE', method: 'DELETE',
...(options || {}), ...(options || {}),
}); });
} }
/** error PATCH /error */ /** errorHtml PATCH /error */
export async function errorUsingPatch(options?: { [key: string]: any }) { export async function errorHtmlUsingPatch(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', { return request<API.ModelAndView>('/error', {
method: 'PATCH', method: 'PATCH',
...(options || {}), ...(options || {}),
}); });

@ -1218,12 +1218,16 @@ declare namespace API {
pbcBusinessImage?: string; pbcBusinessImage?: string;
/** 商户简介 */ /** 商户简介 */
pbcBusinessIntroduction?: string; pbcBusinessIntroduction?: string;
/** 商户地址纬度 */
pbcBusinessLatitudee?: string;
/** 商户等级 */ /** 商户等级 */
pbcBusinessLevel?: string; pbcBusinessLevel?: string;
/** 商户营业执照url */ /** 商户营业执照url */
pbcBusinessLicenseUrl?: string; pbcBusinessLicenseUrl?: string;
/** 商户logo */ /** 商户logo */
pbcBusinessLogo?: string; pbcBusinessLogo?: string;
/** 商户地址经度 */
pbcBusinessLongitude?: string;
/** 商户主营范围 */ /** 商户主营范围 */
pbcBusinessMainCategory?: string; pbcBusinessMainCategory?: string;
/** 商户名称 */ /** 商户名称 */

Loading…
Cancel
Save