22 lines
425 B
TypeScript
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;
|
|
}
|