mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 01:09:17 +08:00
22 lines
401 B
Go
22 lines
401 B
Go
import { DateTimeFormats } from '@intlify/core-base';
|
|
|
|
export interface ResOperationLog {
|
|
id: number;
|
|
group: string;
|
|
source: string;
|
|
action: string;
|
|
ip: string;
|
|
path: string;
|
|
method: string;
|
|
userAgent: string;
|
|
body: string;
|
|
resp: string;
|
|
|
|
status: number;
|
|
latency: number;
|
|
errorMessage: string;
|
|
|
|
detail: string;
|
|
createdAt: DateTimeFormats;
|
|
}
|