UNIVPLMDataIntegration/Web/src/api-services/system/models/export-log-http-input.ts

172 lines
3.3 KiB
TypeScript
Raw Normal View History

2025-08-20 15:00:44 +08:00
/* 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;
}