|
|
@@ -1,478 +0,0 @@
|
|
|
-/* tslint:disable */
|
|
|
-/* eslint-disable */
|
|
|
-/**
|
|
|
- * Admin.NET
|
|
|
- * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
|
|
|
- *
|
|
|
- * OpenAPI spec version: 1.0.0
|
|
|
- * Contact: 515096995@qq.com
|
|
|
- *
|
|
|
- * NOTE: This class is auto generated by the swagger code generator program.
|
|
|
- * https://github.com/swagger-api/swagger-codegen.git
|
|
|
- * Do not edit the class manually.
|
|
|
- */
|
|
|
-import globalAxios, { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
|
-import { Configuration } from '../configuration';
|
|
|
-// Some imports not used depending on template conditions
|
|
|
-// @ts-ignore
|
|
|
-import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
|
-import { AddTimerInput } from '../models';
|
|
|
-import { AdminResultSqlSugarPagedListTimerOutput } from '../models';
|
|
|
-import { DeleteTimerInput } from '../models';
|
|
|
-import { SetTimerStatusInput } from '../models';
|
|
|
-import { UpdateTimerInput } from '../models';
|
|
|
-/**
|
|
|
- * SysTimerApi - axios parameter creator
|
|
|
- * @export
|
|
|
- */
|
|
|
-export const SysTimerApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
|
- return {
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 增加任务
|
|
|
- * @param {AddTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- sysTimerAddPost: async (body?: AddTimerInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/sysTimer/add`;
|
|
|
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
- const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
|
- let baseOptions;
|
|
|
- if (configuration) {
|
|
|
- baseOptions = configuration.baseOptions;
|
|
|
- }
|
|
|
- const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
|
|
- const localVarHeaderParameter = {} as any;
|
|
|
- const localVarQueryParameter = {} as any;
|
|
|
-
|
|
|
- // authentication Bearer required
|
|
|
-
|
|
|
- localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
|
-
|
|
|
- const query = new URLSearchParams(localVarUrlObj.search);
|
|
|
- for (const key in localVarQueryParameter) {
|
|
|
- query.set(key, localVarQueryParameter[key]);
|
|
|
- }
|
|
|
- for (const key in options.params) {
|
|
|
- query.set(key, options.params[key]);
|
|
|
- }
|
|
|
- localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
|
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
- const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
|
- localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
|
-
|
|
|
- return {
|
|
|
- url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
|
- options: localVarRequestOptions,
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 删除任务
|
|
|
- * @param {DeleteTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- sysTimerDeletePost: async (body?: DeleteTimerInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/sysTimer/delete`;
|
|
|
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
- const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
|
- let baseOptions;
|
|
|
- if (configuration) {
|
|
|
- baseOptions = configuration.baseOptions;
|
|
|
- }
|
|
|
- const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
|
|
- const localVarHeaderParameter = {} as any;
|
|
|
- const localVarQueryParameter = {} as any;
|
|
|
-
|
|
|
- // authentication Bearer required
|
|
|
-
|
|
|
- localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
|
-
|
|
|
- const query = new URLSearchParams(localVarUrlObj.search);
|
|
|
- for (const key in localVarQueryParameter) {
|
|
|
- query.set(key, localVarQueryParameter[key]);
|
|
|
- }
|
|
|
- for (const key in options.params) {
|
|
|
- query.set(key, options.params[key]);
|
|
|
- }
|
|
|
- localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
|
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
- const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
|
- localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
|
-
|
|
|
- return {
|
|
|
- url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
|
- options: localVarRequestOptions,
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 获取任务分页列表
|
|
|
- * @param {string} [timerName] 任务名称
|
|
|
- * @param {number} [page] 当前页码
|
|
|
- * @param {number} [pageSize] 页码容量
|
|
|
- * @param {string} [field] 排序字段
|
|
|
- * @param {string} [order] 排序方向
|
|
|
- * @param {string} [descStr] 降序排序
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- sysTimerPageGet: async (timerName?: string, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/sysTimer/page`;
|
|
|
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
- const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
|
- let baseOptions;
|
|
|
- if (configuration) {
|
|
|
- baseOptions = configuration.baseOptions;
|
|
|
- }
|
|
|
- const localVarRequestOptions :AxiosRequestConfig = { method: 'GET', ...baseOptions, ...options};
|
|
|
- const localVarHeaderParameter = {} as any;
|
|
|
- const localVarQueryParameter = {} as any;
|
|
|
-
|
|
|
- // authentication Bearer required
|
|
|
-
|
|
|
- if (timerName !== undefined) {
|
|
|
- localVarQueryParameter['TimerName'] = timerName;
|
|
|
- }
|
|
|
-
|
|
|
- if (page !== undefined) {
|
|
|
- localVarQueryParameter['Page'] = page;
|
|
|
- }
|
|
|
-
|
|
|
- if (pageSize !== undefined) {
|
|
|
- localVarQueryParameter['PageSize'] = pageSize;
|
|
|
- }
|
|
|
-
|
|
|
- if (field !== undefined) {
|
|
|
- localVarQueryParameter['Field'] = field;
|
|
|
- }
|
|
|
-
|
|
|
- if (order !== undefined) {
|
|
|
- localVarQueryParameter['Order'] = order;
|
|
|
- }
|
|
|
-
|
|
|
- if (descStr !== undefined) {
|
|
|
- localVarQueryParameter['DescStr'] = descStr;
|
|
|
- }
|
|
|
-
|
|
|
- const query = new URLSearchParams(localVarUrlObj.search);
|
|
|
- for (const key in localVarQueryParameter) {
|
|
|
- query.set(key, localVarQueryParameter[key]);
|
|
|
- }
|
|
|
- for (const key in options.params) {
|
|
|
- query.set(key, options.params[key]);
|
|
|
- }
|
|
|
- localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
|
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
-
|
|
|
- return {
|
|
|
- url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
|
- options: localVarRequestOptions,
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 设置任务状态
|
|
|
- * @param {SetTimerStatusInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- sysTimerSetStatusPost: async (body?: SetTimerStatusInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/sysTimer/setStatus`;
|
|
|
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
- const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
|
- let baseOptions;
|
|
|
- if (configuration) {
|
|
|
- baseOptions = configuration.baseOptions;
|
|
|
- }
|
|
|
- const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
|
|
- const localVarHeaderParameter = {} as any;
|
|
|
- const localVarQueryParameter = {} as any;
|
|
|
-
|
|
|
- // authentication Bearer required
|
|
|
-
|
|
|
- localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
|
-
|
|
|
- const query = new URLSearchParams(localVarUrlObj.search);
|
|
|
- for (const key in localVarQueryParameter) {
|
|
|
- query.set(key, localVarQueryParameter[key]);
|
|
|
- }
|
|
|
- for (const key in options.params) {
|
|
|
- query.set(key, options.params[key]);
|
|
|
- }
|
|
|
- localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
|
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
- const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
|
- localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
|
-
|
|
|
- return {
|
|
|
- url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
|
- options: localVarRequestOptions,
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 更新任务
|
|
|
- * @param {UpdateTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- sysTimerUpdatePost: async (body?: UpdateTimerInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
- const localVarPath = `/sysTimer/update`;
|
|
|
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
- const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
|
- let baseOptions;
|
|
|
- if (configuration) {
|
|
|
- baseOptions = configuration.baseOptions;
|
|
|
- }
|
|
|
- const localVarRequestOptions :AxiosRequestConfig = { method: 'POST', ...baseOptions, ...options};
|
|
|
- const localVarHeaderParameter = {} as any;
|
|
|
- const localVarQueryParameter = {} as any;
|
|
|
-
|
|
|
- // authentication Bearer required
|
|
|
-
|
|
|
- localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
|
-
|
|
|
- const query = new URLSearchParams(localVarUrlObj.search);
|
|
|
- for (const key in localVarQueryParameter) {
|
|
|
- query.set(key, localVarQueryParameter[key]);
|
|
|
- }
|
|
|
- for (const key in options.params) {
|
|
|
- query.set(key, options.params[key]);
|
|
|
- }
|
|
|
- localVarUrlObj.search = (new URLSearchParams(query)).toString();
|
|
|
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
|
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
|
- const needsSerialization = (typeof body !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
|
- localVarRequestOptions.data = needsSerialization ? JSON.stringify(body !== undefined ? body : {}) : (body || "");
|
|
|
-
|
|
|
- return {
|
|
|
- url: localVarUrlObj.pathname + localVarUrlObj.search + localVarUrlObj.hash,
|
|
|
- options: localVarRequestOptions,
|
|
|
- };
|
|
|
- },
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-/**
|
|
|
- * SysTimerApi - functional programming interface
|
|
|
- * @export
|
|
|
- */
|
|
|
-export const SysTimerApiFp = function(configuration?: Configuration) {
|
|
|
- return {
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 增加任务
|
|
|
- * @param {AddTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerAddPost(body?: AddTimerInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
|
|
- const localVarAxiosArgs = await SysTimerApiAxiosParamCreator(configuration).sysTimerAddPost(body, options);
|
|
|
- return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
- const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
|
- return axios.request(axiosRequestArgs);
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 删除任务
|
|
|
- * @param {DeleteTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerDeletePost(body?: DeleteTimerInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
|
|
- const localVarAxiosArgs = await SysTimerApiAxiosParamCreator(configuration).sysTimerDeletePost(body, options);
|
|
|
- return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
- const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
|
- return axios.request(axiosRequestArgs);
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 获取任务分页列表
|
|
|
- * @param {string} [timerName] 任务名称
|
|
|
- * @param {number} [page] 当前页码
|
|
|
- * @param {number} [pageSize] 页码容量
|
|
|
- * @param {string} [field] 排序字段
|
|
|
- * @param {string} [order] 排序方向
|
|
|
- * @param {string} [descStr] 降序排序
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerPageGet(timerName?: string, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultSqlSugarPagedListTimerOutput>>> {
|
|
|
- const localVarAxiosArgs = await SysTimerApiAxiosParamCreator(configuration).sysTimerPageGet(timerName, page, pageSize, field, order, descStr, options);
|
|
|
- return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
- const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
|
- return axios.request(axiosRequestArgs);
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 设置任务状态
|
|
|
- * @param {SetTimerStatusInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerSetStatusPost(body?: SetTimerStatusInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
|
|
- const localVarAxiosArgs = await SysTimerApiAxiosParamCreator(configuration).sysTimerSetStatusPost(body, options);
|
|
|
- return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
- const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
|
- return axios.request(axiosRequestArgs);
|
|
|
- };
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 更新任务
|
|
|
- * @param {UpdateTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerUpdatePost(body?: UpdateTimerInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
|
|
|
- const localVarAxiosArgs = await SysTimerApiAxiosParamCreator(configuration).sysTimerUpdatePost(body, options);
|
|
|
- return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
- const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
|
- return axios.request(axiosRequestArgs);
|
|
|
- };
|
|
|
- },
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-/**
|
|
|
- * SysTimerApi - factory interface
|
|
|
- * @export
|
|
|
- */
|
|
|
-export const SysTimerApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
|
- return {
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 增加任务
|
|
|
- * @param {AddTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerAddPost(body?: AddTimerInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(configuration).sysTimerAddPost(body, options).then((request) => request(axios, basePath));
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 删除任务
|
|
|
- * @param {DeleteTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerDeletePost(body?: DeleteTimerInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(configuration).sysTimerDeletePost(body, options).then((request) => request(axios, basePath));
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 获取任务分页列表
|
|
|
- * @param {string} [timerName] 任务名称
|
|
|
- * @param {number} [page] 当前页码
|
|
|
- * @param {number} [pageSize] 页码容量
|
|
|
- * @param {string} [field] 排序字段
|
|
|
- * @param {string} [order] 排序方向
|
|
|
- * @param {string} [descStr] 降序排序
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerPageGet(timerName?: string, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultSqlSugarPagedListTimerOutput>> {
|
|
|
- return SysTimerApiFp(configuration).sysTimerPageGet(timerName, page, pageSize, field, order, descStr, options).then((request) => request(axios, basePath));
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 设置任务状态
|
|
|
- * @param {SetTimerStatusInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerSetStatusPost(body?: SetTimerStatusInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(configuration).sysTimerSetStatusPost(body, options).then((request) => request(axios, basePath));
|
|
|
- },
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 更新任务
|
|
|
- * @param {UpdateTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- */
|
|
|
- async sysTimerUpdatePost(body?: UpdateTimerInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(configuration).sysTimerUpdatePost(body, options).then((request) => request(axios, basePath));
|
|
|
- },
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-/**
|
|
|
- * SysTimerApi - object-oriented interface
|
|
|
- * @export
|
|
|
- * @class SysTimerApi
|
|
|
- * @extends {BaseAPI}
|
|
|
- */
|
|
|
-export class SysTimerApi extends BaseAPI {
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 增加任务
|
|
|
- * @param {AddTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- * @memberof SysTimerApi
|
|
|
- */
|
|
|
- public async sysTimerAddPost(body?: AddTimerInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(this.configuration).sysTimerAddPost(body, options).then((request) => request(this.axios, this.basePath));
|
|
|
- }
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 删除任务
|
|
|
- * @param {DeleteTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- * @memberof SysTimerApi
|
|
|
- */
|
|
|
- public async sysTimerDeletePost(body?: DeleteTimerInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(this.configuration).sysTimerDeletePost(body, options).then((request) => request(this.axios, this.basePath));
|
|
|
- }
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 获取任务分页列表
|
|
|
- * @param {string} [timerName] 任务名称
|
|
|
- * @param {number} [page] 当前页码
|
|
|
- * @param {number} [pageSize] 页码容量
|
|
|
- * @param {string} [field] 排序字段
|
|
|
- * @param {string} [order] 排序方向
|
|
|
- * @param {string} [descStr] 降序排序
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- * @memberof SysTimerApi
|
|
|
- */
|
|
|
- public async sysTimerPageGet(timerName?: string, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultSqlSugarPagedListTimerOutput>> {
|
|
|
- return SysTimerApiFp(this.configuration).sysTimerPageGet(timerName, page, pageSize, field, order, descStr, options).then((request) => request(this.axios, this.basePath));
|
|
|
- }
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 设置任务状态
|
|
|
- * @param {SetTimerStatusInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- * @memberof SysTimerApi
|
|
|
- */
|
|
|
- public async sysTimerSetStatusPost(body?: SetTimerStatusInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(this.configuration).sysTimerSetStatusPost(body, options).then((request) => request(this.axios, this.basePath));
|
|
|
- }
|
|
|
- /**
|
|
|
- *
|
|
|
- * @summary 更新任务
|
|
|
- * @param {UpdateTimerInput} [body]
|
|
|
- * @param {*} [options] Override http request option.
|
|
|
- * @throws {RequiredError}
|
|
|
- * @memberof SysTimerApi
|
|
|
- */
|
|
|
- public async sysTimerUpdatePost(body?: UpdateTimerInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
|
|
|
- return SysTimerApiFp(this.configuration).sysTimerUpdatePost(body, options).then((request) => request(this.axios, this.basePath));
|
|
|
- }
|
|
|
-}
|