🍅 build: 生成前端API代码

This commit is contained in:
喵你个汪呀 2025-08-20 15:00:44 +08:00
parent 23f3c84730
commit 868ed1bc2b
43 changed files with 1889 additions and 0 deletions

View File

@ -38,6 +38,7 @@ export * from './apis/sys-job-api';
export * from './apis/sys-ldap-api';
export * from './apis/sys-log-diff-api';
export * from './apis/sys-log-ex-api';
export * from './apis/sys-log-http-api';
export * from './apis/sys-log-msg-api';
export * from './apis/sys-log-op-api';
export * from './apis/sys-log-vis-api';

View File

@ -0,0 +1,653 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { AdminNETResultListStatLogOutput } from '../models';
import { AdminNETResultListSysLogHttp } from '../models';
import { AdminNETResultSqlSugarPagedListPageLogHttpOutput } from '../models';
import { AdminNETResultSysLogHttp } from '../models';
import { ExportLogHttpInput } from '../models';
import { Filter } from '../models';
import { FilterLogicEnum } from '../models';
import { FilterOperatorEnum } from '../models';
import { PageLogHttpInput } from '../models';
import { YesNoEnum } from '../models';
/**
* SysLogHttpApi - axios parameter creator
* @export
*/
export const SysLogHttpApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
*
* @summary
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysLogHttpDetailGet: async (id: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'id' is not null or undefined
if (id === null || id === undefined) {
throw new RequiredError('id','Required parameter id was null or undefined when calling apiSysLogHttpDetailGet.');
}
const localVarPath = `/api/sysLogHttp/detail`;
// 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
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
if (id !== undefined) {
localVarQueryParameter['Id'] = id;
}
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 {ExportLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysLogHttpExportPost: async (body?: ExportLogHttpInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysLogHttp/export`;
// 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
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
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} [searchKey]
* @param {string} [httpMethod]
* @param {YesNoEnum} [isSuccessStatusCode]
* @param {string} [requestUrl]
* @param {string} [requestBody]
* @param {number} [statusCode]
* @param {string} [responseBody]
* @param {string} [exception]
* @param {Date} [createTime]
* @param {Array<Date>} [createTimeRange]
* @param {number} [page]
* @param {number} [pageSize]
* @param {string} [field]
* @param {string} [order]
* @param {string} [descStr]
* @param {Array<string>} [searchFields]
* @param {string} [searchKeyword]
* @param {string} [keyword]
* @param {FilterLogicEnum} [filterLogic]
* @param {Array<Filter>} [filterFilters]
* @param {string} [filterField]
* @param {FilterOperatorEnum} [filterOperator]
* @param {any} [filterValue]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysLogHttpListGet: async (searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysLogHttp/list`;
// 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
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
if (searchKey !== undefined) {
localVarQueryParameter['SearchKey'] = searchKey;
}
if (httpMethod !== undefined) {
localVarQueryParameter['HttpMethod'] = httpMethod;
}
if (isSuccessStatusCode !== undefined) {
localVarQueryParameter['IsSuccessStatusCode'] = isSuccessStatusCode;
}
if (requestUrl !== undefined) {
localVarQueryParameter['RequestUrl'] = requestUrl;
}
if (requestBody !== undefined) {
localVarQueryParameter['RequestBody'] = requestBody;
}
if (statusCode !== undefined) {
localVarQueryParameter['StatusCode'] = statusCode;
}
if (responseBody !== undefined) {
localVarQueryParameter['ResponseBody'] = responseBody;
}
if (exception !== undefined) {
localVarQueryParameter['Exception'] = exception;
}
if (createTime !== undefined) {
localVarQueryParameter['CreateTime'] = (createTime as any instanceof Date) ?
(createTime as any).toISOString() :
createTime;
}
if (createTimeRange) {
localVarQueryParameter['CreateTimeRange'] = createTimeRange;
}
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;
}
if (searchFields) {
localVarQueryParameter['Search.Fields'] = searchFields;
}
if (searchKeyword !== undefined) {
localVarQueryParameter['Search.Keyword'] = searchKeyword;
}
if (keyword !== undefined) {
localVarQueryParameter['Keyword'] = keyword;
}
if (filterLogic !== undefined) {
localVarQueryParameter['Filter.Logic'] = filterLogic;
}
if (filterFilters) {
localVarQueryParameter['Filter.Filters'] = filterFilters;
}
if (filterField !== undefined) {
localVarQueryParameter['Filter.Field'] = filterField;
}
if (filterOperator !== undefined) {
localVarQueryParameter['Filter.Operator'] = filterOperator;
}
if (filterValue !== undefined) {
localVarQueryParameter['Filter.Value'] = filterValue;
}
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 {PageLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysLogHttpPagePost: async (body?: PageLogHttpInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysLogHttp/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: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Bearer required
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
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 {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiSysLogHttpYearDayStatsGet: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/sysLogHttp/yearDayStats`;
// 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
// http bearer authentication required
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + accessToken;
}
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,
};
},
}
};
/**
* SysLogHttpApi - functional programming interface
* @export
*/
export const SysLogHttpApiFp = function(configuration?: Configuration) {
return {
/**
*
* @summary
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpDetailGet(id: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultSysLogHttp>>> {
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpDetailGet(id, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {ExportLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpExportPost(body?: ExportLogHttpInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<void>>> {
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpExportPost(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} [searchKey]
* @param {string} [httpMethod]
* @param {YesNoEnum} [isSuccessStatusCode]
* @param {string} [requestUrl]
* @param {string} [requestBody]
* @param {number} [statusCode]
* @param {string} [responseBody]
* @param {string} [exception]
* @param {Date} [createTime]
* @param {Array<Date>} [createTimeRange]
* @param {number} [page]
* @param {number} [pageSize]
* @param {string} [field]
* @param {string} [order]
* @param {string} [descStr]
* @param {Array<string>} [searchFields]
* @param {string} [searchKeyword]
* @param {string} [keyword]
* @param {FilterLogicEnum} [filterLogic]
* @param {Array<Filter>} [filterFilters]
* @param {string} [filterField]
* @param {FilterOperatorEnum} [filterOperator]
* @param {any} [filterValue]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpListGet(searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListSysLogHttp>>> {
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpListGet(searchKey, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
/**
*
* @summary 🔖
* @param {PageLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpPagePost(body?: PageLogHttpInput, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultSqlSugarPagedListPageLogHttpOutput>>> {
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpPagePost(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 {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpYearDayStatsGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminNETResultListStatLogOutput>>> {
const localVarAxiosArgs = await SysLogHttpApiAxiosParamCreator(configuration).apiSysLogHttpYearDayStatsGet(options);
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
return axios.request(axiosRequestArgs);
};
},
}
};
/**
* SysLogHttpApi - factory interface
* @export
*/
export const SysLogHttpApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
return {
/**
*
* @summary
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpDetailGet(id: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultSysLogHttp>> {
return SysLogHttpApiFp(configuration).apiSysLogHttpDetailGet(id, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {ExportLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpExportPost(body?: ExportLogHttpInput, options?: AxiosRequestConfig): Promise<AxiosResponse<void>> {
return SysLogHttpApiFp(configuration).apiSysLogHttpExportPost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {string} [searchKey]
* @param {string} [httpMethod]
* @param {YesNoEnum} [isSuccessStatusCode]
* @param {string} [requestUrl]
* @param {string} [requestBody]
* @param {number} [statusCode]
* @param {string} [responseBody]
* @param {string} [exception]
* @param {Date} [createTime]
* @param {Array<Date>} [createTimeRange]
* @param {number} [page]
* @param {number} [pageSize]
* @param {string} [field]
* @param {string} [order]
* @param {string} [descStr]
* @param {Array<string>} [searchFields]
* @param {string} [searchKeyword]
* @param {string} [keyword]
* @param {FilterLogicEnum} [filterLogic]
* @param {Array<Filter>} [filterFilters]
* @param {string} [filterField]
* @param {FilterOperatorEnum} [filterOperator]
* @param {any} [filterValue]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpListGet(searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListSysLogHttp>> {
return SysLogHttpApiFp(configuration).apiSysLogHttpListGet(searchKey, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {PageLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpPagePost(body?: PageLogHttpInput, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultSqlSugarPagedListPageLogHttpOutput>> {
return SysLogHttpApiFp(configuration).apiSysLogHttpPagePost(body, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 🔖
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiSysLogHttpYearDayStatsGet(options?: AxiosRequestConfig): Promise<AxiosResponse<AdminNETResultListStatLogOutput>> {
return SysLogHttpApiFp(configuration).apiSysLogHttpYearDayStatsGet(options).then((request) => request(axios, basePath));
},
};
};
/**
* SysLogHttpApi - object-oriented interface
* @export
* @class SysLogHttpApi
* @extends {BaseAPI}
*/
export class SysLogHttpApi extends BaseAPI {
/**
*
* @summary
* @param {number} id Id
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysLogHttpApi
*/
public async apiSysLogHttpDetailGet(id: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultSysLogHttp>> {
return SysLogHttpApiFp(this.configuration).apiSysLogHttpDetailGet(id, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {ExportLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysLogHttpApi
*/
public async apiSysLogHttpExportPost(body?: ExportLogHttpInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<void>> {
return SysLogHttpApiFp(this.configuration).apiSysLogHttpExportPost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {string} [searchKey]
* @param {string} [httpMethod]
* @param {YesNoEnum} [isSuccessStatusCode]
* @param {string} [requestUrl]
* @param {string} [requestBody]
* @param {number} [statusCode]
* @param {string} [responseBody]
* @param {string} [exception]
* @param {Date} [createTime]
* @param {Array<Date>} [createTimeRange]
* @param {number} [page]
* @param {number} [pageSize]
* @param {string} [field]
* @param {string} [order]
* @param {string} [descStr]
* @param {Array<string>} [searchFields]
* @param {string} [searchKeyword]
* @param {string} [keyword]
* @param {FilterLogicEnum} [filterLogic]
* @param {Array<Filter>} [filterFilters]
* @param {string} [filterField]
* @param {FilterOperatorEnum} [filterOperator]
* @param {any} [filterValue]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysLogHttpApi
*/
public async apiSysLogHttpListGet(searchKey?: string, httpMethod?: string, isSuccessStatusCode?: YesNoEnum, requestUrl?: string, requestBody?: string, statusCode?: number, responseBody?: string, exception?: string, createTime?: Date, createTimeRange?: Array<Date>, page?: number, pageSize?: number, field?: string, order?: string, descStr?: string, searchFields?: Array<string>, searchKeyword?: string, keyword?: string, filterLogic?: FilterLogicEnum, filterFilters?: Array<Filter>, filterField?: string, filterOperator?: FilterOperatorEnum, filterValue?: any, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListSysLogHttp>> {
return SysLogHttpApiFp(this.configuration).apiSysLogHttpListGet(searchKey, httpMethod, isSuccessStatusCode, requestUrl, requestBody, statusCode, responseBody, exception, createTime, createTimeRange, page, pageSize, field, order, descStr, searchFields, searchKeyword, keyword, filterLogic, filterFilters, filterField, filterOperator, filterValue, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {PageLogHttpInput} [body]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysLogHttpApi
*/
public async apiSysLogHttpPagePost(body?: PageLogHttpInput, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultSqlSugarPagedListPageLogHttpOutput>> {
return SysLogHttpApiFp(this.configuration).apiSysLogHttpPagePost(body, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 🔖
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SysLogHttpApi
*/
public async apiSysLogHttpYearDayStatsGet(options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminNETResultListStatLogOutput>> {
return SysLogHttpApiFp(this.configuration).apiSysLogHttpYearDayStatsGet(options).then((request) => request(this.axios, this.basePath));
}
}

View File

@ -0,0 +1,71 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { SysLogHttp } from './sys-log-http';
/**
*
*
* @export
* @interface AdminNETResultListSysLogHttp
*/
export interface AdminNETResultListSysLogHttp {
/**
*
*
* @type {number}
* @memberof AdminNETResultListSysLogHttp
*/
code?: number;
/**
* successwarningerror
*
* @type {string}
* @memberof AdminNETResultListSysLogHttp
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof AdminNETResultListSysLogHttp
*/
message?: string | null;
/**
*
*
* @type {Array<SysLogHttp>}
* @memberof AdminNETResultListSysLogHttp
*/
result?: Array<SysLogHttp> | null;
/**
*
*
* @type {any}
* @memberof AdminNETResultListSysLogHttp
*/
extras?: any | null;
/**
*
*
* @type {Date}
* @memberof AdminNETResultListSysLogHttp
*/
time?: Date;
}

View File

@ -0,0 +1,69 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { SqlSugarPagedListPageLogHttpOutput } from './sql-sugar-paged-list-page-log-http-output';
/**
*
*
* @export
* @interface AdminNETResultSqlSugarPagedListPageLogHttpOutput
*/
export interface AdminNETResultSqlSugarPagedListPageLogHttpOutput {
/**
*
*
* @type {number}
* @memberof AdminNETResultSqlSugarPagedListPageLogHttpOutput
*/
code?: number;
/**
* successwarningerror
*
* @type {string}
* @memberof AdminNETResultSqlSugarPagedListPageLogHttpOutput
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof AdminNETResultSqlSugarPagedListPageLogHttpOutput
*/
message?: string | null;
/**
* @type {SqlSugarPagedListPageLogHttpOutput}
* @memberof AdminNETResultSqlSugarPagedListPageLogHttpOutput
*/
result?: SqlSugarPagedListPageLogHttpOutput;
/**
*
*
* @type {any}
* @memberof AdminNETResultSqlSugarPagedListPageLogHttpOutput
*/
extras?: any | null;
/**
*
*
* @type {Date}
* @memberof AdminNETResultSqlSugarPagedListPageLogHttpOutput
*/
time?: Date;
}

View File

@ -0,0 +1,69 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { SysLogHttp } from './sys-log-http';
/**
*
*
* @export
* @interface AdminNETResultSysLogHttp
*/
export interface AdminNETResultSysLogHttp {
/**
*
*
* @type {number}
* @memberof AdminNETResultSysLogHttp
*/
code?: number;
/**
* successwarningerror
*
* @type {string}
* @memberof AdminNETResultSysLogHttp
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof AdminNETResultSysLogHttp
*/
message?: string | null;
/**
* @type {SysLogHttp}
* @memberof AdminNETResultSysLogHttp
*/
result?: SysLogHttp;
/**
*
*
* @type {any}
* @memberof AdminNETResultSysLogHttp
*/
extras?: any | null;
/**
*
*
* @type {Date}
* @memberof AdminNETResultSysLogHttp
*/
time?: Date;
}

View File

@ -0,0 +1,171 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { Filter } from './filter';
import { Search } from './search';
import { YesNoEnum } from './yes-no-enum';
/**
*
*
* @export
* @interface ExportLogHttpInput
*/
export interface ExportLogHttpInput {
/**
* @type {Search}
* @memberof ExportLogHttpInput
*/
search?: Search;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
keyword?: string | null;
/**
* @type {Filter}
* @memberof ExportLogHttpInput
*/
filter?: Filter;
/**
*
*
* @type {number}
* @memberof ExportLogHttpInput
*/
page?: number;
/**
*
*
* @type {number}
* @memberof ExportLogHttpInput
*/
pageSize?: number;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
field?: string | null;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
order?: string | null;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
descStr?: string | null;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
searchKey?: string | null;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
httpMethod?: string | null;
/**
* @type {YesNoEnum}
* @memberof ExportLogHttpInput
*/
isSuccessStatusCode?: YesNoEnum;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
requestUrl?: string | null;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
requestBody?: string | null;
/**
*
*
* @type {number}
* @memberof ExportLogHttpInput
*/
statusCode?: number | null;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
responseBody?: string | null;
/**
*
*
* @type {string}
* @memberof ExportLogHttpInput
*/
exception?: string | null;
/**
*
*
* @type {Date}
* @memberof ExportLogHttpInput
*/
createTime?: Date | null;
/**
*
*
* @type {Array<Date>}
* @memberof ExportLogHttpInput
*/
createTimeRange?: Array<Date> | null;
/**
*
*
* @type {Array<number>}
* @memberof ExportLogHttpInput
*/
selectKeyList?: Array<number> | null;
}

View File

@ -0,0 +1,83 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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.
*/
/**
*
* @export
* @enum {string}
*/
export enum HttpStatusCode {
NUMBER_100 = 100,
NUMBER_101 = 101,
NUMBER_102 = 102,
NUMBER_103 = 103,
NUMBER_200 = 200,
NUMBER_201 = 201,
NUMBER_202 = 202,
NUMBER_203 = 203,
NUMBER_204 = 204,
NUMBER_205 = 205,
NUMBER_206 = 206,
NUMBER_207 = 207,
NUMBER_208 = 208,
NUMBER_226 = 226,
NUMBER_300 = 300,
NUMBER_301 = 301,
NUMBER_302 = 302,
NUMBER_303 = 303,
NUMBER_304 = 304,
NUMBER_305 = 305,
NUMBER_306 = 306,
NUMBER_307 = 307,
NUMBER_308 = 308,
NUMBER_400 = 400,
NUMBER_401 = 401,
NUMBER_402 = 402,
NUMBER_403 = 403,
NUMBER_404 = 404,
NUMBER_405 = 405,
NUMBER_406 = 406,
NUMBER_407 = 407,
NUMBER_408 = 408,
NUMBER_409 = 409,
NUMBER_410 = 410,
NUMBER_411 = 411,
NUMBER_412 = 412,
NUMBER_413 = 413,
NUMBER_414 = 414,
NUMBER_415 = 415,
NUMBER_416 = 416,
NUMBER_417 = 417,
NUMBER_421 = 421,
NUMBER_422 = 422,
NUMBER_423 = 423,
NUMBER_424 = 424,
NUMBER_426 = 426,
NUMBER_428 = 428,
NUMBER_429 = 429,
NUMBER_431 = 431,
NUMBER_451 = 451,
NUMBER_500 = 500,
NUMBER_501 = 501,
NUMBER_502 = 502,
NUMBER_503 = 503,
NUMBER_504 = 504,
NUMBER_505 = 505,
NUMBER_506 = 506,
NUMBER_507 = 507,
NUMBER_508 = 508,
NUMBER_510 = 510,
NUMBER_511 = 511
}

View File

@ -80,6 +80,7 @@ export * from './admin-netresult-list-sys-file';
export * from './admin-netresult-list-sys-job-cluster';
export * from './admin-netresult-list-sys-job-trigger';
export * from './admin-netresult-list-sys-ldap';
export * from './admin-netresult-list-sys-log-http';
export * from './admin-netresult-list-sys-menu';
export * from './admin-netresult-list-sys-notice';
export * from './admin-netresult-list-sys-org';
@ -103,6 +104,7 @@ export * from './admin-netresult-sql-sugar-paged-list-chat-list-output';
export * from './admin-netresult-sql-sugar-paged-list-job-detail-output';
export * from './admin-netresult-sql-sugar-paged-list-oauth-user-output';
export * from './admin-netresult-sql-sugar-paged-list-open-access-output';
export * from './admin-netresult-sql-sugar-paged-list-page-log-http-output';
export * from './admin-netresult-sql-sugar-paged-list-page-pos-output';
export * from './admin-netresult-sql-sugar-paged-list-page-role-output';
export * from './admin-netresult-sql-sugar-paged-list-page-serial-output';
@ -142,6 +144,7 @@ export * from './admin-netresult-sys-file';
export * from './admin-netresult-sys-ldap';
export * from './admin-netresult-sys-log-diff';
export * from './admin-netresult-sys-log-ex';
export * from './admin-netresult-sys-log-http';
export * from './admin-netresult-sys-log-msg';
export * from './admin-netresult-sys-log-op';
export * from './admin-netresult-sys-notice';
@ -256,6 +259,7 @@ export * from './enum-entity';
export * from './enum-type-output';
export * from './event-attributes';
export * from './event-info';
export * from './export-log-http-input';
export * from './export-proc-by-tmpinput';
export * from './export-proc-input';
export * from './ext-user-info';
@ -283,6 +287,7 @@ export * from './goods-detail';
export * from './gpu-info';
export * from './grant-role-output';
export * from './http-method-enum';
export * from './http-status-code';
export * from './iaction-result';
export * from './icomponent';
export * from './icontainer';
@ -363,6 +368,8 @@ export * from './page-file-input';
export * from './page-job-detail-input';
export * from './page-job-trigger-record-input';
export * from './page-ldap-input';
export * from './page-log-http-input';
export * from './page-log-http-output';
export * from './page-log-input';
export * from './page-msg-log-input';
export * from './page-notice-input';
@ -436,6 +443,7 @@ export * from './sql-sugar-paged-list-chat-list-output';
export * from './sql-sugar-paged-list-job-detail-output';
export * from './sql-sugar-paged-list-oauth-user-output';
export * from './sql-sugar-paged-list-open-access-output';
export * from './sql-sugar-paged-list-page-log-http-output';
export * from './sql-sugar-paged-list-page-pos-output';
export * from './sql-sugar-paged-list-page-role-output';
export * from './sql-sugar-paged-list-page-serial-output';
@ -493,6 +501,7 @@ export * from './sys-job-trigger-record';
export * from './sys-ldap';
export * from './sys-log-diff';
export * from './sys-log-ex';
export * from './sys-log-http';
export * from './sys-log-msg';
export * from './sys-log-op';
export * from './sys-log-vis';

View File

@ -0,0 +1,163 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { Filter } from './filter';
import { Search } from './search';
import { YesNoEnum } from './yes-no-enum';
/**
*
*
* @export
* @interface PageLogHttpInput
*/
export interface PageLogHttpInput {
/**
* @type {Search}
* @memberof PageLogHttpInput
*/
search?: Search;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
keyword?: string | null;
/**
* @type {Filter}
* @memberof PageLogHttpInput
*/
filter?: Filter;
/**
*
*
* @type {number}
* @memberof PageLogHttpInput
*/
page?: number;
/**
*
*
* @type {number}
* @memberof PageLogHttpInput
*/
pageSize?: number;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
field?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
order?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
descStr?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
searchKey?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
httpMethod?: string | null;
/**
* @type {YesNoEnum}
* @memberof PageLogHttpInput
*/
isSuccessStatusCode?: YesNoEnum;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
requestUrl?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
requestBody?: string | null;
/**
*
*
* @type {number}
* @memberof PageLogHttpInput
*/
statusCode?: number | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
responseBody?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpInput
*/
exception?: string | null;
/**
*
*
* @type {Date}
* @memberof PageLogHttpInput
*/
createTime?: Date | null;
/**
*
*
* @type {Array<Date>}
* @memberof PageLogHttpInput
*/
createTimeRange?: Array<Date> | null;
}

View File

@ -0,0 +1,133 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { YesNoEnum } from './yes-no-enum';
/**
*
*
* @export
* @interface PageLogHttpOutput
*/
export interface PageLogHttpOutput {
/**
* Id
*
* @type {number}
* @memberof PageLogHttpOutput
*/
id?: number | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpOutput
*/
httpMethod?: string | null;
/**
* @type {YesNoEnum}
* @memberof PageLogHttpOutput
*/
isSuccessStatusCode?: YesNoEnum;
/**
*
*
* @type {string}
* @memberof PageLogHttpOutput
*/
requestUrl?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpOutput
*/
requestHeaders?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpOutput
*/
requestBody?: string | null;
/**
*
*
* @type {number}
* @memberof PageLogHttpOutput
*/
statusCode?: number | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpOutput
*/
responseHeaders?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpOutput
*/
responseBody?: string | null;
/**
*
*
* @type {string}
* @memberof PageLogHttpOutput
*/
exception?: string | null;
/**
*
*
* @type {Date}
* @memberof PageLogHttpOutput
*/
startTime?: Date | null;
/**
*
*
* @type {Date}
* @memberof PageLogHttpOutput
*/
endTime?: Date | null;
/**
*
*
* @type {number}
* @memberof PageLogHttpOutput
*/
elapsed?: number | null;
/**
*
*
* @type {Date}
* @memberof PageLogHttpOutput
*/
createTime?: Date | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListChatListOutput {
* @memberof SqlSugarPagedListChatListOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListChatListOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListJobDetailOutput {
* @memberof SqlSugarPagedListJobDetailOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListJobDetailOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListOAuthUserOutput {
* @memberof SqlSugarPagedListOAuthUserOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListOAuthUserOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListOpenAccessOutput {
* @memberof SqlSugarPagedListOpenAccessOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListOpenAccessOutput
*/
totalInfo?: any | null;
}

View File

@ -0,0 +1,87 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { PageLogHttpOutput } from './page-log-http-output';
/**
*
*
* @export
* @interface SqlSugarPagedListPageLogHttpOutput
*/
export interface SqlSugarPagedListPageLogHttpOutput {
/**
*
*
* @type {number}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
page?: number;
/**
*
*
* @type {number}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
pageSize?: number;
/**
*
*
* @type {number}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
total?: number;
/**
*
*
* @type {number}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
totalPages?: number;
/**
*
*
* @type {Array<PageLogHttpOutput>}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
items?: Array<PageLogHttpOutput> | null;
/**
*
*
* @type {boolean}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
hasPrevPage?: boolean;
/**
*
*
* @type {boolean}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListPageLogHttpOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListPagePosOutput {
* @memberof SqlSugarPagedListPagePosOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListPagePosOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListPageRoleOutput {
* @memberof SqlSugarPagedListPageRoleOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListPageRoleOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListPageSerialOutput {
* @memberof SqlSugarPagedListPageSerialOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListPageSerialOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListReportConfigOutput {
* @memberof SqlSugarPagedListReportConfigOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListReportConfigOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysCodeGen {
* @memberof SqlSugarPagedListSysCodeGen
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysCodeGen
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysConfigTenant {
* @memberof SqlSugarPagedListSysConfigTenant
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysConfigTenant
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysConfig {
* @memberof SqlSugarPagedListSysConfig
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysConfig
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysDictData {
* @memberof SqlSugarPagedListSysDictData
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysDictData
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysDictType {
* @memberof SqlSugarPagedListSysDictType
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysDictType
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysFile {
* @memberof SqlSugarPagedListSysFile
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysFile
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysJobTriggerRecord {
* @memberof SqlSugarPagedListSysJobTriggerRecord
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysJobTriggerRecord
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysLdap {
* @memberof SqlSugarPagedListSysLdap
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysLdap
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysLogDiff {
* @memberof SqlSugarPagedListSysLogDiff
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysLogDiff
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysLogEx {
* @memberof SqlSugarPagedListSysLogEx
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysLogEx
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysLogMsg {
* @memberof SqlSugarPagedListSysLogMsg
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysLogMsg
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysLogOp {
* @memberof SqlSugarPagedListSysLogOp
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysLogOp
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysLogVis {
* @memberof SqlSugarPagedListSysLogVis
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysLogVis
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysNoticeUser {
* @memberof SqlSugarPagedListSysNoticeUser
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysNoticeUser
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysNotice {
* @memberof SqlSugarPagedListSysNotice
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysNotice
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysPlugin {
* @memberof SqlSugarPagedListSysPlugin
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysPlugin
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysPrint {
* @memberof SqlSugarPagedListSysPrint
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysPrint
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysRegion {
* @memberof SqlSugarPagedListSysRegion
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysRegion
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysReportDataSource {
* @memberof SqlSugarPagedListSysReportDataSource
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysReportDataSource
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysUpgrade {
* @memberof SqlSugarPagedListSysUpgrade
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysUpgrade
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListSysWechatPay {
* @memberof SqlSugarPagedListSysWechatPay
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListSysWechatPay
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListTenantOutput {
* @memberof SqlSugarPagedListTenantOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListTenantOutput
*/
totalInfo?: any | null;
}

View File

@ -76,4 +76,12 @@ export interface SqlSugarPagedListUserOutput {
* @memberof SqlSugarPagedListUserOutput
*/
hasNextPage?: boolean;
/**
*
*
* @type {any}
* @memberof SqlSugarPagedListUserOutput
*/
totalInfo?: any | null;
}

View File

@ -0,0 +1,132 @@
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* 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 { HttpStatusCode } from './http-status-code';
import { YesNoEnum } from './yes-no-enum';
/**
* Http请求日志表
*
* @export
* @interface SysLogHttp
*/
export interface SysLogHttp {
/**
* Id
*
* @type {number}
* @memberof SysLogHttp
*/
id?: number;
/**
*
*
* @type {string}
* @memberof SysLogHttp
*/
httpMethod?: string | null;
/**
* @type {YesNoEnum}
* @memberof SysLogHttp
*/
isSuccessStatusCode?: YesNoEnum;
/**
*
*
* @type {string}
* @memberof SysLogHttp
*/
requestUrl?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogHttp
*/
requestHeaders?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogHttp
*/
requestBody?: string | null;
/**
* @type {HttpStatusCode}
* @memberof SysLogHttp
*/
statusCode?: HttpStatusCode;
/**
*
*
* @type {string}
* @memberof SysLogHttp
*/
responseHeaders?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogHttp
*/
responseBody?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogHttp
*/
exception?: string | null;
/**
*
*
* @type {Date}
* @memberof SysLogHttp
*/
startTime?: Date | null;
/**
*
*
* @type {Date}
* @memberof SysLogHttp
*/
endTime?: Date | null;
/**
*
*
* @type {number}
* @memberof SysLogHttp
*/
elapsed?: number | null;
/**
*
*
* @type {Date}
* @memberof SysLogHttp
*/
createTime?: Date;
}