flat:客户端操作日志
This commit is contained in:
57
src/types/monitor/mobilelog.d.ts
vendored
Normal file
57
src/types/monitor/mobilelog.d.ts
vendored
Normal 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>;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user