Files
cmbone/internal/models/log.go
T

26 lines
603 B
Go
Raw Normal View History

2026-07-09 00:55:46 +08:00
package models
type AuditLogFilter struct {
Actor string `json:"actor"`
Action string `json:"action"`
TargetType string `json:"targetType"`
Limit int `json:"limit"`
Offset int `json:"offset"`
}
type AppLog struct {
ID int64 `json:"id"`
Level string `json:"level"`
Module string `json:"module"`
Message string `json:"message"`
Detail string `json:"detail"`
CreatedAt string `json:"createdAt"`
}
type AppLogFilter struct {
Level string `json:"level"`
Module string `json:"module"`
Limit int `json:"limit"`
Offset int `json:"offset"`
}