RuralDatabase/apps/web/api/log.ts

37 lines
551 B
TypeScript
Raw Normal View History

2024-06-30 21:39:37 +08:00
export interface LogInfo {
/**
*
1-
2-
3-
4-
*/
LogType: string
/**
*
*/
LogTypeContent: string
/**
*
*/
Mtime: string
/**
*
*/
ObjectName: string
/**
*
*/
ObjectType: string
ObjectSize: number
/**
*
*/
OwnerID: string
}
export const logApi = {
list: (params: Page.Request) => request.get<Page.Response<LogInfo>>('filer_log/list', params),
}