flat:客户端操作日志

This commit is contained in:
史典卓
2024-11-20 11:18:43 +08:00
parent 47a8edcf60
commit 9fbd634cb5
7 changed files with 536 additions and 17 deletions

57
src/types/monitor/mobilelog.d.ts vendored Normal file
View File

@@ -0,0 +1,57 @@
declare namespace API.Monitor {
export interface Mobilelog {
operId: number;
title: string;
businessType: number;
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: Date;
}
export interface MobilelogListParams {
operId?: string;
title?: string;
businessType?: string;
method?: string;
requestMethod?: string;
operatorType?: string;
operName?: string;
deptName?: string;
operUrl?: string;
operIp?: string;
operLocation?: string;
operParam?: string;
jsonResult?: string;
status?: string;
errorMsg?: string;
operTime?: string;
pageSize?: string;
current?: string;
}
export interface MobilelogInfoResult {
code: number;
msg: string;
data: Mobilelog;
}
export interface MobilelogPageResult {
code: number;
msg: string;
total: number;
rows: Array<Mobilelog>;
}
}