export type GroupLogListItem = {
    id: number
    actorId: string
    actorName: string
    targetId: string | null
    targetName: string | null
    actionContent: string
    operationAt: number
}
