UNIVPLMDataIntegration/Web/src/api-services/models/sys-log-ex.ts

286 lines
4.7 KiB
TypeScript
Raw Normal View History

2024-06-15 13:02:35 +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 { LogLevel } from './log-level';
/**
*
*
* @export
* @interface SysLogEx
*/
export interface SysLogEx {
/**
* Id
*
* @type {number}
* @memberof SysLogEx
*/
id?: number;
/**
*
*
* @type {Date}
* @memberof SysLogEx
*/
createTime?: Date;
/**
*
*
* @type {Date}
* @memberof SysLogEx
*/
updateTime?: Date | null;
/**
* Id
*
* @type {number}
* @memberof SysLogEx
*/
createUserId?: number | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
createUserName?: string | null;
/**
* Id
*
* @type {number}
* @memberof SysLogEx
*/
updateUserId?: number | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
updateUserName?: string | null;
/**
*
*
* @type {boolean}
* @memberof SysLogEx
*/
isDelete?: boolean;
2024-06-15 13:02:35 +08:00
/**
* Id
*
* @type {number}
* @memberof SysLogEx
*/
tenantId?: number | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
controllerName?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
actionName?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
displayTitle?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
status?: string | null;
/**
* IP地址
*
* @type {string}
* @memberof SysLogEx
*/
remoteIp?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
location?: string | null;
/**
*
*
* @type {number}
* @memberof SysLogEx
*/
longitude?: number | null;
/**
*
*
* @type {number}
* @memberof SysLogEx
*/
latitude?: number | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
browser?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
os?: string | null;
/**
*
*
* @type {number}
* @memberof SysLogEx
*/
elapsed?: number | null;
/**
*
*
* @type {Date}
* @memberof SysLogEx
*/
logDateTime?: Date | null;
/**
* @type {LogLevel}
* @memberof SysLogEx
*/
logLevel?: LogLevel;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
account?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
realName?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
httpMethod?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
requestUrl?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
requestParam?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
returnResult?: string | null;
/**
* Id
*
* @type {number}
* @memberof SysLogEx
*/
eventId?: number | null;
/**
* 线Id
*
* @type {number}
* @memberof SysLogEx
*/
threadId?: number | null;
/**
* Id
*
* @type {string}
* @memberof SysLogEx
*/
traceId?: string | null;
/**
*
*
* @type {string}
* @memberof SysLogEx
*/
exception?: string | null;
/**
* Json
*
* @type {string}
* @memberof SysLogEx
*/
message?: string | null;
}