Files
web_ylsa/api_file/model/sysError.go
2025-07-11 16:54:11 +08:00

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
}