You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import ( "github.com/gogf/gf/v2/os/gtime" )
// Log is the golang structure for table log.
type Log struct { Id uint `json:"id" ` //
CreatedAt *gtime.Time `json:"created_at" ` // 创建时间
UpdatedAt *gtime.Time `json:"updated_at" ` // 更新时间
Type string `json:"type" ` // 日志类别
Title string `json:"title" ` // 日志说明
Error string `json:"error" ` // 错误信息
SendStatus uint `json:"send_status" ` // 发送状态 | 处理状态
IsView uint `json:"is_view" ` // 已读
ViewAt *gtime.Time `json:"view_at" ` // 访问时间
UserId uint `json:"user_id" ` // 操作员ID
}
|