32 lines
566 B
TypeScript
32 lines
566 B
TypeScript
export type AccessLogItem = {
|
|
id: string;
|
|
context: any;
|
|
describe: string;
|
|
exception: string;
|
|
httpHeaders: any;
|
|
httpMethod: string;
|
|
ip: string;
|
|
method: string;
|
|
parameters: any;
|
|
requestTime: number;
|
|
responseTime: number;
|
|
target: string;
|
|
url: string;
|
|
action: string;
|
|
};
|
|
|
|
export type SystemLogItem = {
|
|
id: string;
|
|
className: string;
|
|
context: any;
|
|
createTime: number;
|
|
exceptionStack: string;
|
|
level: string;
|
|
lineNumber: number;
|
|
message: string;
|
|
methodName: string;
|
|
name: string;
|
|
threadId: string;
|
|
threadName: string;
|
|
};
|