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.
36 lines
823 B
36 lines
823 B
/** |
|
* @program: kicc-ui |
|
* @description: 操作日志实体类 |
|
* 类型定义 |
|
* @author: wangxaing4 |
|
* @create: 2022/4/8 |
|
*/ |
|
import type { R } from '/#/axios'; |
|
import type { CommonEntity, Page } from '/@/api/common/data/entity'; |
|
|
|
/** 操作日志查询参数 */ |
|
export type OperLogParams = Page & OperLog; |
|
|
|
/** 操作日志对象 */ |
|
export interface OperLog extends CommonEntity { |
|
id: string; |
|
title: string; |
|
type: string; |
|
method: string; |
|
userAgent: string; |
|
operName: string; |
|
clientId: string; |
|
operUrl: string; |
|
operIp: string; |
|
operAddr: string; |
|
operParam: string; |
|
status: string; |
|
errorMsg: string; |
|
executeTime: string; |
|
operTime: string; |
|
serviceId: string; |
|
[key: string]: any; |
|
} |
|
|
|
/** 操作日志响应对象 */ |
|
export type OperLogResult = R<OperLog[]>;
|
|
|