mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-12 18:11:34 +08:00
15 lines
425 B
Go
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"`
|
|
}
|