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