nova-admin/src/typings/entities/oper-log.d.ts
2025-09-16 17:38:22 +08:00

76 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

declare namespace Entity {
/**
* 操作日志
*/
interface OperLog {
/**
* 日志编号
*/
id: number
/**
* 模块标题
*/
title: string
/**
* 方法名称
*/
method: string
/**
* 请求方式
*/
requestMethod: string
/**
* 操作人员
*/
operName: string
/**
* 部门名称
*/
deptName: string
/**
* 请求URL
*/
operUrl: string
/**
* 主机地址
*/
operIp: string
/**
* 操作地点
*/
operLocation: string
/**
* 浏览器类型
*/
browser: string
/**
* 操作系统
*/
os: string
/**
* 请求参数
*/
operParam: string
/**
* 返回参数
*/
jsonResult: string
/**
* 操作状态0正常 1异常
*/
status: number
/**
* 错误消息
*/
errorMsg: string
/**
* 消耗时间
*/
costTime: string
/**
* 操作时间
*/
operTime: Date
}
}