feat: 操作日志

This commit is contained in:
dap
2024-09-26 08:40:16 +08:00
parent 066a1a0f97
commit dcb6300ec7
9 changed files with 401 additions and 65 deletions

View File

@@ -0,0 +1,21 @@
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;
}