15 lines
242 B
Go
15 lines
242 B
Go
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
|
|
}
|