package model import ( "gorm.io/gorm" "time" ) type SysError struct { Username string `json:"username"` Time time.Time `json:"time"` Function string `json:"function"` ErrorInfo string `json:"error_info"` gorm.Model }