Files
pqs-9100_client/frontend/src/api/system/log/interface/log.ts

15 lines
410 B
TypeScript
Raw Normal View History

2024-10-30 15:19:47 +08:00
// 审计日志管理模块
export namespace Sys_Log_Audit {
2024-10-22 13:19:13 +08:00
// 日志列表
2024-10-30 15:19:47 +08:00
export interface Audit_LogList {
2024-10-22 13:19:13 +08:00
id: string;//日志表Id
2024-10-30 15:19:47 +08:00
operate_Type:string;//日志类型
ip:string;//操作IP
result: string;//事件结果
remark: string;//事件描述
warn:number;//告警标志
create_By:string;//创建用户
create_Time:string;//创建时间
2024-10-22 13:19:13 +08:00
}
}