first commit

This commit is contained in:
2026-02-26 09:32:03 +08:00
commit 36a8e4c51b
845 changed files with 116474 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/* eslint-disable */
// @ts-ignore
import request from '@/http/vue-query';
import type { CustomRequestOptions } from '@/http/types';
import * as API from './types';
/** 版本更新 POST /app/version/isUpdateVersion */
export async function appVersionIsUpdateVersionPost({
body,
options,
}: {
body: API.IsUpdateVersionBo;
options?: CustomRequestOptions;
}) {
return request<API.RAppVersionVo>('/app/version/isUpdateVersion', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
data: body,
...(options || {}),
});
}