Files
APIPark/module/log/dto/output.go
T
2024-12-05 14:39:57 +08:00

15 lines
425 B
Go

package log_dto
import (
"github.com/eolinker/go-common/auto"
)
type LogSource struct {
ID string `json:"id"`
Config map[string]interface{} `json:"config"`
Creator auto.Label `json:"creator" aolabel:"user"`
Updater auto.Label `json:"updater" aolabel:"user"`
CreateAt auto.TimeLabel `json:"create_time"`
UpdateAt auto.TimeLabel `json:"update_time"`
}