admin-vben5/apps/web-antd/src/api/monitor/operlog/model.d.ts
2024-09-26 08:40:16 +08:00

22 lines
425 B
TypeScript

export interface OperationLog {
operId: string;
tenantId: string;
title: string;
businessType: number;
businessTypes?: any;
method: string;
requestMethod: string;
operatorType: number;
operName: string;
deptName: string;
operUrl: string;
operIp: string;
operLocation: string;
operParam: string;
jsonResult: string;
status: number;
errorMsg: string;
operTime: string;
costTime: number;
}