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

13 lines
314 B
TypeScript
Raw Normal View History

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