You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
962 B
42 lines
962 B
2 years ago
|
import { defHttp } from '@/utils/http/axios'
|
||
|
|
||
|
export type OperateLogVO = {
|
||
|
id: number
|
||
|
userNickname: string
|
||
|
traceId: string
|
||
|
userId: number
|
||
|
module: string
|
||
|
name: string
|
||
|
type: number
|
||
|
content: string
|
||
|
exts: Map<String, Object>
|
||
|
defHttpMethod: string
|
||
|
defHttpUrl: string
|
||
|
userIp: string
|
||
|
userAgent: string
|
||
|
javaMethod: string
|
||
|
javaMethodArgs: string
|
||
|
startTime: Date
|
||
|
duration: number
|
||
|
resultCode: number
|
||
|
resultMsg: string
|
||
|
resultData: string
|
||
|
}
|
||
|
|
||
|
export interface OperateLogPageReqVO extends PageParam {
|
||
|
module?: string
|
||
|
userNickname?: string
|
||
|
type?: number
|
||
|
success?: boolean
|
||
|
startTime?: Date[]
|
||
|
}
|
||
|
|
||
|
// 查询操作日志列表
|
||
|
export const getOperateLogPageApi = (params: OperateLogPageReqVO) => {
|
||
|
return defHttp.get({ url: '/system/operate-log/page', params })
|
||
|
}
|
||
|
// 导出操作日志
|
||
|
export const exportOperateLogApi = (params: OperateLogPageReqVO) => {
|
||
|
return defHttp.download({ url: '/system/operate-log/export', params })
|
||
|
}
|