Ai
1 Star 2 Fork 1

多喝水能美颜/bi-frontend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
queueController.ts 619 Bytes
一键复制 编辑 原始数据 按行查看 历史
多喝水能美颜 提交于 2023-08-26 10:08 +08:00 . fix(compiler): add
// @ts-ignore
/* eslint-disable */
import { request } from '@umijs/max';
/** add GET /api/queue/add */
export async function addUsingGET(
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
params: API.addUsingGETParams,
options?: { [key: string]: any },
) {
return request<any>('/api/queue/add', {
method: 'GET',
params: {
...params,
},
...(options || {}),
});
}
/** get GET /api/queue/get */
export async function getUsingGET(options?: { [key: string]: any }) {
return request<string>('/api/queue/get', {
method: 'GET',
...(options || {}),
});
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dwbf/bi-frontend.git
git@gitee.com:dwbf/bi-frontend.git
dwbf
bi-frontend
bi-frontend
master

搜索帮助