UNIVPLMDataIntegration/Web/src/api-services/models/page-op-log-input.ts

149 lines
2.7 KiB
TypeScript
Raw Normal View History

2024-08-02 02:37:48 +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';
/**
*
*
* @export
* @interface PageOpLogInput
*/
export interface PageOpLogInput {
/**
* @type {Search}
* @memberof PageOpLogInput
*/
search?: Search;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
keyword?: string | null;
/**
* @type {Filter}
* @memberof PageOpLogInput
*/
filter?: Filter;
/**
*
*
* @type {number}
* @memberof PageOpLogInput
*/
page?: number;
/**
*
*
* @type {number}
* @memberof PageOpLogInput
*/
pageSize?: number;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
field?: string | null;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
order?: string | null;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
descStr?: string | null;
/**
*
*
* @type {Date}
* @memberof PageOpLogInput
*/
startTime?: Date | null;
/**
*
*
* @type {Date}
* @memberof PageOpLogInput
*/
endTime?: Date | null;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
account?: string | null;
/**
*
*
* @type {number}
* @memberof PageOpLogInput
*/
elapsed?: number | null;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
status?: string | null;
/**
* IP地址
*
* @type {string}
* @memberof PageOpLogInput
*/
remoteIp?: string | null;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
actionName?: string | null;
/**
*
*
* @type {string}
* @memberof PageOpLogInput
*/
controllerName?: string | null;
}