日志管理

This commit is contained in:
sjl
2024-10-22 13:19:13 +08:00
parent 96cd44f79f
commit 675ceb4c1e
9 changed files with 396 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
// 日志管理模块
export namespace Log {
// 日志列表
export interface LogList {
id: string;//日志表Id
content: string;//日志内容
user:string;//操作用户
record_Time:string;//记录时间
type:string;//日志类型
level:string;//日志等级
}
}