github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_logs.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_do
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/frame/g"
     9  	"github.com/gogf/gf/v2/os/gtime"
    10  )
    11  
    12  // SysLogs is the golang structure of table sys_logs for DAO operations like Where/Data.
    13  type SysLogs struct {
    14  	g.Meta    `orm:"table:sys_logs, do:true"`
    15  	Id        interface{} // ID
    16  	UserId    interface{} // 用户UID
    17  	Error     interface{} // 错误信息
    18  	Category  interface{} // 分类
    19  	Level     interface{} // 等级
    20  	Content   interface{} // 日志内容
    21  	Context   interface{} // 上下文数据
    22  	CreatedAt *gtime.Time //
    23  	UpdatedAt *gtime.Time //
    24  }